Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OrbitalTypeMapper.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 
11 #ifndef INCLUDED_core_chemical_orbitals_OrbitalTypeMapper_hh
12 #define INCLUDED_core_chemical_orbitals_OrbitalTypeMapper_hh
13 
15 #include <utility/pointer/ReferenceCount.hh>
16 #include <map>
17 
18 namespace core {
19 namespace chemical {
20 namespace orbitals {
21 
23 {
24 public:
25 
26  virtual ~OrbitalTypeMapper();
27 
29 
30  orbital_type_enum get_orbital_enum(std::string & orbital_type_name);
31 
32 
33  //orbital_type_enum get_orbital_type_enum(std::string const & orbital_type_name)
34 
35 
36 private:
38  //unimplemented -- uncopyable
42 
43 private:
45  std::map<std::string, orbital_type_enum> orbital_type_2_enum_;
46 
47 };
48 
49 }
50 }
51 }
52 
53 
54 #endif /* ORBITALTYPEMAPPER_HH_ */