aboutsummaryrefslogtreecommitdiff
path: root/src/perform.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-08-18 17:21:02 +0000
committerMike Buland <eichlan@xagasoft.com>2006-08-18 17:21:02 +0000
commitdf5286fe3bca619beb4771da1ffa8ace9613e9e5 (patch)
tree0ad268267325c586527b8d36461ab0040e9ae8ec /src/perform.h
parent4f94dfde7cbe043dfeb11a8712636bac348d3177 (diff)
downloadbuild-df5286fe3bca619beb4771da1ffa8ace9613e9e5.tar.gz
build-df5286fe3bca619beb4771da1ffa8ace9613e9e5.tar.bz2
build-df5286fe3bca619beb4771da1ffa8ace9613e9e5.tar.xz
build-df5286fe3bca619beb4771da1ffa8ace9613e9e5.zip
Gutted, deleted almost all the source, too many changes to keep it around, we'll
see what happens next.
Diffstat (limited to 'src/perform.h')
-rw-r--r--src/perform.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/perform.h b/src/perform.h
deleted file mode 100644
index 914f3b0..0000000
--- a/src/perform.h
+++ /dev/null
@@ -1,25 +0,0 @@
1#ifndef PERFORM_H
2#define PERFORM_H
3
4#include <stdint.h>
5#include "staticstring.h"
6
7class Perform
8{
9public:
10 Perform( const char *sTarget );
11 virtual ~Perform();
12
13 virtual void execute( class Builder &bld ) = 0;
14
15 const char *getTarget()
16 {
17 return sTarget;
18 }
19
20private:
21 StaticString sTarget;
22
23};
24
25#endif