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