ParaView
vtkSMSettingsProxy.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSMSettingsProxy.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 =========================================================================*/
25 #ifndef vtkSMSettingsProxy_h
26 #define vtkSMSettingsProxy_h
27 
28 #include "vtkPVServerManagerCoreModule.h" //needed for exports
29 #include "vtkSMProxy.h"
30 
31 class vtkSMSettingsObserver;
32 
33 class VTKPVSERVERMANAGERCORE_EXPORT vtkSMSettingsProxy : public vtkSMProxy
34 {
35 public:
36  static vtkSMSettingsProxy* New();
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
45 
46 protected:
49 
53  virtual void CreateVTKObjects();
54 
55  friend class vtkSMSettingsObserver;
56 
60  void ExecuteEvent(unsigned long eventId);
61 
62  vtkSMSettingsObserver* Observer;
63 
64 private:
65  vtkSMSettingsProxy(const vtkSMSettingsProxy&) VTK_DELETE_FUNCTION;
66  void operator=(const vtkSMSettingsProxy&) VTK_DELETE_FUNCTION;
67 };
68 
69 #endif
virtual int ReadXMLAttributes(vtkSMSessionProxyManager *pm, vtkPVXMLElement *element)
Read attributes from an XML element.
vtkSMSettingsObserver * Observer
void operator=(const vtkSMProxy &) VTK_DELETE_FUNCTION
proxy subclass responsible for linking settings proxies and settings classes on the VTK side...
The vtkSMSessionProxyManager is esponsible for creating and managing proxies for a given session...
void PrintSelf(ostream &os, vtkIndent indent)
static vtkSMProxy * New()
virtual void CreateVTKObjects()
Given a class name (by setting VTKClassName) and server ids (by setting ServerIDs), this methods instantiates the objects on the server(s)
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:152
This is used by vtkPVXMLParser to represent an XML document starting at the root element.