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