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