aboutsummaryrefslogtreecommitdiff
path: root/src/performcmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/performcmd.h')
-rw-r--r--src/performcmd.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/performcmd.h b/src/performcmd.h
new file mode 100644
index 0000000..3bc83aa
--- /dev/null
+++ b/src/performcmd.h
@@ -0,0 +1,22 @@
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 StaticString sTarget;
20};
21
22#endif