blob: f48c33fd8ab1a279cde77308f547415d1c81cdc7 [file] [log] [blame]
/*
* 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 SkPostParts_DEFINED
#define SkPostParts_DEFINED
#include "SkDisplayInput.h"
class SkPost;
class SkDataInput: public SkInput {
DECLARE_MEMBER_INFO(DataInput);
SkDataInput();
bool add();
void dirty() SK_OVERRIDE;
SkDisplayable* getParent() const SK_OVERRIDE;
void onEndElement(SkAnimateMaker& ) SK_OVERRIDE;
bool setParent(SkDisplayable* ) SK_OVERRIDE;
protected:
SkPost* fParent;
typedef SkInput INHERITED;
friend class SkPost;
};
#endif // SkPostParts_DEFINED