ParaView
vtkSIDirectoryProxy.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSIDirectoryProxy.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 vtkSIDirectoryProxy_h
23 #define vtkSIDirectoryProxy_h
24 
25 #include "vtkPVServerImplementationCoreModule.h" //needed for exports
26 #include "vtkSIProxy.h"
27 
28 class vtkAlgorithmOutput;
29 class vtkSIProperty;
30 class vtkPVXMLElement;
32 
33 class VTKPVSERVERIMPLEMENTATIONCORE_EXPORT vtkSIDirectoryProxy : public vtkSIProxy
34 {
35 public:
36  static vtkSIDirectoryProxy* New();
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
43  virtual void Pull(vtkSMMessage* msg);
44 
45 protected:
48 
49  // We override it to skip the fake properties (DirectoryList, FileList)
50  virtual bool ReadXMLProperty(vtkPVXMLElement* property_element);
51 
52 private:
53  vtkSIDirectoryProxy(const vtkSIDirectoryProxy&) VTK_DELETE_FUNCTION;
54  void operator=(const vtkSIDirectoryProxy&) VTK_DELETE_FUNCTION;
55 };
56 
57 #endif
virtual void Pull(vtkSMMessage *msg)
Pull the current state of the underneath implementation.
vtkSIDirectoryProxy is the server-implementation for a vtkSMDirectory which will customly handle serv...
virtual bool ReadXMLProperty(vtkPVXMLElement *property_element)
Parses the XML to create property/subproxy helpers.
void PrintSelf(ostream &os, vtkIndent indent)
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...
static vtkSIProxy * New()
object responsible for managing XML proxies definitions
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.