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
vtkSMCameraConfigurationWriter.h
/*=========================================================================
Program: Visualization Toolkit
Module: vtkSMCameraConfigurationWriter.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 vtkSMCameraConfigurationWriter
* @brief A writer for XML camera configuration.
*
*
* A writer for XML camera configuration. Writes camera configuration files
* using ParaView state file machinery.
*
* @sa
* vtkSMCameraConfigurationReader, vtkSMProxyConfigurationWriter
*
* @par Thanks:
* This class was contributed by SciberQuest Inc.
*/
#ifndef vtkSMCameraConfigurationWriter_h
#define vtkSMCameraConfigurationWriter_h
#include "vtkRemotingMiscModule.h" //needed for exports
#include "vtkSMProxyConfigurationWriter.h"
class vtkSMProxy;
class VTKREMOTINGMISC_EXPORT vtkSMCameraConfigurationWriter : public vtkSMProxyConfigurationWriter
{
public:
vtkTypeMacro(vtkSMCameraConfigurationWriter, vtkSMProxyConfigurationWriter);
void PrintSelf(ostream& os, vtkIndent indent) override;
static vtkSMCameraConfigurationWriter* New();
/**
* Set the render view proxy to extract camera properties from.
*/
void SetRenderViewProxy(vtkSMProxy* rvProxy);
protected:
vtkSMCameraConfigurationWriter();
~vtkSMCameraConfigurationWriter() override;
// Protect the superclass's SetProxy, clients are forced to use
// SetRenderViewProxy
void SetProxy(vtkSMProxy*) override { vtkErrorMacro("Use SetRenderViewProxy."); }
private:
vtkSMCameraConfigurationWriter(const vtkSMCameraConfigurationWriter&) = delete;
void operator=(const vtkSMCameraConfigurationWriter&) = delete;
};
#endif

Computing file changes ...