diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/astra/AstraObjectFactory.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/astra/AstraObjectFactory.h b/include/astra/AstraObjectFactory.h index 746e27a..5db9167 100644 --- a/include/astra/AstraObjectFactory.h +++ b/include/astra/AstraObjectFactory.h @@ -126,21 +126,6 @@ T* CAstraObjectFactory<T, TypeList>::create(std::string _sType) return finder.res; } -//---------------------------------------------------------------------------------------- -// Create with XML -template <typename T, typename TypeList> -T* CAstraObjectFactory<T, TypeList>::create(const Config& _cfg) -{ - T* object = create(_cfg.self.getAttribute("type")); - if (object == NULL) return NULL; - if (object->initialize(_cfg)) - return object; - delete object; - return NULL; -} -//---------------------------------------------------------------------------------------- - - //---------------------------------------------------------------------------------------- |