1 /* 2 * Copyright 2018 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 // We want SkSpan to be a public API, but it is also fundamental to many of our internal types. 9 // Thus, we have a public file that clients can include. This file defers to the private copy 10 // so we do not have a dependency cycle from our "base" files to our "core" files. 11 12 #include "include/private/base/SkSpan_impl.h" // IWYU pragma: export 13 14