/* * 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 SkDataTable_DEFINED #define SkDataTable_DEFINED #include "include/core/SkRefCnt.h" #include "include/private/base/SkAPI.h" #include "include/private/base/SkAssert.h" #include <cstdint> #include <cstring> /** * Like SkData, SkDataTable holds an immutable data buffer. The data buffer is * organized into a table of entries, each with a length, so the entries are * not required to all be the same size. */ class SK_API SkDataTable : public SkRefCnt { … }; #endif