// $Id$ // // File: RunObject_L3.h // Created: Mon Jul 27 08:54:17 EDT 2009 // Creator: davidl (on Linux jlabl2.jlab.org 2.6.18-128.1.14.el5 i686) // #ifndef _RunObject_L3_ #define _RunObject_L3_ #include #include class DApplication; class RunObject_L3 : public codaObject::RunObject { protected: bool done; DApplication *dapp; public: RunObject_L3(const std::string& UDL, const std::string& name, const std::string& descr, DApplication *dapp); void exit(const std::string& s) throw(codaObject::CodaException); bool isRunning(void) {return(!done);} }; #endif // _RunObject_L3_