aboutsummaryrefslogtreecommitdiff
path: root/src/performcmd.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/performcmd.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/performcmd.h b/src/performcmd.h
deleted file mode 100644
index 59510a6..0000000
--- a/src/performcmd.h
+++ /dev/null
@@ -1,21 +0,0 @@
1#ifndef PERFORM_CMD_H
2#define PERFORM_CMD_H
3
4#include <stdint.h>
5
6#include "perform.h"
7#include "staticstring.h"
8
9class PerformCmd : public Perform
10{
11public:
12 PerformCmd( const char *sCmd, const char *sTarget );
13 virtual ~PerformCmd();
14
15 virtual void execute( class Builder &bld );
16
17private:
18 StaticString sCommand;
19};
20
21#endif