Revision 3a6370bf39d14d68f194f1204ddf42fe2aa329d2 authored by Pierre Guillou on 11 October 2019, 13:16:44 UTC, committed by Pierre Guillou on 13 April 2022, 09:24:25 UTC
1 parent cdaa0c2
vtkSMProxyConfigurationFileInfo.h
/*=========================================================================
Program: Visualization Toolkit
Module: vtkSMProxyConfigurationFileInfo.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkSMProxyConfigurationFileInfo
* @brief Proxy configuration file meta data.
*
*
* Organizes meta-data that is used by both reader and writer in a single
* location.
*
* @sa
* vtkSMProxyConfigurationReader, vtkSMProxyConfigurationWriter
*
* @par Thanks:
* This class was contributed by SciberQuest Inc.
*/
#ifndef vtkSMProxyConfigurationFileInfo_h
#define vtkSMProxyConfigurationFileInfo_h
class vtkSMProxyConfigurationFileInfo
{
public:
vtkSMProxyConfigurationFileInfo()
: FileIdentifier("SMProxyConfiguration")
, FileDescription("ParaView server manager proxy configuration")
, FileExtension(".pvpc")
{
}
void PrintSelf(ostream& os, vtkIndent indent)
{
os << indent << "FileIdentifier: " << this->FileIdentifier << endl
<< indent << "FileDescription: " << this->FileDescription << endl
<< indent << "FileExtension: " << this->FileExtension << endl;
}
const char* FileIdentifier;
const char* FileDescription;
const char* FileExtension;
};
#endif
// VTK-HeaderTest-Exclude: vtkSMProxyConfigurationFileInfo.h

Computing file changes ...