blob: 30323c14252dcc546a896adb1d07135acf60a0e1 (
plain)
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
|
/*
* control_actions.h
*
*
* Created by Andreas Vox on 02.06.06.
* Copyright 2006 under GPL2. All rights reserved.
*
*/
#ifndef CONTROL_ACTIONS_H
#define CONTROL_ACTIONS_H
/*****
Defines the following actions:
Error( msg ) - -> -
Fail( msg ) - -> -
Subset<D>( RuleSet ) - -> -
Trigger( name bool ) - -> -
OnlyIf( name, action) - -> -
OnlyIfNot( name, action ) - -> -
Pop() X -> -
*****/
#endif
|