vtkSMDocumentation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSMDocumentation.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 vtkSMDocumentation_h
26 #define vtkSMDocumentation_h
27 
28 #include "vtkRemotingServerManagerModule.h" //needed for exports
29 #include "vtkSMObject.h"
30 
31 class vtkPVXMLElement;
32 
34 {
35 public:
36  static vtkSMDocumentation* New();
38  void PrintSelf(ostream& os, vtkIndent indent) override;
39 
43  const char* GetLongHelp();
44 
48  const char* GetShortHelp();
49 
53  const char* GetDescription();
54 
56 
59  void SetDocumentationElement(vtkPVXMLElement*);
60  vtkGetObjectMacro(DocumentationElement, vtkPVXMLElement);
61 
62 protected:
64  ~vtkSMDocumentation() override;
66 
68 
69 private:
70  vtkSMDocumentation(const vtkSMDocumentation&) = delete;
71  void operator=(const vtkSMDocumentation&) = delete;
72 };
73 
74 #endif
#define VTKREMOTINGSERVERMANAGER_EXPORT
superclass for most server manager classes
Definition: vtkSMObject.h:29
static vtkSMObject * New()
class providing access to the documentation for a vtkSMProxy.
vtkPVXMLElement * DocumentationElement
This is used by vtkPVXMLParser to represent an XML document starting at the root element.
void PrintSelf(ostream &os, vtkIndent indent) override