diff options
Diffstat (limited to '')
-rw-r--r-- | src/action.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/action.h b/src/action.h new file mode 100644 index 0000000..4ec3b4a --- /dev/null +++ b/src/action.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #ifndef ACTION_H | ||
2 | #define ACTION_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | class Action | ||
7 | { | ||
8 | public: | ||
9 | enum eAction | ||
10 | { | ||
11 | actCheck, | ||
12 | actClean | ||
13 | }; | ||
14 | public: | ||
15 | Action(); | ||
16 | virtual ~Action(); | ||
17 | |||
18 | private: | ||
19 | |||
20 | }; | ||
21 | |||
22 | #endif | ||