aboutsummaryrefslogtreecommitdiff
path: root/src/condition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/condition.h')
-rw-r--r--src/condition.h16
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
4class Condition
5{
6public:
7 Condition();
8 virtual ~Condition();
9
10 virtual bool shouldExec( class Runner &r, class Target &rTarget )=0;
11 virtual Condition *clone()=0;
12
13private:
14};
15
16#endif