- Fixed a couple of problems in doc

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@412 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
elvez 2006-02-23 20:59:56 +00:00
parent 24edbf1c43
commit 876fb85614
4 changed files with 25 additions and 16 deletions

View file

@ -54,54 +54,55 @@ namespace sgpem
/**
\brief Executes a command read from an input device.
A list of supported commands follows:
\li help \<string\> \br
\li help \<string\> <br>
If \<string\> is a valid command, usage instructions are printed
for the command.
\li run \br
\li run <br>
Calls run()
\li pause \br
\li pause <br>
Calls pause()
\li stop \br
\li stop <br>
Calls stop()
\li setmode \<bool\> \br
\li setmode \<bool\> <br>
Calls set_mode()
\li getmode \br
\li getmode <br>
Calls get_mode()
\li settimer \<int\> \br
\li settimer \<int\> <br>
Calls set_timer()
\li gettimer \br
\li gettimer <br>
Calls get_timer()
\li reset \br
\li reset <br>
Calls reset()
\li jumpto \<int\> \br
\li jumpto \<int\> <br>
Calls jump_to()
\li setpolicy \<string\> \br
\li setpolicy \<string\> <br>
Calls set_policy()
\li getpolicy \br
\li getpolicy <br>
Calls get_policy(), and prints the name and a description of
the returned policy
\li getpolicies \br
\li getpolicies <br>
Calls get_avaiable_policies(), and prints a list of policy
descriptions in the same way as getpolicy does
\li setpolicyattributes \<name\> = \<value\>; \<name\> = \<value\>; \br
\li setpolicyattributes \<name\> = \<value\>; \<name\> = \<value\>; <br>
Changes the value of the policy's attributes
\li getpolicyattributes
\li getpolicyattributes <br>
Prints the name and the value of the policy's attributes
*/
static void parse_command(std::pair< std::pair<TextSimulation*, IOManager*>, const Glib::ustring >);