aboutsummaryrefslogtreecommitdiff
path: root/src/targetfile.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-08-22 06:19:44 +0000
committerMike Buland <eichlan@xagasoft.com>2006-08-22 06:19:44 +0000
commitee98faf71642cf351d5cda241679b094aeec65ce (patch)
tree881b7a8b71fc9b9a21e6bca05da6f731ae1a2d64 /src/targetfile.h
parent8829c8548ea26abaf2e7d2f1d85e0b99757f1978 (diff)
downloadbuild-ee98faf71642cf351d5cda241679b094aeec65ce.tar.gz
build-ee98faf71642cf351d5cda241679b094aeec65ce.tar.bz2
build-ee98faf71642cf351d5cda241679b094aeec65ce.tar.xz
build-ee98faf71642cf351d5cda241679b094aeec65ce.zip
Added targets, and the global set command, things are really coming along now.
Diffstat (limited to '')
-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