// $Id$ // // File: RunObject_L3.cc // Created: Mon Jul 27 08:54:17 EDT 2009 // Creator: davidl (on Linux jlabl2.jlab.org 2.6.18-128.1.14.el5 i686) // #include "RunObject_L3.h" using namespace std; using namespace codaObject; //--------------------------------- // RunObject_L3 (Constructor) //--------------------------------- RunObject_L3::RunObject_L3(const string& UDL, const string& name, const string& descr, DApplication *dapp) : RunObject(UDL,name,descr), done(false), dapp(dapp) { cout << "RunObject_L3 constructor called" << endl; } //--------------------------------- // exit //--------------------------------- void RunObject_L3::exit(const string& s) throw(CodaException) { cout << "RunObject_L3 received exit command" << endl; done=true; }