diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-08-24 14:28:25 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-08-28 12:00:54 +0200 |
commit | 52987f395d423203fbb1a417961408804832c258 (patch) | |
tree | 5524d3e6d08b9278054633d258bbb5544cb1ddbe /python | |
parent | 0a72d3f5c67f417199dd41af373ef0e129780838 (diff) | |
download | astra-52987f395d423203fbb1a417961408804832c258.tar.gz astra-52987f395d423203fbb1a417961408804832c258.tar.bz2 astra-52987f395d423203fbb1a417961408804832c258.tar.xz astra-52987f395d423203fbb1a417961408804832c258.zip |
Make filename more consistent
Diffstat (limited to 'python')
-rw-r--r-- | python/astra/plugin_c.pyx | 2 | ||||
-rw-r--r-- | python/astra/src/PythonPluginAlgorithm.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/astra/plugin_c.pyx b/python/astra/plugin_c.pyx index dcc22e9..2f473c1 100644 --- a/python/astra/plugin_c.pyx +++ b/python/astra/plugin_c.pyx @@ -48,7 +48,7 @@ cdef extern from "src/PythonPluginAlgorithm.h" namespace "astra": cdef extern from "src/PythonPluginAlgorithm.h" namespace "astra::CPythonPluginAlgorithmFactory": cdef CPythonPluginAlgorithmFactory* getSingletonPtr() -cdef extern from "astra/PluginAlgorithm.h" namespace "astra::CPluginAlgorithmFactory": +cdef extern from "astra/PluginAlgorithmFactory.h" namespace "astra::CPluginAlgorithmFactory": # NB: Using wrong pointer type here for convenience cdef void registerFactory(CPythonPluginAlgorithmFactory *) diff --git a/python/astra/src/PythonPluginAlgorithm.h b/python/astra/src/PythonPluginAlgorithm.h index b7072d6..f2fd76d 100644 --- a/python/astra/src/PythonPluginAlgorithm.h +++ b/python/astra/src/PythonPluginAlgorithm.h @@ -34,7 +34,7 @@ along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>. #include "astra/Singleton.h" #include "astra/XMLDocument.h" #include "astra/XMLNode.h" -#include "astra/PluginAlgorithm.h" +#include "astra/PluginAlgorithmFactory.h" #include <Python.h> |