RenderContext.h

Go to the documentation of this file.
00001 
00005 #ifndef RenderContext_h
00006 #define RenderContext_h
00007 
00008 class Scene;
00009 
00010 class RenderContext {
00011  public:
00012   RenderContext(const Scene* scene)
00013     : scene(scene)
00014   {
00015   }
00016   ~RenderContext() {
00017   }
00018 
00019   const Scene* getScene() const {
00020     return scene;
00021   }
00022  private:
00023   const Scene* scene;
00024 };
00025 
00026 #endif

Generated on Tue Jan 29 21:34:54 2008 for specter by  doxygen 1.4.6