2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2004-09-28 17:14:04 +08:00
|
|
|
#ifndef OSG_VERSION
|
|
|
|
#define OSG_VERSION 1
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
#include <osg/Export>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2007-06-15 18:15:54 +08:00
|
|
|
#define OSG_VERSION_MAJOR 2
|
2007-07-09 19:05:24 +08:00
|
|
|
#define OSG_VERSION_MINOR 1
|
2007-08-06 19:24:53 +08:00
|
|
|
#define OSG_VERSION_PATCH 4
|
2007-05-14 17:33:32 +08:00
|
|
|
|
|
|
|
#define OSG_VERSION_RELEASE OSG_VERSION_PATCH
|
2005-11-09 18:49:56 +08:00
|
|
|
#define OSG_VERSION_REVISION 0
|
2005-04-28 20:45:55 +08:00
|
|
|
|
2001-01-11 00:32:10 +08:00
|
|
|
/**
|
2004-09-16 03:10:15 +08:00
|
|
|
* osgGetVersion() returns the library version number.
|
2005-11-09 18:49:56 +08:00
|
|
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgGetVersion.
|
2004-09-16 03:10:15 +08:00
|
|
|
*
|
|
|
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
|
|
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
|
|
|
*
|
|
|
|
* Here is the code to add to your configure.in:
|
2001-01-11 00:32:10 +08:00
|
|
|
\verbatim
|
|
|
|
#
|
|
|
|
# Check for the OpenSceneGraph (OSG) library
|
|
|
|
#
|
|
|
|
AC_CHECK_LIB(osg, osgGetVersion, ,
|
|
|
|
[AC_MSG_ERROR(OpenSceneGraph library not found. See http://www.openscenegraph.org)],)
|
|
|
|
\endverbatim
|
|
|
|
*/
|
2005-04-12 01:14:17 +08:00
|
|
|
extern OSG_EXPORT const char* osgGetVersion();
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2004-09-16 03:10:15 +08:00
|
|
|
/** The osgGetLibraryName() method returns the library name in human-friendly form. */
|
2005-04-12 01:14:17 +08:00
|
|
|
extern OSG_EXPORT const char* osgGetLibraryName();
|
2001-01-11 00:32:10 +08:00
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-01-11 00:32:10 +08:00
|
|
|
|
|
|
|
#endif
|