aboutsummaryrefslogtreecommitdiff
path: root/src/conditionfileexists.h
blob: f1fe5681093586f5cc2c9da0a32224fdb2d37dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CONDITION_FILE_EXISTS_H
#define CONDITION_FILE_EXISTS_H

#include "condition.h"

class ConditionFileExists : public Condition
{
public:
    ConditionFileExists();
    virtual ~ConditionFileExists();

    virtual bool shouldExec( class Runner &r, class Target &rTarget );
    virtual Condition *clone();
};

#endif