aboutsummaryrefslogtreecommitdiff
path: root/src/filetarget.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/filetarget.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/filetarget.h b/src/filetarget.h
new file mode 100644
index 0000000..cf4b3d6
--- /dev/null
+++ b/src/filetarget.h
@@ -0,0 +1,19 @@
1#ifndef FILE_TARGET_H
2#define FILE_TARGET_H
3
4#include <stdint.h>
5#include "target.h"
6
7class FileTarget : public Target
8{
9public:
10 FileTarget( const char *sName );
11 virtual ~FileTarget();
12
13 virtual void debug();
14
15private:
16
17};
18
19#endif