vtkPVPythonPluginInterface.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
10 #ifndef vtkPVPythonPluginInterface_h
11 #define vtkPVPythonPluginInterface_h
12 
13 #include "vtkRemotingCoreModule.h" //needed for exports
14 #include <string> // STL Header
15 #include <vector> // STL Header
16 
18 {
19 public:
20  virtual ~vtkPVPythonPluginInterface();
21 
22  virtual void GetPythonSourceList(std::vector<std::string>& modules,
23  std::vector<std::string>& sources, std::vector<int>& package_flags) = 0;
24 };
25 
26 #endif
27 
28 // VTK-HeaderTest-Exclude: vtkPVPythonPluginInterface.h
vtkPVPythonPluginInterface defines the interface required by ParaView plugins that add python modules...
#define VTKREMOTINGCORE_EXPORT