mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: vtkSMUncheckedPropertyHelper.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.
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef vtkSMUncheckedPropertyHelper_h
|
|
#define vtkSMUncheckedPropertyHelper_h
|
|
|
|
#include "vtkPVServerManagerCoreModule.h" //needed for exports
|
|
#include "vtkSMPropertyHelper.h"
|
|
|
|
class VTKPVSERVERMANAGERCORE_EXPORT vtkSMUncheckedPropertyHelper : public vtkSMPropertyHelper
|
|
{
|
|
public:
|
|
vtkSMUncheckedPropertyHelper(
|
|
vtkSMProxy *proxy, const char *name, bool quiet = false);
|
|
vtkSMUncheckedPropertyHelper(vtkSMProperty *property, bool quiet = false);
|
|
|
|
private:
|
|
vtkSMUncheckedPropertyHelper(const vtkSMUncheckedPropertyHelper&); // Not implemented
|
|
void operator=(const vtkSMUncheckedPropertyHelper&); // Not implemented
|
|
};
|
|
|
|
#endif
|
|
|
|
// VTK-HeaderTest-Exclude: vtkSMUncheckedPropertyHelper.h
|