/* * Copyright 2015 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkPngCodec_DEFINED #define SkPngCodec_DEFINED #include <cstddef> #include <cstdint> #include <memory> #include <optional> #include "include/codec/SkCodec.h" #include "include/core/SkRefCnt.h" #include "src/codec/SkPngCodecBase.h" class SkPngChunkReader; class SkStream; struct SkEncodedInfo; struct SkImageInfo; template <typename T> class SkSpan; class SkPngCodec : public SkPngCodecBase { … }; #endif // SkPngCodec_DEFINED