vtkSMCameraConfigurationFileInfo.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 vtkSMCameraConfigurationFileInfo_h
20 #define vtkSMCameraConfigurationFileInfo_h
21 
23 {
24 public:
26  : FileIdentifier("PVCameraConfiguration")
27  , FileDescription("ParaView camera configuration")
28  , FileExtension(".pvcc")
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: vtkSMCameraConfigurationFileInfo.h
void PrintSelf(ostream &os, vtkIndent indent)
Camera configuration file meta data.