18 lines
224 B
C++
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";
|
|
}
|
|
|
|
}
|