diff options
Diffstat (limited to '')
-rw-r--r-- | src/viewermake.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/viewermake.h b/src/viewermake.h new file mode 100644 index 0000000..11b8741 --- /dev/null +++ b/src/viewermake.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef VIEWER_MAKE_H | ||
2 | #define VIEWER_MAKE_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | #include "viewer.h" | ||
7 | |||
8 | class ViewerMake : public Viewer | ||
9 | { | ||
10 | public: | ||
11 | ViewerMake(); | ||
12 | virtual ~ViewerMake(); | ||
13 | |||
14 | virtual void executeCmd( const std::string &sCmd ); | ||
15 | |||
16 | private: | ||
17 | |||
18 | }; | ||
19 | |||
20 | #endif | ||