]> 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 92a4a17..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2010  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#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;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif