diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-02-16 14:47:07 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-02-16 14:48:45 +0100 |
commit | 8de844c3521d9ee54087927923b932e1016c5b90 (patch) | |
tree | 60f39ef08ef7285bd15f3300eeff676b420b9662 /include/astra/AstraObjectFactory.h | |
parent | 27e23f29f368e06315f2ea381ef38a3affa93c64 (diff) | |
download | astra-8de844c3521d9ee54087927923b932e1016c5b90.tar.gz astra-8de844c3521d9ee54087927923b932e1016c5b90.tar.bz2 astra-8de844c3521d9ee54087927923b932e1016c5b90.tar.xz astra-8de844c3521d9ee54087927923b932e1016c5b90.zip |
Remove using namespace astra; from headers
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); } |