Salome HOME
Patch from Christian CAREMOLI for bug PAL10339 : random GUI freeze.
[modules/superv.git] / src / GraphExecutor / SuperVisionExecutor_CheckOfUndefined.cxx
1 using namespace std;
2 #include <iostream>
3 #include <fstream>
4 #include <unistd.h>
5
6 #include <Python.h>
7
8 #include "DataFlowBase_Base.hxx"
9 #include "DataFlowBase_Graph.hxx"
10 #include "DataFlowExecutor_InNode.hxx"
11 #include "DataFlowExecutor_OutNode.hxx"
12 #include "DataFlowExecutor_DataFlow.hxx"
13 #include "DataFlowExecutor_DataFlow.lxx"
14
15 static PyMethodDef MethodPyVoidMethod[] = {
16   { NULL,        NULL }
17 };
18
19 int main(int argc, char **argv) {
20   Py_Initialize() ;
21   Py_InitModule( "InitPyRunMethod" , MethodPyVoidMethod ) ;
22   return 0;
23 }
24