blob: 32a91979e7ac70979cb220c7d33e1d25ce6eb712 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
void dump(SkAnimateMaker* ) override;
#endif
void onEndElement(SkAnimateMaker& ) override;
void refresh(SkAnimateMaker& ) override;
private:
typedef SkAnimate INHERITED;
};
#endif // SkAnimateSet_DEFINED
|