c2b77aa08e
Notes from Robert Osfield, I've merged osgWidget trunk, and added/changed CMakeLists.txt file to make it suitable for inclusion in the core OSG, and moved imagery/scripts/shaders out into OpenSceneGraph-Data
24 lines
878 B
C++
24 lines
878 B
C++
// -*-c++-*- osgWidget - Code by: Jeremy Moles (cubicool) 2007-2008
|
|
// $Id: Version 64 2008-06-30 21:32:00Z cubicool $
|
|
|
|
#ifndef OSGWIDGET_VERSION
|
|
#define OSGWIDGET_VERSION
|
|
|
|
#include <osgWidget/Export>
|
|
|
|
extern "C" {
|
|
|
|
OSGWIDGET_EXPORT unsigned int osgWidgetGetMajorVersion ();
|
|
OSGWIDGET_EXPORT unsigned int osgWidgetGetMinorVersion ();
|
|
OSGWIDGET_EXPORT unsigned int osgWidgetGetPatchVersion ();
|
|
OSGWIDGET_EXPORT const char* osgWidgetGetExtraText ();
|
|
OSGWIDGET_EXPORT const char* osgWidgetGetVersion ();
|
|
OSGWIDGET_EXPORT const char* osgWidgetGetLibraryName ();
|
|
OSGWIDGET_EXPORT bool osgWidgetVersionMinimum (unsigned int, unsigned int, unsigned int);
|
|
OSGWIDGET_EXPORT bool osgWidgetVersionMaximum (unsigned int, unsigned int, unsigned int);
|
|
OSGWIDGET_EXPORT bool osgWidgetVersionRequired (unsigned int, unsigned int, unsigned int);
|
|
|
|
}
|
|
|
|
#endif
|