/*========================================================================= Program: ParaView Module: vtkMyPythonView.h =========================================================================*/ /** * @class vtkMyPythonView * * vtkMyPythonView is a view for displaying data via a Python script * that uses matplotlib to generate a plot. */ #ifndef vtkMyPythonView_h #define vtkMyPythonView_h #include "vtkPythonView.h" class vtkMyPythonView : public vtkPythonView { //***************************************************************** public: static vtkMyPythonView* New(); vtkTypeMacro(vtkMyPythonView, vtkPythonView); protected: vtkMyPythonView() =default; ~vtkMyPythonView() override =default; private: vtkMyPythonView(const vtkMyPythonView&) =delete; void operator=(const vtkMyPythonView&) =delete; }; #endif