[Gcblue-commits] gcb_wx/include/graphics tcSceneHandler.h,NONE,1.1 tcscenehandler.h,1.1,NONE
Status: Alpha
Brought to you by:
ddcforge
|
From: Xavi <xr...@us...> - 2004-04-04 21:42:04
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21016 Added Files: tcSceneHandler.h Removed Files: tcscenehandler.h Log Message: + changed lowercase tcscenehandler.h to tcSceneHandler.h, according to the includes from other files and the name of the class --- tcscenehandler.h DELETED --- --- NEW FILE: tcSceneHandler.h --- #ifndef _SCENEHANDLER_H_ #define _SCENEHANDLER_H_ //#include <osg/DisplaySettings> #include <osgProducer/OsgSceneHandler> class tcGraphicsEngine; class tcSceneHandler : public osgProducer::OsgSceneHandler { public: void cullImplementation(Producer::Camera& camera) {} void drawImplementation(Producer::Camera& camera); void SetGraphicsEngine(tcGraphicsEngine *ge) {graphicsEngine = ge;} tcSceneHandler(osg::DisplaySettings *ds = NULL); ~tcSceneHandler(); private: tcGraphicsEngine *graphicsEngine; }; #endif |