aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/animator/SkAnimateSet.h
blob: c735a084636e55e8245a87f963e8b4b8c22b8f4b (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
28

/*
 * 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