diff options
Diffstat (limited to 'include/astra/AstraObjectFactory.h')
-rw-r--r-- | include/astra/AstraObjectFactory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/astra/AstraObjectFactory.h b/include/astra/AstraObjectFactory.h index eb22862..746e27a 100644 --- a/include/astra/AstraObjectFactory.h +++ b/include/astra/AstraObjectFactory.h @@ -117,9 +117,9 @@ T* CAstraObjectFactory<T, TypeList>::findPlugin(std::string _sType) template <typename T, typename TypeList> T* CAstraObjectFactory<T, TypeList>::create(std::string _sType) { - functor_find<T> finder = functor_find<T>(); + typelist::functor_find<T> finder = typelist::functor_find<T>(); finder.tofind = _sType; - CreateObject<TypeList>::find(finder); + typelist::CreateObject<TypeList>::find(finder); if (finder.res == NULL) { finder.res = findPlugin(_sType); } |