comac_desk_app/ThirdpartyLibs/Libs/windows-x86_64/vtk/include/vtkVersion.h

68 lines
2.1 KiB
C
Raw Permalink Normal View History

2024-11-21 11:50:43 +08:00
/*=========================================================================
Program: Visualization Toolkit
Module: vtkVersion.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 vtkVersion
* @brief Versioning class for vtk
*
* Holds methods for defining/determining the current vtk version
* (major, minor, build).
*
* @warning
* This file will change frequently to update the VTKSourceVersion which
* timestamps a particular source release.
*/
#ifndef vtkVersion_h
#define vtkVersion_h
#include "vtkCommonCoreModule.h" // For export macro
#include "vtkObject.h"
#include "vtkVersionMacros.h" // For version macros
class VTKCOMMONCORE_EXPORT vtkVersion : public vtkObject
{
public:
static vtkVersion* New();
vtkTypeMacro(vtkVersion, vtkObject);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Return the version of vtk this object is a part of.
* A variety of methods are included. GetVTKSourceVersion returns a string
* with an identifier which timestamps a particular source tree.
*/
static const char* GetVTKVersion() { return VTK_VERSION; }
static const char* GetVTKVersionFull();
static int GetVTKMajorVersion() { return VTK_MAJOR_VERSION; }
static int GetVTKMinorVersion() { return VTK_MINOR_VERSION; }
static int GetVTKBuildVersion() { return VTK_BUILD_VERSION; }
static const char* GetVTKSourceVersion() { return VTK_SOURCE_VERSION; }
protected:
vtkVersion() = default; // ensure constructor/destructor protected
~vtkVersion() override = default;
private:
vtkVersion(const vtkVersion&) = delete;
void operator=(const vtkVersion&) = delete;
};
extern "C"
{
VTKCOMMONCORE_EXPORT const char* GetVTKVersion();
}
#endif