1 //
2 //  Copyright (C) 2002-2018 Greg Landrum and Rational Discovery LLC
3 //
4 //   @@ All Rights Reserved @@
5 //  This file is part of the RDKit.
6 //  The contents are covered by the terms of the BSD license
7 //  which is included in the file license.txt, found at the root
8 //  of the RDKit source tree.
9 //
10 
11 /*! \file RDKitBase.h
12 
13   \brief pulls in the core \c RDKit functionality
14 
15 */
16 
17 #include <RDGeneral/export.h>
18 #ifndef _RDKIT_BASE_H
19 #define _RDKIT_BASE_H
20 
21 #include <RDGeneral/Invariant.h>
22 
23 #include <GraphMol/Atom.h>
24 #include <GraphMol/Bond.h>
25 #include <GraphMol/Conformer.h>
26 #include <GraphMol/GraphMol.h>
27 #include <GraphMol/MolOps.h>
28 #include <GraphMol/RingInfo.h>
29 #include <GraphMol/AtomIterators.h>
30 #include <GraphMol/BondIterators.h>
31 #include <GraphMol/PeriodicTable.h>
32 #include <GraphMol/SanitException.h>
33 #include <GraphMol/StereoGroup.h>
34 
35 #endif
36