summaryrefslogtreecommitdiff
path: root/animator/SkAnimateSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'animator/SkAnimateSet.h')
-rw-r--r--animator/SkAnimateSet.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/animator/SkAnimateSet.h b/animator/SkAnimateSet.h
new file mode 100644
index 00000000..b8f7bf54
--- /dev/null
+++ b/animator/SkAnimateSet.h
@@ -0,0 +1,27 @@
+
+/*
+ * Copyright 2006 The Android Open Source Project
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+
+#ifndef SkAnimateSet_DEFINED
+#define SkAnimateSet_DEFINED
+
+#include "SkAnimate.h"
+
+class SkSet : public SkAnimate {
+ DECLARE_MEMBER_INFO(Set);
+ SkSet();
+#ifdef SK_DUMP_ENABLED
+ virtual void dump(SkAnimateMaker* );
+#endif
+ virtual void onEndElement(SkAnimateMaker& );
+ virtual void refresh(SkAnimateMaker& );
+private:
+ typedef SkAnimate INHERITED;
+};
+
+#endif // SkAnimateSet_DEFINED