diff options
Diffstat (limited to 'src/condition.h')
-rw-r--r-- | src/condition.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/condition.h b/src/condition.h new file mode 100644 index 0000000..2e9b26a --- /dev/null +++ b/src/condition.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef CONDITION_H | ||
2 | #define CONDITION_H | ||
3 | |||
4 | class Condition | ||
5 | { | ||
6 | public: | ||
7 | Condition(); | ||
8 | virtual ~Condition(); | ||
9 | |||
10 | virtual bool shouldExec( class Runner &r, class Target &rTarget )=0; | ||
11 | virtual Condition *clone()=0; | ||
12 | |||
13 | private: | ||
14 | }; | ||
15 | |||
16 | #endif | ||