- Timestamp:
- 01/27/09 14:23:20 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgWrappers/osgViewer/CompositeViewer.cpp
r8980 r9554 17 17 #include <osg/FrameStamp> 18 18 #include <osg/Object> 19 #include <osg/Stats> 19 20 #include <osg/Timer> 20 21 #include <osgViewer/CompositeViewer> … … 75 76 __bool__readConfiguration__C5_std_string_R1, 76 77 "read the viewer configuration from a configuration file. ", 78 ""); 79 I_Method1(void, setViewerStats, IN, osg::Stats *, stats, 80 Properties::VIRTUAL, 81 __void__setViewerStats__osg_Stats_P1, 82 "Set the Stats object used for collect various frame related timing and scene graph stats. ", 83 ""); 84 I_Method0(osg::Stats *, getViewerStats, 85 Properties::VIRTUAL, 86 __osg_Stats_P1__getViewerStats, 87 "Get the Viewers Stats object. ", 88 ""); 89 I_Method0(const osg::Stats *, getViewerStats, 90 Properties::VIRTUAL, 91 __C5_osg_Stats_P1__getViewerStats, 92 "Get the Viewers Stats object. ", 77 93 ""); 78 94 I_Method1(void, addView, IN, osgViewer::View *, view, … … 258 274 __osg_FrameStamp_P1__getViewerFrameStamp, 259 275 0); 276 I_SimpleProperty(osg::Stats *, ViewerStats, 277 __osg_Stats_P1__getViewerStats, 278 __void__setViewerStats__osg_Stats_P1); 260 279 END_REFLECTOR 261 280
