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/targetfactory.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/targetfactory.h')
-rw-r--r-- | src/targetfactory.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/targetfactory.h b/src/targetfactory.h new file mode 100644 index 0000000..bf8862f --- /dev/null +++ b/src/targetfactory.h | |||
@@ -0,0 +1,20 @@ | |||
1 | #ifndef TARGET_FACTORY_H | ||
2 | #define TARGET_FACTORY_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | #include "plugger.h" | ||
7 | #include "singleton.h" | ||
8 | #include "target.h" | ||
9 | |||
10 | class TargetFactory : public Plugger<Target>, public Singleton<TargetFactory> | ||
11 | { | ||
12 | public: | ||
13 | TargetFactory(); | ||
14 | virtual ~TargetFactory(); | ||
15 | |||
16 | private: | ||
17 | |||
18 | }; | ||
19 | |||
20 | #endif | ||