2012-03-22 01:36:20 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
2012-03-22 01:36:20 +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
|
2003-01-22 00:45:36 +08:00
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
2012-03-22 01:36:20 +08:00
|
|
|
*
|
2003-01-22 00:45:36 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2012-03-22 01:36:20 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-01-22 00:45:36 +08:00
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2001-10-04 23:12:57 +08:00
|
|
|
|
2004-09-28 17:14:04 +08:00
|
|
|
#ifndef OSGDB_VERSION
|
|
|
|
#define OSGDB_VERSION 1
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
#include <osgDB/Export>
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* osgDBGetVersion() returns the library version number.
|
2005-11-09 18:49:56 +08:00
|
|
|
* Numbering convention : OpenSceneGraph-1.0 will return 1.0 from osgDBGetVersion.
|
2001-09-20 05:08:56 +08:00
|
|
|
*
|
2001-09-28 20:36:40 +08:00
|
|
|
* This C function can be also used to check for the existence of the OpenSceneGraph
|
2001-09-20 05:08:56 +08:00
|
|
|
* library using autoconf and its m4 macro AC_CHECK_LIB.
|
|
|
|
*
|
|
|
|
* Here is the code to add to your configure.in:
|
|
|
|
\verbatim
|
|
|
|
#
|
2007-09-06 01:12:24 +08:00
|
|
|
# Check for the OpenSceneGraph (OSG) DB library
|
2001-09-20 05:08:56 +08:00
|
|
|
#
|
|
|
|
AC_CHECK_LIB(osg, osgDBGetVersion, ,
|
|
|
|
[AC_MSG_ERROR(OpenSceneGraph DB library not found. See http://www.openscenegraph.org)],)
|
|
|
|
\endverbatim
|
|
|
|
*/
|
|
|
|
extern OSGDB_EXPORT const char* osgDBGetVersion();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* getLibraryName() returns the library name in human friendly form.
|
|
|
|
*/
|
|
|
|
extern OSGDB_EXPORT const char* osgDBGetLibraryName();
|
|
|
|
|
2002-02-03 20:33:41 +08:00
|
|
|
}
|
2001-09-20 05:08:56 +08:00
|
|
|
|
|
|
|
#endif
|