X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fsimplescene.h;h=e56aeb0c982592b5e8995f5ac2d78b47fc972091;hb=HEAD;hp=db93e169d3b82bae5903fccc8c81ff155d6ff3d9;hpb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;p=libs%2Fgl.git diff --git a/source/simplescene.h b/source/simplescene.h deleted file mode 100644 index db93e169..00000000 --- a/source/simplescene.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef MSP_GL_SIMPLESCENE_H_ -#define MSP_GL_SIMPLESCENE_H_ - -#include -#include "scene.h" - -namespace Msp { -namespace GL { - -/** -The simplest possible Scene. Rendering order is unspecified. -*/ -class SimpleScene: public Scene -{ -private: - typedef std::set RenderableSet; - - RenderableSet renderables; - -public: - virtual void add(const Renderable &); - virtual void remove(const Renderable &); - - using Scene::render; - virtual void render(Renderer &, const Tag & = Tag()) const; -}; - -} // namespace GL -} // namespace Msp - -#endif