X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fscene.h;h=639a467fa849cb526c19ac31744b957f820af7ea;hp=e6de1c23e6becb3a94103a06e7d905832173534e;hb=HEAD;hpb=b8b06a0ff96763ba7e188d9fcacbd8c0e3dcd515 diff --git a/source/scene.h b/source/scene.h deleted file mode 100644 index e6de1c23..00000000 --- a/source/scene.h +++ /dev/null @@ -1,38 +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 -#include -#include "renderable.h" - -namespace Msp { -namespace GL { - -class Object; -class ObjectInstance; - -class Scene: public Renderable -{ -private: - std::map > objects; - std::set renderables; - -public: - void add(const Renderable &); - void remove(const Renderable &); - - virtual bool has_pass(const Tag &) const { return true; } - virtual void render(const Tag &tag=Tag()) const; -}; - -} // namespace GL -} // namespace Msp - -#endif