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