michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #ifndef SkSnapShot_DEFINED michael@0: #define SkSnapShot_DEFINED michael@0: michael@0: #include "SkDrawable.h" michael@0: #include "SkImageDecoder.h" michael@0: #include "SkMemberInfo.h" michael@0: #include "SkString.h" michael@0: michael@0: class SkSnapshot: public SkDrawable { michael@0: DECLARE_MEMBER_INFO(Snapshot); michael@0: SkSnapshot(); michael@0: virtual bool draw(SkAnimateMaker& ); michael@0: private: michael@0: SkString filename; michael@0: SkScalar quality; michael@0: SkBool sequence; michael@0: int /*SkImageEncoder::Type*/ type; michael@0: int fSeqVal; michael@0: }; michael@0: michael@0: #endif // SkSnapShot_DEFINED