|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_CHEM_CDFREACTIONREADER_HPP
30 #define CDPL_CHEM_CDFREACTIONREADER_HPP
73 bool readData(std::istream&,
Reaction&,
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_CDFREACTIONREADER_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.
CDFReactionReader(std::istream &is)
Constructs a CDFReactionReader instance that will read the reaction data from the input stream is.
A reader for reaction data in the native I/O format of the CDPL.
Definition: CDFReactionReader.hpp:51
~CDFReactionReader()
Destructor.
The namespace of the Chemical Data Processing Library.
Reaction.
Definition: Reaction.hpp:52
Definition of the class CDPL::Util::StreamDataReader.
A helper class that implements Base::DataReader for std::istream based data readers.
Definition: StreamDataReader.hpp:73