]> git.tdb.fi Git - libs/gl.git/blobdiff - source/scene.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / scene.h
diff --git a/source/scene.h b/source/scene.h
deleted file mode 100644 (file)
index f4e1281..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_SCENE_H_
-#define MSP_GL_SCENE_H_
-
-#include <set>
-#include "renderable.h"
-
-namespace Msp {
-namespace GL {
-
-class Scene: public Renderable
-{
-private:
-       std::set<const Renderable *> renderables;
-
-public:
-       void add(const Renderable &);
-       void remove(const Renderable &);
-
-       virtual bool has_pass(const std::string &) const { return true; }
-       virtual void render() const;
-       virtual void render(const std::string &) const;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif