From fb28f6800864176be2ffca29e8e664b641f33170 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 21 Dec 2009 18:04:02 +0000 Subject: m3 is copied into trunk, we should be good to go, now. --- src/conditionalways.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/conditionalways.h (limited to 'src/conditionalways.h') diff --git a/src/conditionalways.h b/src/conditionalways.h new file mode 100644 index 0000000..1eeeb71 --- /dev/null +++ b/src/conditionalways.h @@ -0,0 +1,16 @@ +#ifndef CONDITION_ALWAYS_H +#define CONDITION_ALWAYS_H + +#include "condition.h" + +class ConditionAlways : public Condition +{ +public: + ConditionAlways(); + virtual ~ConditionAlways(); + + virtual bool shouldExec( class Runner &r, class Target &rTarget ); + virtual Condition *clone(); +}; + +#endif -- cgit v1.2.3