blob: b7e5e9250f9b5b2176d9c57d54977c37f9e7f288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef CONDITION_NEVER_H
#define CONDITION_NEVER_H
#include "condition.h"
class ConditionNever : public Condition
{
public:
ConditionNever();
virtual ~ConditionNever();
virtual bool shouldExec( class Runner &r, class Target &rTarget );
virtual Condition *clone();
};
#endif
|