vtkSIDoubleMapProperty.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSIDoubleMapProperty.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 vtkSIDoubleMapProperty_h
23 #define vtkSIDoubleMapProperty_h
24 
25 #include "vtkRemotingServerManagerModule.h" //needed for exports
26 #include "vtkSIProperty.h"
27 
29 {
30 public:
31  static vtkSIDoubleMapProperty* New();
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34 
35  vtkGetStringMacro(CleanCommand) vtkSetStringMacro(CleanCommand)
36 
37  protected : vtkSIDoubleMapProperty();
38  ~vtkSIDoubleMapProperty() override;
39 
40  bool Push(vtkSMMessage*, int) override;
41  bool ReadXMLAttributes(vtkSIProxy* parent, vtkPVXMLElement* element) override;
42 
43  unsigned int NumberOfComponents;
44  char* CleanCommand;
45 
46 private:
48  void operator=(const vtkSIDoubleMapProperty&) = delete;
49 };
50 
51 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Map property that manage double value to be set through a method on a vtkObject.
static vtkSIProperty * New()
#define VTKREMOTINGSERVERMANAGER_EXPORT
virtual bool Push(vtkSMMessage *, int)
Push a new state to the underneath implementation.
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.
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.