]> git.tdb.fi Git - libs/gl.git/blobdiff - source/animation/animationeventobserver.h
Rearrange soucre files into subdirectories
[libs/gl.git] / source / animation / animationeventobserver.h
diff --git a/source/animation/animationeventobserver.h b/source/animation/animationeventobserver.h
new file mode 100644 (file)
index 0000000..1eafc4d
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef MSP_GL_ANIMATIONEVENTOBSERVER_H_
+#define MSP_GL_ANIMATIONEVENTOBSERVER_H_
+
+#include <string>
+#include <msp/core/variant.h>
+
+namespace Msp {
+namespace GL {
+
+class Placeable;
+
+class AnimationEventObserver
+{
+protected:
+       AnimationEventObserver() { }
+public:
+       virtual ~AnimationEventObserver() { }
+
+       virtual void animation_event(Placeable *, const std::string &, const Variant &) { }
+};
+
+} // namespace GL
+} // namespace Msp
+
+#endif