vtkSMProxyConfigurationFileInfo.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
3 // SPDX-License-Identifier: BSD-3-Clause
19 #ifndef vtkSMProxyConfigurationFileInfo_h
20 #define vtkSMProxyConfigurationFileInfo_h
21 
23 {
24 public:
26  : FileIdentifier("SMProxyConfiguration")
27  , FileDescription("ParaView server manager proxy configuration")
28  , FileExtension(".pvpc")
29  {
30  }
31 
32  void PrintSelf(ostream& os, vtkIndent indent)
33  {
34  os << indent << "FileIdentifier: " << this->FileIdentifier << endl
35  << indent << "FileDescription: " << this->FileDescription << endl
36  << indent << "FileExtension: " << this->FileExtension << endl;
37  }
38 
39  const char* FileIdentifier;
40  const char* FileDescription;
41  const char* FileExtension;
42 };
43 
44 #endif
45 
46 // VTK-HeaderTest-Exclude: vtkSMProxyConfigurationFileInfo.h
vtkSMProxyConfigurationFileInfo
Proxy configuration file meta data.
Definition: vtkSMProxyConfigurationFileInfo.h:22
vtkSMProxyConfigurationFileInfo::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
Definition: vtkSMProxyConfigurationFileInfo.h:32
vtkSMProxyConfigurationFileInfo::FileDescription
const char * FileDescription
Definition: vtkSMProxyConfigurationFileInfo.h:40
vtkSMProxyConfigurationFileInfo::vtkSMProxyConfigurationFileInfo
vtkSMProxyConfigurationFileInfo()
Definition: vtkSMProxyConfigurationFileInfo.h:25
vtkSMProxyConfigurationFileInfo::FileExtension
const char * FileExtension
Definition: vtkSMProxyConfigurationFileInfo.h:41
vtkIndent
vtkSMProxyConfigurationFileInfo::FileIdentifier
const char * FileIdentifier
Definition: vtkSMProxyConfigurationFileInfo.h:39