]> git.tdb.fi Git - libs/gl.git/blobdiff - source/effect.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / effect.h
diff --git a/source/effect.h b/source/effect.h
deleted file mode 100644 (file)
index eb20774..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_EFFECT_H_
-#define MSP_GL_EFFECT_H_
-
-namespace Msp {
-namespace GL {
-
-class Effect
-{
-public:
-       virtual ~Effect() { }
-
-       virtual void prepare() =0;
-       virtual void cleanup() =0;
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif