Chemical Data Processing Library C++ API - Version 1.4.0
Chem/AtomPropertyDefault.hpp
Go to the documentation of this file.
1 /*
2  * AtomPropertyDefault.hpp
3  *
4  * This file is part of the Chemical Data Processing Toolkit
5  *
6  * Copyright (C) 2003 Thomas Seidel <thomas.seidel@univie.ac.at>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this library; see the file COPYING. If not, write to
20  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23 
29 #ifndef CDPL_CHEM_ATOMPROPERTYDEFAULT_HPP
30 #define CDPL_CHEM_ATOMPROPERTYDEFAULT_HPP
31 
32 #include <string>
33 #include <cstddef>
34 
35 #include "CDPL/Chem/APIPrefix.hpp"
38 
39 
40 namespace CDPL
41 {
42 
43  namespace Chem
44  {
45 
49  namespace AtomPropertyDefault
50  {
51 
53  extern CDPL_CHEM_API const std::string SYMBOL;
55  extern CDPL_CHEM_API const std::string NAME;
57  extern CDPL_CHEM_API const long FORMAL_CHARGE;
59  extern CDPL_CHEM_API const std::size_t ISOTOPE;
61  extern CDPL_CHEM_API const std::size_t UNPAIRED_ELECTRON_COUNT;
63  extern CDPL_CHEM_API const unsigned int TYPE;
65  extern CDPL_CHEM_API const unsigned int RADICAL_TYPE;
67  extern CDPL_CHEM_API const unsigned int SYBYL_TYPE;
69  extern CDPL_CHEM_API const unsigned int REACTION_CENTER_STATUS;
73  extern CDPL_CHEM_API const std::size_t COMPONENT_GROUP_ID;
75  extern CDPL_CHEM_API const std::size_t ATOM_MAPPING_ID;
79  extern CDPL_CHEM_API const double MOL2_CHARGE;
81  extern CDPL_CHEM_API const std::string MOL2_NAME;
83  extern CDPL_CHEM_API const bool MDL_DB_STEREO_CARE_FLAG;
84  } // namespace AtomPropertyDefault
85  } // namespace Chem
86 } // namespace CDPL
87 
88 #endif // CDPL_CHEM_ATOMPROPERTYDEFAULT_HPP
Definition of the preprocessor macro CDPL_CHEM_API.
#define CDPL_CHEM_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Definition of class CDPL::Chem::MatchConstraintList.
Definition of the type CDPL::Chem::StereoDescriptor.
std::shared_ptr< MatchConstraintList > SharedPointer
A reference-counted smart pointer [SHPTR] for dynamically allocated MatchConstraintList instances.
Definition: MatchConstraintList.hpp:211
Data structure for the storage and retrieval of stereochemical information about atoms and bonds.
Definition: StereoDescriptor.hpp:102
CDPL_CHEM_API const std::size_t COMPONENT_GROUP_ID
Default value for the Chem::AtomProperty::COMPONENT_GROUP_ID property.
CDPL_CHEM_API const unsigned int REACTION_CENTER_STATUS
Default value for the Chem::AtomProperty::REACTION_CENTER_STATUS property.
CDPL_CHEM_API const std::size_t UNPAIRED_ELECTRON_COUNT
Default value for the Chem::AtomProperty::UNPAIRED_ELECTRON_COUNT property.
CDPL_CHEM_API const unsigned int RADICAL_TYPE
Default value for the Chem::AtomProperty::RADICAL_TYPE property.
CDPL_CHEM_API const std::string SYMBOL
Default value for the Chem::AtomProperty::SYMBOL property.
CDPL_CHEM_API const double MOL2_CHARGE
Default value for the Chem::AtomProperty::MOL2_CHARGE property.
CDPL_CHEM_API const std::string MOL2_NAME
Default value for the Chem::AtomProperty::MOL2_NAME property.
CDPL_CHEM_API const MatchConstraintList::SharedPointer MATCH_CONSTRAINTS
Default value for the Chem::AtomProperty::MATCH_CONSTRAINTS property.
CDPL_CHEM_API const StereoDescriptor STEREO_DESCRIPTOR
Default value for the Chem::AtomProperty::STEREO_DESCRIPTOR property.
CDPL_CHEM_API const std::size_t ATOM_MAPPING_ID
Default value for the Chem::AtomProperty::ATOM_MAPPING_ID property.
CDPL_CHEM_API const unsigned int TYPE
Default value for the Chem::AtomProperty::TYPE property.
CDPL_CHEM_API const bool MDL_DB_STEREO_CARE_FLAG
Default value for the Chem::AtomProperty::MDL_DB_STEREO_CARE_FLAG property.
CDPL_CHEM_API const std::size_t ISOTOPE
Default value for the Chem::AtomProperty::ISOTOPE property.
CDPL_CHEM_API const unsigned int SYBYL_TYPE
Default value for the Chem::AtomProperty::SYBYL_TYPE property.
CDPL_CHEM_API const std::string NAME
Default value for the Chem::AtomProperty::NAME property.
CDPL_CHEM_API const long FORMAL_CHARGE
Default value for the Chem::AtomProperty::FORMAL_CHARGE property.
The namespace of the Chemical Data Processing Library.