Files
OpenSceneGraph/src/osgViewer/Version.cpp
Robert Osfield f242570269 Unified the setup of version numbers so that they all are based on the version
number setup in the include/osg/Version header file.
2007-04-22 20:19:43 +00:00

18 lines
224 B
C++

#include <osgViewer/Version>
#include <osg/Version>
extern "C" {
const char* osgViewerGetVersion()
{
return osgGetVersion();
}
const char* osgViewerGetLibraryName()
{
return "OpenSceneGraph Viewer Library";
}
}