Changeset 10510 for trunk/FACT++
- Timestamp:
- 05/02/11 19:04:13 (14 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/StateMachineDim.cc
r10484 r10510 76 76 // fSrvVersion((name+"/VERSION").c_str(), const_cast<int&>(fVersion)), 77 77 { 78 // WARNING: This exit handler is GLOBAL!79 DimServer::addExitHandler(this);80 78 SetDefaultStateNames(); 81 79 } -
trunk/FACT++/src/StateMachineDim.h
r10484 r10510 20 20 DimStart(const std::string &name, MessageImp &imp) : DimErrorRedirecter(imp) 21 21 { 22 DimServer::addErrorHandler(this);23 22 DimServer::start(name.c_str()); 24 23 } 25 ~DimStart() { DimServer::stop(); } 24 ~DimStart() 25 { 26 DimServer::stop(); 27 } 26 28 }; 27 29 28 class StateMachineDim : public DimCommandHandler, public DimExitHandler, publicStateMachine, public DimStart30 class StateMachineDim : public DimCommandHandler, public StateMachine, public DimStart 29 31 { 30 32 private:
Note:
See TracChangeset
for help on using the changeset viewer.