Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
core
chemical
orbitals
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
14
#include <
core/chemical/orbitals/OrbitalTypeMapper.fwd.hh
>
15
#include <utility/pointer/ReferenceCount.hh>
16
#include <map>
17
18
namespace
core {
19
namespace
chemical {
20
namespace
orbitals {
21
22
class
OrbitalTypeMapper
23
{
24
public
:
25
26
virtual
~OrbitalTypeMapper
();
27
28
static
OrbitalTypeMapper
*
get_instance
();
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
:
37
OrbitalTypeMapper
();
38
//unimplemented -- uncopyable
39
OrbitalTypeMapper
(
OrbitalTypeMapper
const
& );
40
OrbitalTypeMapper
const
&
operator =
(
OrbitalTypeMapper
const
&);
41
void
map_orbital_name_to_enum
();
42
43
private
:
44
static
OrbitalTypeMapper
*
instance_
;
45
std::map<std::string, orbital_type_enum>
orbital_type_2_enum_
;
46
47
};
48
49
}
50
}
51
}
52
53
54
#endif
/* ORBITALTYPEMAPPER_HH_ */
Generated on Sat Jun 1 2013 11:31:36 for Rosetta 3.5 by
1.8.4