From 8de844c3521d9ee54087927923b932e1016c5b90 Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Thu, 16 Feb 2017 14:47:07 +0100 Subject: Remove using namespace astra; from headers --- include/astra/AstraObjectFactory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/astra/AstraObjectFactory.h') 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::findPlugin(std::string _sType) template T* CAstraObjectFactory::create(std::string _sType) { - functor_find finder = functor_find(); + typelist::functor_find finder = typelist::functor_find(); finder.tofind = _sType; - CreateObject::find(finder); + typelist::CreateObject::find(finder); if (finder.res == NULL) { finder.res = findPlugin(_sType); } -- cgit v1.2.3