diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-08-22 06:19:44 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-08-22 06:19:44 +0000 |
commit | ee98faf71642cf351d5cda241679b094aeec65ce (patch) | |
tree | 881b7a8b71fc9b9a21e6bca05da6f731ae1a2d64 /src/targetfile.h | |
parent | 8829c8548ea26abaf2e7d2f1d85e0b99757f1978 (diff) | |
download | build-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 '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 | ||