1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#ifndef _VIEWCONTROLLER_SIMULATIONCOMMANDS_
#define _VIEWCONTROLLER_SIMULATIONCOMMANDS_
#include "ViewController.h"
/**
Category for commands that can be dynamically
sent to a running simulation.
\ingroup interface
*/
@interface ViewController (SimulationCommands)
/**
Description forthcoming
*/
- (void) halt: (id) sender;
/**
Description forthcoming
*/
- (void) restart: (id) sender;
/**
Description forthcoming
*/
- (void) terminateProcess: (id) sender;
/**
Description forthcoming
*/
- (void) start: (id) sender;
/**
Description forthcoming
*/
- (void) execute: (id) sender;
@end
#endif
|