]> git.tdb.fi Git - libs/gl.git/blobdiff - source/simplescene.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / simplescene.h
diff --git a/source/simplescene.h b/source/simplescene.h
deleted file mode 100644 (file)
index db93e16..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef MSP_GL_SIMPLESCENE_H_
-#define MSP_GL_SIMPLESCENE_H_
-
-#include <set>
-#include "scene.h"
-
-namespace Msp {
-namespace GL {
-
-/**
-The simplest possible Scene.  Rendering order is unspecified.
-*/
-class SimpleScene: public Scene
-{
-private:
-       typedef std::set<const Renderable *> 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