|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_CHEM_MOLMOLECULEREADER_HPP
30 #define CDPL_CHEM_MOLMOLECULEREADER_HPP
117 bool readData(std::istream&,
Molecule&,
bool overwrite);
118 bool skipData(std::istream&);
119 bool moreData(std::istream&);
121 typedef std::unique_ptr<MDLDataReader> MDLDataReaderPtr;
123 MDLDataReaderPtr reader;
128 #endif // CDPL_CHEM_MOLMOLECULEREADER_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.
Molecule.
Definition: Molecule.hpp:49
A reader for molecule data in the MDL Mol-File [CTFILE] format.
Definition: MOLMoleculeReader.hpp:95
MOLMoleculeReader(std::istream &is)
Constructs a MOLMoleculeReader instance that will read the molecule data from the input stream is.
The namespace of the Chemical Data Processing Library.
~MOLMoleculeReader()
Destructor.
Definition of the class CDPL::Util::StreamDataReader.
A helper class that implements Base::DataReader for std::istream based data readers.
Definition: StreamDataReader.hpp:73