Changeset 13286 for trunk/FACT++
- Timestamp:
- 03/29/12 10:28:03 (13 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/LocalControl.h
r13206 r13286 63 63 lout << kBold << " ac,allowed " << kReset << "Display a list of all currently allowed commands." << endl; 64 64 lout << kBold << " st,states " << kReset << "Display a list of the available states with description." << endl; 65 lout << kBold << " #<text> " << kReset << "Echo <text> to the output stream" << endl;65 lout << kBold << " > <text> " << kReset << "Echo <text> to the output stream" << endl; 66 66 lout << kBold << " .s " << kReset << "Wait for the state-machine to change to the given state.\n"; 67 67 lout << " " " .s <server> [<state> [<timeout> [<label>]]]\n"; … … 134 134 135 135 if (str[0]=='#') 136 return true; 137 138 if (str[0]=='>') 136 139 { 137 140 fStateMachine->Comment(Tools::Trim(str.substr(1))); -
trunk/FACT++/src/RemoteControl.h
r13252 r13286 139 139 lout << kBold << " svc,services " << kReset << "List all services in the network.\n"; 140 140 lout << kBold << " st,states " << kReset << "List all states in the network.\n"; 141 lout << kBold << " #<text> " << kReset << "Echo <text> to the output stream\n";141 lout << kBold << " > <text> " << kReset << "Echo <text> to the output stream\n"; 142 142 lout << kBold << " .s " << kReset << "Wait for the state-machine to change to the given state.\n"; 143 143 lout << " " " .s <server> [<state> [<timeout> [<label>]]]\n"; … … 226 226 227 227 if (str[0]=='#') 228 { 229 //lout << Tools::Trim(str.substr(1)) << endl; 228 return true; 229 230 if (str[0]=='>') 231 { 230 232 fImp->Comment(Tools::Trim(str.substr(1))); 231 233 return true;
Note:
See TracChangeset
for help on using the changeset viewer.