#include "oechem.h" #include using namespace OEChem; using namespace OESystem; using namespace std; int main() { OEIter mol; oemolistream ims; ims.SetFormat(OEFormat::SDF); for (mol=ims.GetMolBases(); mol; ++mol) cout << mol->GetTitle() << endl; return 0; }