|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_PHARM_PMLFEATURECONTAINERWRITER_HPP
30 #define CDPL_PHARM_PMLFEATURECONTAINERWRITER_HPP
46 class FeatureContainer;
76 operator const void*()
const;
81 typedef std::unique_ptr<PMLDataWriter> PMLDataWriterPtr;
89 PMLDataWriterPtr writer;
94 #endif // CDPL_PHARM_PMLFEATURECONTAINERWRITER_HPP
Definition of the preprocessor macro CDPL_PHARM_API.
PMLFeatureContainerWriter(std::ostream &os)
Constructs a PMLFeatureContainerWriter instance that will write data of feature containers to the out...
#define CDPL_PHARM_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Definition of the class CDPL::Base::DataWriter.
A writer for feature container data in the native I/O format of LigandScout.
Definition: PMLFeatureContainerWriter.hpp:52
~PMLFeatureContainerWriter()
Destructor.
Base::DataWriter< FeatureContainer > & write(const FeatureContainer &cntnr)
Writes data of the feature container cntnr to the output stream specified in the constructor.
FeatureContainer.
Definition: FeatureContainer.hpp:53
void close()
Writes format dependent data (if required) to mark the end of output.
The namespace of the Chemical Data Processing Library.
An interface for writing data objects of a given type to an arbitrary data sink.
Definition: DataWriter.hpp:63