blob: 24d9f2f5574c67f6b63cad13d31aebcf13260e07 (
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
29
30
31
32
33
34
35
36
37
|
/*
* prog_actions.h
*
*
* Created by Andreas Vox on 02.06.06.
* Copyright 2006 under GPL2. All rights reserved.
*
*/
#ifndef PROG_ACTIONS_H
#define PROG_ACTIONS_H
/*****
Defines the following actions:
Retrieve<D>( name ) - -> D
Store<D>( name, gen<D> ) - -> -
Remove( name ) - -> -
If( gen<bool> ) - -> -
IfNot( gen<bool> ) - -> -
IfEqual<D>( gen<D>, gen<D> ) - -> -
IfNotEqual<D>( gen<D>, gen<D> ) - -> -
IfLess<D>( gen<D>, gen<D> ) - -> -
IfLessEq<D>( gen<D>, gen<D> ) - -> -
IfGreater<D>( gen<D>, gen<D> ) - -> -
IfGreaterEq<D>( gen<D>, gen<D> ) - -> -
Else() - -> -
EndIf() - -> -
Count( name n ) - -> -
Counter( name ) - -> int
*****/
#endif
|