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
Proxy configuration file meta data.
void PrintSelf(ostream &os, vtkIndent indent)