| Index: experimental/SkiaExamples/Presentation.h
|
| diff --git a/experimental/SkiaExamples/Presentation.h b/experimental/SkiaExamples/Presentation.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3a201721e0cf117531f7e0002d5ecd55257e06a8
|
| --- /dev/null
|
| +++ b/experimental/SkiaExamples/Presentation.h
|
| @@ -0,0 +1,27 @@
|
| +/*
|
| + * Copyright 2013 Google Inc.
|
| + *
|
| + *
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + *
|
| + */
|
| +
|
| +#ifndef SkPresentation_DEFINED
|
| +#define SkPresentation_DEFINED
|
| +
|
| +#include "BaseExample.h"
|
| +
|
| +class SkPresentation : public BaseExample {
|
| + public:
|
| + SkPresentation(void* hWnd, int argc, char** argv);
|
| + protected:
|
| + virtual void draw(SkCanvas* canvas) SK_OVERRIDE;
|
| + virtual bool onEvent(const SkEvent& evt) SK_OVERRIDE;
|
| + private:
|
| + uint32_t slideIndex;
|
| + typedef BaseExample INHERITED;
|
| +};
|
| +
|
| +#endif // SkPresentation_DEFINED
|
| +
|
|
|