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.cpp | |
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.cpp')
-rw-r--r-- | src/targetfactory.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/targetfactory.cpp b/src/targetfactory.cpp new file mode 100644 index 0000000..ad7d090 --- /dev/null +++ b/src/targetfactory.cpp | |||
@@ -0,0 +1,12 @@ | |||
1 | #include "targetfactory.h" | ||
2 | |||
3 | extern struct PluginInfo file; | ||
4 | |||
5 | TargetFactory::TargetFactory() | ||
6 | { | ||
7 | registerBuiltinPlugin( &file ); | ||
8 | } | ||
9 | |||
10 | TargetFactory::~TargetFactory() | ||
11 | { | ||
12 | } | ||