aboutsummaryrefslogtreecommitdiff
path: root/src/perform.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/perform.h')
-rw-r--r--src/perform.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/perform.h b/src/perform.h
new file mode 100644
index 0000000..fefb05e
--- /dev/null
+++ b/src/perform.h
@@ -0,0 +1,18 @@
1#ifndef PERFORM_H
2#define PERFORM_H
3
4#include <stdint.h>
5
6class Perform
7{
8public:
9 Perform();
10 virtual ~Perform();
11
12 virtual void execute( class Builder &bld ) = 0;
13
14private:
15
16};
17
18#endif