// Generated by vtkWrapPythonInit in VTK/Wrapping #include "vtkPython.h" #include "vtkPythonCompatibility.h" #include "vtkSystemIncludes.h" #include // Handle compiler warning messages, etc. #if defined( _MSC_VER ) && !defined(VTK_DISPLAY_WIN32_WARNINGS) #pragma warning ( disable : 4706 ) #endif // Windows Warnings extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkApplyColors(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkApplyIcons(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkDendrogramItem(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkGraphItem(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkGraphLayoutView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkHeatmapItem(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkHierarchicalGraphPipeline(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkHierarchicalGraphView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkIcicleView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkInteractorStyleAreaSelectHover(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkInteractorStyleTreeMapHover(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkParallelCoordinatesHistogramRepresentation(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkParallelCoordinatesRepresentation(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkParallelCoordinatesView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkRenderedGraphRepresentation(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkRenderedHierarchyRepresentation(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkRenderedRepresentation(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkRenderedSurfaceRepresentation(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkRenderedTreeAreaRepresentation(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkRenderView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkSCurveSpline(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkTanglegramItem(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkTreeAreaView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkTreeHeatmapItem(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkTreeMapView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkTreeRingView(PyObject *); } extern "C" {VTK_ABI_EXPORT PyObject *PyVTKAddFile_vtkViewUpdater(PyObject *); } static PyMethodDef PyvtkViewsInfovisPython_Methods[] = { {nullptr, nullptr, 0, nullptr}}; #ifdef VTK_PY3K static PyModuleDef PyvtkViewsInfovisPython_Module = { PyModuleDef_HEAD_INIT, "vtkViewsInfovisPython", // m_name nullptr, // m_doc 0, // m_size PyvtkViewsInfovisPython_Methods, //m_methods nullptr, // m_reload nullptr, // m_traverse nullptr, // m_clear nullptr // m_free }; #endif extern "C" {VTK_ABI_EXPORT PyObject *real_initvtkViewsInfovisPython(const char *); } PyObject *real_initvtkViewsInfovisPython(const char *) { #ifdef VTK_PY3K PyObject *m = PyModule_Create(&PyvtkViewsInfovisPython_Module); #else PyObject *m = Py_InitModule("vtkViewsInfovisPython", PyvtkViewsInfovisPython_Methods); #endif PyObject *d = PyModule_GetDict(m); if (!d) { Py_FatalError("can't get dictionary for module vtkViewsInfovisPython"); } PyVTKAddFile_vtkApplyColors(d); PyVTKAddFile_vtkApplyIcons(d); PyVTKAddFile_vtkDendrogramItem(d); PyVTKAddFile_vtkGraphItem(d); PyVTKAddFile_vtkGraphLayoutView(d); PyVTKAddFile_vtkHeatmapItem(d); PyVTKAddFile_vtkHierarchicalGraphPipeline(d); PyVTKAddFile_vtkHierarchicalGraphView(d); PyVTKAddFile_vtkIcicleView(d); PyVTKAddFile_vtkInteractorStyleAreaSelectHover(d); PyVTKAddFile_vtkInteractorStyleTreeMapHover(d); PyVTKAddFile_vtkParallelCoordinatesHistogramRepresentation(d); PyVTKAddFile_vtkParallelCoordinatesRepresentation(d); PyVTKAddFile_vtkParallelCoordinatesView(d); PyVTKAddFile_vtkRenderedGraphRepresentation(d); PyVTKAddFile_vtkRenderedHierarchyRepresentation(d); PyVTKAddFile_vtkRenderedRepresentation(d); PyVTKAddFile_vtkRenderedSurfaceRepresentation(d); PyVTKAddFile_vtkRenderedTreeAreaRepresentation(d); PyVTKAddFile_vtkRenderView(d); PyVTKAddFile_vtkSCurveSpline(d); PyVTKAddFile_vtkTanglegramItem(d); PyVTKAddFile_vtkTreeAreaView(d); PyVTKAddFile_vtkTreeHeatmapItem(d); PyVTKAddFile_vtkTreeMapView(d); PyVTKAddFile_vtkTreeRingView(d); PyVTKAddFile_vtkViewUpdater(d); return m; }