summaryrefslogtreecommitdiffstats
path: root/cc/animation/animation_events.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/animation/animation_events.h')
-rw-r--r--cc/animation/animation_events.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/cc/animation/animation_events.h b/cc/animation/animation_events.h
index d268162..63645ec 100644
--- a/cc/animation/animation_events.h
+++ b/cc/animation/animation_events.h
@@ -34,7 +34,13 @@ struct CC_EXPORT AnimationEvent {
FilterOperations filters;
};
-typedef std::vector<AnimationEvent> AnimationEventsVector;
+class CC_EXPORT AnimationEvents {
+ public:
+ AnimationEvents();
+ ~AnimationEvents();
+
+ std::vector<AnimationEvent> events_;
+};
} // namespace cc