Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __vtkKWWidgetsVersion_h
00023 #define __vtkKWWidgetsVersion_h
00024
00025 #include "vtkKWWidgets.h"
00026 #include "vtkObject.h"
00027
00028 #define KWWidgets_SOURCE_VERSION "KWWidgets version " KWWidgets_VERSION ", KWWidgets source $Revision: 1.1060 $, $Date: 2009-08-25 06:58:09 $ (GMT)"
00029
00030 class KWWidgets_EXPORT vtkKWWidgetsVersion : public vtkObject
00031 {
00032 public:
00033 static vtkKWWidgetsVersion *New();
00034 vtkTypeRevisionMacro(vtkKWWidgetsVersion,vtkObject);
00035 void PrintSelf(ostream& os, vtkIndent indent);
00036
00037
00038
00039 static int GetKWWidgetsMajorVersion()
00040 { return KWWidgets_MAJOR_VERSION; }
00041 static int GetKWWidgetsMinorVersion()
00042 { return KWWidgets_MINOR_VERSION; }
00043 static int GetKWWidgetsPatchVersion()
00044 { return KWWidgets_PATCH_VERSION; }
00045
00046
00047
00048
00049 static const char *GetKWWidgetsVersion()
00050 { return KWWidgets_VERSION; }
00051
00052
00053
00054
00055 static const char *GetKWWidgetsSourceVersion()
00056 { return KWWidgets_SOURCE_VERSION; }
00057
00058 protected:
00059 vtkKWWidgetsVersion() {};
00060 ~vtkKWWidgetsVersion() {};
00061
00062 private:
00063 vtkKWWidgetsVersion(const vtkKWWidgetsVersion&);
00064 void operator=(const vtkKWWidgetsVersion&);
00065 };
00066
00067 #endif