mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: vtkSMObject.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 vtkSMObject - superclass for most server manager classes
|
|
// .SECTION Description
|
|
// vtkSMObject is mostly to tag a class hierarchy that it belong to the
|
|
// servermanager.
|
|
|
|
#ifndef vtkSMObject_h
|
|
#define vtkSMObject_h
|
|
|
|
#include "vtkPVServerManagerCoreModule.h" //needed for exports
|
|
#include "vtkObject.h"
|
|
|
|
class vtkSMApplication;
|
|
|
|
class VTKPVSERVERMANAGERCORE_EXPORT vtkSMObject : public vtkObject
|
|
{
|
|
public:
|
|
static vtkSMObject* New();
|
|
vtkTypeMacro(vtkSMObject, vtkObject);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
protected:
|
|
vtkSMObject();
|
|
~vtkSMObject();
|
|
|
|
private:
|
|
vtkSMObject(const vtkSMObject&); // Not implemented
|
|
void operator=(const vtkSMObject&); // Not implemented
|
|
};
|
|
|
|
#endif
|