Changeset 10484 for trunk/FACT++/src
- Timestamp:
- 04/28/11 14:02:00 (14 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/StateMachineDim.cc
r10476 r10484 68 68 StateMachineDim::StateMachineDim(ostream &out, const std::string &name) 69 69 : StateMachine(out, name), DimStart(name, *this), fLog(name, out), 70 fDescriptionStates((name+"/STATE_LIST").c_str(), const_cast<char*>(""), 71 "Provides a list with descriptions for each service." 72 "|StateList[string]:A \\n separated list of the form id:name=description"), 70 73 fSrvState((name+"/STATE").c_str(), const_cast<char*>(""), 71 74 "Provides the state of the state machine as quality of service." 72 "|Text[string]:A human readable string sent by the last state change.") ,75 "|Text[string]:A human readable string sent by the last state change.") 73 76 // fSrvVersion((name+"/VERSION").c_str(), const_cast<int&>(fVersion)), 74 fDescriptionStates((name+"/STATE_LIST").c_str(), const_cast<char*>(""),75 "Provides a list with descriptions for each service."76 "|StateList[string]:A \\n separated list of the form id:name=description")77 77 { 78 78 // WARNING: This exit handler is GLOBAL! -
trunk/FACT++/src/StateMachineDim.h
r10476 r10484 33 33 static const int fVersion; /// Version number 34 34 35 DimDescribedService fDescriptionStates; /// DimService propagating the state descriptions 35 36 DimDescribedService fSrvState; /// DimService offering fCurrentState 36 37 // DimService fSrvVersion; /// DimService offering fVersion 37 38 38 DimDescribedService fDescriptionStates; /// DimService propagating the state descriptions39 39 40 40 void exitHandler(int code); /// Overwritten DimCommand::exitHandler.
Note:
See TracChangeset
for help on using the changeset viewer.