Files
OpenSceneGraph/examples/osgversion/osgversion.cpp
Robert Osfield 7083773b64 Ported osgGLUT based src/Demos across to being osgProducer based, and placed
them in the new examples/ directory.
2003-03-14 20:35:45 +00:00

10 lines
125 B
C++

#include <stdio.h>
#include <osg/Version>
int main( int, char **)
{
printf( "%s\n", osgGetVersion() );
return 0;
}