AppImport.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "PreCompiled.h"
00027 #ifndef _PreComp_
00028 # include <stdio.h>
00029 # if defined (_POSIX_C_SOURCE)
00030 # undef _POSIX_C_SOURCE
00031 # endif // (re-)defined in pyconfig.h
00032 # include <Python.h>
00033 #endif
00034
00035 #include <Base/Console.h>
00036 #include <Base/Interpreter.h>
00037
00038 #include <App/Application.h>
00039 #include <Mod/Part/App/TopologyPy.h>
00040
00041 #include "FeatureImportStep.h"
00042 #include "FeatureImportIges.h"
00043
00044
00045
00046 extern struct PyMethodDef Import_methods[];
00047
00048
00049
00050 #ifdef FC_OS_WIN32
00051 # define ModuleExport __declspec(dllexport)
00052 #else
00053 # define ModuleExport
00054 #endif
00055 extern "C" {
00056 void ModuleExport initImport() {
00057
00058 (void) Py_InitModule("Import", Import_methods);
00059
00060
00061 Base::Interpreter().loadModule("Part");
00062
00063 App::AbstractFeatureFactory().AddProducer("ImportStep",new App::AbstractFeatureProducer<Import::FeatureImportStep>);
00064 App::AbstractFeatureFactory().AddProducer("ImportIges",new App::AbstractFeatureProducer<Import::FeatureImportIges>);
00065
00066 Base::Console().Log("Import loaded\n");
00067
00068 return;
00069 }
00070
00071
00072 }