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