#include #include #include #include "IGeomInfo.hxx" class IGeomInformation: public COMET::ICOMETEventLoopFunction { public: IGeomInformation() { } virtual ~IGeomInformation() {} bool operator () (COMET::ICOMETEvent& event) { COMET::IGeomInfo::Get().CDC().ls(""); return true; } }; int main(int argc, char **argv) { IGeomInformation userCode; cometEventLoop(argc,argv,userCode); }