vtkSISILProperty.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSISILProperty
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 =========================================================================*/
21 #ifndef vtkSISILProperty_h
22 #define vtkSISILProperty_h
23 
24 #include "vtkRemotingServerManagerModule.h" //needed for exports
25 #include "vtkSIProperty.h"
26 
27 class vtkGraph;
28 
30 {
31 public:
32  static vtkSISILProperty* New();
34  void PrintSelf(ostream& os, vtkIndent indent) override;
35 
36 protected:
38  ~vtkSISILProperty() override;
39 
40  friend class vtkSIProxy;
41 
47  bool ReadXMLAttributes(vtkSIProxy* proxyhelper, vtkPVXMLElement* element) override;
48 
52  bool Pull(vtkSMMessage*) override;
53 
54  vtkSetStringMacro(SubTree);
55 
56  class vtkIdTypeSet;
57  static void GetLeaves(
58  vtkGraph* sil, vtkIdType vertexid, vtkIdTypeSet& list, bool traverse_cross_edges);
59 
60 private:
61  vtkSISILProperty(const vtkSISILProperty&) = delete;
62  void operator=(const vtkSISILProperty&) = delete;
63 
64  char* SubTree;
65  int OutputPort;
66 };
67 
68 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
static vtkSIProperty * New()
#define VTKREMOTINGSERVERMANAGER_EXPORT
int vtkIdType
vtkSIProxy is the server-implementation for a vtkSMProxy that helps the vtkSMProxy with managing/upda...
Definition: vtkSIProxy.h:34
Header class that setup every thing in order to use Protobuf messages in a transparent manner...
virtual bool ReadXMLAttributes(vtkSIProxy *proxyhelper, vtkPVXMLElement *element)
Parse the xml for the property.
SIProperty that deals with SIL data extraction to get the property value.
Basic ServerImplementation property used to call a method with no argument on a VTK object...
Definition: vtkSIProperty.h:36
This is used by vtkPVXMLParser to represent an XML document starting at the root element.
virtual bool Pull(vtkSMMessage *)
Pull the current state of the underneath implementation.