]> git.tdb.fi Git - libs/gl.git/blobdiff - source/animationeventobserver.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / animationeventobserver.h
diff --git a/source/animationeventobserver.h b/source/animationeventobserver.h
deleted file mode 100644 (file)
index 167b966..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef MSP_GL_ANIMATIONEVENTOBSERVER_H_
-#define MSP_GL_ANIMATIONEVENTOBSERVER_H_
-
-#include <string>
-#include <msp/core/variant.h>
-
-namespace Msp {
-namespace GL {
-
-class AnimatedObject;
-
-class AnimationEventObserver
-{
-protected:
-       AnimationEventObserver() { }
-public:
-       virtual ~AnimationEventObserver() { }
-
-       virtual void animation_event(AnimatedObject *, const std::string &, const Variant &) { }
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif