]> git.tdb.fi Git - libs/gl.git/blobdiff - source/renderable.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / renderable.h
diff --git a/source/renderable.h b/source/renderable.h
deleted file mode 100644 (file)
index b9b6b08..0000000
+++ /dev/null
@@ -1,28 +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 <string>
-
-namespace Msp {
-namespace GL {
-
-class Renderable
-{
-public:
-       virtual bool has_pass(const std::string &pn) const =0;
-
-       virtual void render() const =0;
-       virtual void render(const std::string &pn) const =0;
-};
-
-} // namespace Msp
-} // namespace GL
-
-#endif