X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fscene.h;h=639a467fa849cb526c19ac31744b957f820af7ea;hp=19048eb305a9f2ca8e8a21eca741f4671ebf813e;hb=HEAD;hpb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8 diff --git a/source/scene.h b/source/scene.h deleted file mode 100644 index 19048eb3..00000000 --- a/source/scene.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef MSP_GL_SCENE_H_ -#define MSP_GL_SCENE_H_ - -#include "renderable.h" - -namespace Msp { -namespace GL { - -/** -Scenes are containers for other Renderables. This is a base class that can't -be instantiated. At the moment the available Scene types are SimpleScene, -InstancedScene and OrderedScene. -*/ -class Scene: public Renderable -{ -protected: - Scene() { } -public: - virtual ~Scene() { } - - virtual void add(const Renderable &) = 0; - virtual void remove(const Renderable &) = 0; - - using Renderable::render; - virtual void render(const Tag & = Tag()) const; -}; - -} // namespace GL -} // namespace Msp - -#endif