|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_PHARM_CDFFEATURECONTAINERWRITER_HPP
30 #define CDPL_PHARM_CDFFEATURECONTAINERWRITER_HPP
45 class CDFPharmacophoreDataWriter;
46 class FeatureContainer;
74 operator const void*()
const;
78 typedef std::unique_ptr<CDFPharmacophoreDataWriter> CDFDataWriterPtr;
86 CDFDataWriterPtr writer;
91 #endif // CDPL_PHARM_CDFFEATURECONTAINERWRITER_HPP
Definition of the preprocessor macro CDPL_PHARM_API.
#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 the CDPL.
Definition: CDFFeatureContainerWriter.hpp:52
~CDFFeatureContainerWriter()
Destructor.
FeatureContainer.
Definition: FeatureContainer.hpp:53
CDFFeatureContainerWriter(std::ostream &os)
Constructs a CDFFeatureContainerWriter instance that will write data of feature containers to the out...
The namespace of the Chemical Data Processing Library.
Base::DataWriter< FeatureContainer > & write(const FeatureContainer &cntnr)
Writes data of the feature container cntnr to the output stream specified in the constructor.
An interface for writing data objects of a given type to an arbitrary data sink.
Definition: DataWriter.hpp:63