]> 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 6a4be91..0000000
+++ /dev/null
@@ -1,41 +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 <map>
-#include <set>
-#include "renderable.h"
-
-namespace Msp {
-namespace GL {
-
-class Object;
-class ObjectInstance;
-
-class Scene: public Renderable
-{
-private:
-       typedef std::set<const ObjectInstance *> InstanceSet;
-       typedef std::map<const Object *, InstanceSet> ObjectMap;
-       typedef std::set<const Renderable *> RenderableSet;
-
-       ObjectMap objects;
-       RenderableSet renderables;
-
-public:
-       void add(const Renderable &);
-       void remove(const Renderable &);
-
-       virtual void render(const Tag &tag=Tag()) const;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif