aboutsummaryrefslogtreecommitdiff
path: root/src/targetfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/targetfile.h')
-rw-r--r--src/targetfile.h18
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
8class TargetFile : public Target
9{
10public:
11 TargetFile();
12 virtual ~TargetFile();
13
14private:
15
16};
17
18#endif