]> git.sesse.net Git - movit/blobdiff - glow_effect.h
Move everything into “namespace movit”.
[movit] / glow_effect.h
index abadb84a4cb332a10d45216d73a2fe6bfa2edc6c..af833070558a05ce46e4aa5865516da0714cd740 100644 (file)
@@ -1,14 +1,22 @@
-#ifndef _GLOW_EFFECT_H
-#define _GLOW_EFFECT_H 1
+#ifndef _MOVIT_GLOW_EFFECT_H
+#define _MOVIT_GLOW_EFFECT_H 1
 
 // Glow: Cut out the highlights of the image (everything above a certain threshold),
 // blur them, and overlay them onto the original image.
 
+#include <GL/glew.h>
+#include <assert.h>
+#include <string>
+
 #include "effect.h"
 
+namespace movit {
+
 class BlurEffect;
-class MixEffect;
+class EffectChain;
 class HighlightCutoffEffect;
+class MixEffect;
+class Node;
 
 class GlowEffect : public Effect {
 public:
@@ -49,4 +57,6 @@ private:
        float cutoff;
 };
 
-#endif // !defined(_GLOW_EFFECT_H)
+}  // namespace movit
+
+#endif // !defined(_MOVIT_GLOW_EFFECT_H)