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