|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_CHEM_MOL2MOLECULEREADER_HPP
30 #define CDPL_CHEM_MOL2MOLECULEREADER_HPP
70 bool readData(std::istream&,
Molecule&,
bool overwrite);
71 bool skipData(std::istream&);
72 bool moreData(std::istream&);
74 typedef std::unique_ptr<MOL2DataReader> MOL2DataReaderPtr;
76 MOL2DataReaderPtr reader;
81 #endif // CDPL_CHEM_MOL2MOLECULEREADER_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.
MOL2MoleculeReader(std::istream &is)
Constructs a MOL2MoleculeReader instance that will read the molecule data from the input stream is.
Molecule.
Definition: Molecule.hpp:49
Definition: MOL2MoleculeReader.hpp:48
~MOL2MoleculeReader()
Destructor.
The namespace of the Chemical Data Processing Library.
Definition of the class CDPL::Util::StreamDataReader.
A helper class that implements Base::DataReader for std::istream based data readers.
Definition: StreamDataReader.hpp:73