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