#include "oechem.h" using namespace OEChem; int main() { oemolistream ims; oemolostream oms; OEMol mol; while (OEReadMolecule(ims,mol)) OEWriteMolecule(oms,mol); return 0; }