|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_CHEM_SMILESMOLECULEREADER_HPP
30 #define CDPL_CHEM_SMILESMOLECULEREADER_HPP
44 class SMILESDataReader;
91 bool readData(std::istream&,
Molecule&,
bool overwrite);
92 bool skipData(std::istream&);
93 bool moreData(std::istream&);
95 typedef std::unique_ptr<SMILESDataReader> SMILESDataReaderPtr;
97 SMILESDataReaderPtr reader;
102 #endif // CDPL_CHEM_SMILESMOLECULEREADER_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 Daylight SMILES [SMILES] format.
Definition: SMILESMoleculeReader.hpp:69
Molecule.
Definition: Molecule.hpp:49
The namespace of the Chemical Data Processing Library.
SMILESMoleculeReader(std::istream &is)
Constructs a SMILESMoleculeReader instance that will read the molecule data from the input stream is.
~SMILESMoleculeReader()
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