mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
26 lines
373 B
C++
26 lines
373 B
C++
#ifndef _RDMOLIMPL_H_
|
|
#define _RDMOLIMPL_H_
|
|
#include "IRDKit.h"
|
|
|
|
namespace RDKit {
|
|
class ROMol;
|
|
}
|
|
|
|
class RDMolecule : public IRDMolecule {
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_IRDMOLECULE
|
|
|
|
RDMolecule() : dp_mol(0) {}
|
|
RDMolecule(RDKit::ROMol *mol) : dp_mol(mol) {}
|
|
RDKit::ROMol *dp_mol;
|
|
|
|
private:
|
|
~RDMolecule();
|
|
|
|
protected:
|
|
/* additional members */
|
|
};
|
|
|
|
#endif
|