/* * 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 SkBmpCodec_DEFINED #define SkBmpCodec_DEFINED #include "include/codec/SkCodec.h" #include "include/codec/SkEncodedImageFormat.h" #include "include/core/SkColorType.h" #include "include/core/SkTypes.h" #include "modules/skcms/skcms.h" #include <cstddef> #include <cstdint> #include <memory> class SkStream; struct SkEncodedInfo; struct SkImageInfo; /* * This class enables code sharing between its bmp codec subclasses. The * subclasses actually do the work. */ class SkBmpCodec : public SkCodec { … }; #endif