]> git.mxchange.org Git - simgear.git/blob - simgear/structure/OSGVersion.hxx
e8dd8e265dc21aa1322ff9f649d41da2ced6064b
[simgear.git] / simgear / structure / OSGVersion.hxx
1 // OSGVersion.hxx - transform OpenSceneGraph version to something useful
2 //
3 // Copyright (C) 2008  Tim Moore timoore@redhat.com
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the
17 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 // Boston, MA  02111-1307, USA.
19
20 #ifndef SIMGEAR_OSGVERSION_HXX
21 #define SIMGEAR_OSGVERSION_HXX 1
22 #include <osg/Version>
23 #define SG_OSG_VERSION \
24     ((OPENSCENEGRAPH_MAJOR_VERSION*10000)\
25      + (OPENSCENEGRAPH_MINOR_VERSION*1000) + OPENSCENEGRAPH_PATCH_VERSION)
26 #endif