]> git.sesse.net Git - movit/blobdiff - unsharp_mask_effect.h
Take LDFLAGS properly from configure, and distinguish better between LDFLAGS and...
[movit] / unsharp_mask_effect.h
index b0c937776e32bc0d7d74b3bade5e7c0792dac6e8..e6d3790b86a1a6763ba1f00b627a00fe5bc73765 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef _UNSHARP_MASK_EFFECT_H
-#define _UNSHARP_MASK_EFFECT_H 1
+#ifndef _MOVIT_UNSHARP_MASK_EFFECT_H
+#define _MOVIT_UNSHARP_MASK_EFFECT_H 1
 
 // Unsharp mask is probably the most popular way of doing sharpening today,
 // although it does not always deliver the best results (it is very prone
@@ -16,6 +16,8 @@
 
 #include "effect.h"
 
+namespace movit {
+
 class BlurEffect;
 class EffectChain;
 class MixEffect;
@@ -43,4 +45,6 @@ private:
        MixEffect *mix;
 };
 
-#endif // !defined(_UNSHARP_MASK_EFFECT_H)
+}  // namespace movit
+
+#endif // !defined(_MOVIT_UNSHARP_MASK_EFFECT_H)