mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: vtkSITimeStepsProperty.h
|
|
|
|
Copyright (c) Kitware, Inc.
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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.
|
|
|
|
=========================================================================*/
|
|
// .NAME vtkSITimeRangeProperty
|
|
// .SECTION Description
|
|
// SIProperty that deals with TimeRange on Algorithm object type
|
|
|
|
#ifndef vtkSITimeStepsProperty_h
|
|
#define vtkSITimeStepsProperty_h
|
|
|
|
#include "vtkPVServerImplementationCoreModule.h" //needed for exports
|
|
#include "vtkSIProperty.h"
|
|
|
|
class VTKPVSERVERIMPLEMENTATIONCORE_EXPORT vtkSITimeStepsProperty : public vtkSIProperty
|
|
{
|
|
public:
|
|
static vtkSITimeStepsProperty* New();
|
|
vtkTypeMacro(vtkSITimeStepsProperty, vtkSIProperty);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
//BTX
|
|
protected:
|
|
vtkSITimeStepsProperty();
|
|
~vtkSITimeStepsProperty();
|
|
|
|
friend class vtkSIProxy;
|
|
|
|
// Description:
|
|
// Pull the current state of the underneath implementation
|
|
virtual bool Pull(vtkSMMessage*);
|
|
|
|
private:
|
|
vtkSITimeStepsProperty(const vtkSITimeStepsProperty&); // Not implemented
|
|
void operator=(const vtkSITimeStepsProperty&); // Not implemented
|
|
//ETX
|
|
};
|
|
|
|
#endif
|