|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_CHEM_SMARTSREACTIONREADER_HPP
30 #define CDPL_CHEM_SMARTSREACTIONREADER_HPP
44 class SMARTSDataReader;
86 bool readData(std::istream&,
Reaction&,
bool overwrite);
87 bool skipData(std::istream&);
88 bool moreData(std::istream&);
90 typedef std::unique_ptr<SMARTSDataReader> SMARTSDataReaderPtr;
92 SMARTSDataReaderPtr reader;
97 #endif // CDPL_CHEM_SMARTSREACTIONREADER_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.
~SMARTSReactionReader()
Destructor.
SMARTSReactionReader(std::istream &is)
Constructs a SMARTSReactionReader instance that will read the reaction data from the input stream is.
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
A reader for reaction data in the Daylight SMARTS [SMARTS] format.
Definition: SMARTSReactionReader.hpp:64