Changeset 10227 for OpenSceneGraph/trunk/include/osg/Version
- Timestamp:
- 05/18/09 12:28:14 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/Version (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/Version
r10173 r10227 25 25 #define OPENSCENEGRAPH_SOVERSION 60 26 26 27 /* *convinience macro that can be used to decide whether a feature is present or not i.e.28 * #if OSG_MIN_VERSION_REQUIRED(2,9,5)29 * your code here30 * #endif31 */27 /* convinience macro that can be used to decide whether a feature is present or not i.e. 28 * #if OSG_MIN_VERSION_REQUIRED(2,9,5) 29 * your code here 30 * #endif 31 */ 32 32 #define OSG_MIN_VERSION_REQUIRED(MAJOR, MINOR, PATCH) ((OPENSCENEGRAPH_MAJOR_VERSION>MAJOR) || (OPENSCENEGRAPH_MAJOR_VERSION==MAJOR && (OPENSCENEGRAPH_MINOR_VERSION>MINOR || (OPENSCENEGRAPH_MINOR_VERSION==MINOR && OPENSCENEGRAPH_PATCH_VERSION>=PATCH)))) 33 33 #define OSG_VERSION_LESS_THAN(MAJOR, MINOR, PATCH) ((OPENSCENEGRAPH_MAJOR_VERSION<MAJOR) || (OPENSCENEGRAPH_MAJOR_VERSION==MAJOR && (OPENSCENEGRAPH_MINOR_VERSION<MINOR || (OPENSCENEGRAPH_MINOR_VERSION==MINOR && OPENSCENEGRAPH_PATCH_VERSION<PATCH))))
