summaryrefslogtreecommitdiffstats
path: root/include/astra/PluginAlgorithm.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/astra/PluginAlgorithm.h')
-rw-r--r--include/astra/PluginAlgorithm.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/astra/PluginAlgorithm.h b/include/astra/PluginAlgorithm.h
index b56228e..667e813 100644
--- a/include/astra/PluginAlgorithm.h
+++ b/include/astra/PluginAlgorithm.h
@@ -31,13 +31,16 @@ $Id$
#ifdef ASTRA_PYTHON
-#include <Python.h>
-#include "bytesobject.h"
#include "astra/Algorithm.h"
#include "astra/Singleton.h"
#include "astra/XMLDocument.h"
#include "astra/XMLNode.h"
+// Slightly hackish forward declaration of PyObject
+struct _object;
+typedef _object PyObject;
+
+
namespace astra {
class _AstraExport CPluginAlgorithm : public CAlgorithm {
@@ -84,4 +87,4 @@ PyObject* XMLNode2dict(XMLNode node);
#endif
-#endif \ No newline at end of file
+#endif