]> git.tdb.fi Git - libs/gl.git/blob - source/effect.h
For a few lingering whitespace issues
[libs/gl.git] / source / effect.h
1 #ifndef MSP_GL_EFFECT_H_
2 #define MSP_GL_EFFECT_H_
3
4 namespace Msp {
5 namespace GL {
6
7 class Effect
8 {
9 public:
10         virtual ~Effect() { }
11
12         virtual void prepare() = 0;
13         virtual void cleanup() = 0;
14 };
15
16 } // namespace GL
17 } // namespace Msp
18
19 #endif