diff options
author | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:04:02 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2009-12-21 18:04:02 +0000 |
commit | fb28f6800864176be2ffca29e8e664b641f33170 (patch) | |
tree | ba9180ac442939edc4eacbe1fdae93c5a7f87cee /src/conditionnever.cpp | |
parent | 51e21a316be6e052251b3dfc7d671061ebd67cee (diff) | |
download | build-fb28f6800864176be2ffca29e8e664b641f33170.tar.gz build-fb28f6800864176be2ffca29e8e664b641f33170.tar.bz2 build-fb28f6800864176be2ffca29e8e664b641f33170.tar.xz build-fb28f6800864176be2ffca29e8e664b641f33170.zip |
m3 is copied into trunk, we should be good to go, now.
Diffstat (limited to 'src/conditionnever.cpp')
-rw-r--r-- | src/conditionnever.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/conditionnever.cpp b/src/conditionnever.cpp new file mode 100644 index 0000000..1ab4375 --- /dev/null +++ b/src/conditionnever.cpp | |||
@@ -0,0 +1,21 @@ | |||
1 | #include "conditionnever.h" | ||
2 | #include "target.h" | ||
3 | |||
4 | ConditionNever::ConditionNever() | ||
5 | { | ||
6 | } | ||
7 | |||
8 | ConditionNever::~ConditionNever() | ||
9 | { | ||
10 | } | ||
11 | |||
12 | bool ConditionNever::shouldExec( class Runner &/*r*/, Target &/*rTarget*/ ) | ||
13 | { | ||
14 | return false; | ||
15 | } | ||
16 | |||
17 | Condition *ConditionNever::clone() | ||
18 | { | ||
19 | return new ConditionNever(); | ||
20 | } | ||
21 | |||