diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-08-28 11:58:39 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-08-28 12:12:40 +0200 |
commit | ff18ec0fba305d041aa5abdccb943fccfaa8e4f5 (patch) | |
tree | 25dae821d1ec321611667622cd3bffc43ab3381b /include | |
parent | 21ae85a5a54a9822931b8965b08d806ea45e1dfe (diff) | |
download | astra-ff18ec0fba305d041aa5abdccb943fccfaa8e4f5.tar.gz astra-ff18ec0fba305d041aa5abdccb943fccfaa8e4f5.tar.bz2 astra-ff18ec0fba305d041aa5abdccb943fccfaa8e4f5.tar.xz astra-ff18ec0fba305d041aa5abdccb943fccfaa8e4f5.zip |
Fix missing findPlugin function in Windows
Diffstat (limited to 'include')
-rw-r--r-- | include/astra/AstraObjectFactory.h | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/include/astra/AstraObjectFactory.h b/include/astra/AstraObjectFactory.h index 91efa61..8d31b53 100644 --- a/include/astra/AstraObjectFactory.h +++ b/include/astra/AstraObjectFactory.h @@ -39,9 +39,7 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. #include "AlgorithmTypelist.h" -#ifdef ASTRA_PYTHON #include "PluginAlgorithmFactory.h" -#endif namespace astra { @@ -106,6 +104,9 @@ CAstraObjectFactory<T, TypeList>::~CAstraObjectFactory() //---------------------------------------------------------------------------------------- // Hook for finding plugin in registered plugins. +template <> +CAlgorithm* CAstraObjectFactory<CAlgorithm, AlgorithmTypeList>::findPlugin(std::string _sType); + template <typename T, typename TypeList> T* CAstraObjectFactory<T, TypeList>::findPlugin(std::string _sType) { @@ -135,18 +136,6 @@ T* CAstraObjectFactory<T, TypeList>::create(std::string _sType) */ class _AstraExport CAlgorithmFactory : public CAstraObjectFactory<CAlgorithm, AlgorithmTypeList> {}; -#ifdef ASTRA_PYTHON -template <> -inline CAlgorithm* CAstraObjectFactory<CAlgorithm, AlgorithmTypeList>::findPlugin(std::string _sType) - { - CPluginAlgorithmFactory *fac = CPluginAlgorithmFactory::getFactory(); - if (fac) - return fac->getPlugin(_sType); - else - return 0; - } -#endif - /** * Class used to create 2D projectors from a string or a config object */ |