vtkPVPythonPluginInterface.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVPythonPluginInterface.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
22 #ifndef vtkPVPythonPluginInterface_h
23 #define vtkPVPythonPluginInterface_h
24 
25 #include "vtkObject.h"
26 #include "vtkRemotingCoreModule.h" //needed for exports
27 #include <string> // STL Header
28 #include <vector> // STL Header
29 
31 {
32 public:
33  virtual ~vtkPVPythonPluginInterface();
34 
35  virtual void GetPythonSourceList(std::vector<std::string>& modules,
36  std::vector<std::string>& sources, std::vector<int>& package_flags) = 0;
37 };
38 
39 #endif
40 
41 // VTK-HeaderTest-Exclude: vtkPVPythonPluginInterface.h
vtkPVPythonPluginInterface defines the interface required by ParaView plugins that add python modules...
#define VTKREMOTINGCORE_EXPORT