|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_CHEM_CDFMOLECULEREADER_HPP
30 #define CDPL_CHEM_CDFMOLECULEREADER_HPP
73 bool readData(std::istream&,
Molecule&,
bool overwrite);
74 bool skipData(std::istream&);
75 bool moreData(std::istream&);
77 typedef std::unique_ptr<CDFDataReader> CDFDataReaderPtr;
79 CDFDataReaderPtr reader;
84 #endif // CDPL_CHEM_CDFMOLECULEREADER_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.
A reader for molecule data in the native I/O format of the CDPL.
Definition: CDFMoleculeReader.hpp:51
Molecule.
Definition: Molecule.hpp:49
CDFMoleculeReader(std::istream &is)
Constructs a CDFMoleculeReader instance that will read the molecule data from the input stream is.
The namespace of the Chemical Data Processing Library.
~CDFMoleculeReader()
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