X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Frenderable.h;h=80fe172eb7435b44f147d4324294b6c72b5d5fd2;hp=b83fdb0dfc59747400d63434372299188015cec1;hb=HEAD;hpb=61f90f1680884b02e783d2d419f9326e5d6f397b diff --git a/source/renderable.h b/source/renderable.h deleted file mode 100644 index b83fdb0d..00000000 --- a/source/renderable.h +++ /dev/null @@ -1,31 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_RENDERABLE_H_ -#define MSP_GL_RENDERABLE_H_ - -#include -#include "tag.h" - -namespace Msp { -namespace GL { - -class Renderable -{ -protected: - Renderable() { } -public: - virtual ~Renderable() { } - - virtual bool has_pass(const Tag &tag) const =0; - virtual void render(const Tag &tag=Tag()) const =0; -}; - -} // namespace Msp -} // namespace GL - -#endif