File: ULViewControllerSimulationCommands.h

package info (click to toggle)
adun.app 0.81-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,384 kB
  • sloc: objc: 70,952; ansic: 6,668; yacc: 394; python: 75; cpp: 36; makefile: 33; xml: 15; awk: 3
file content (35 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (8)
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