/* * Copyright 2019 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkPathMakers_DEFINED #define SkPathMakers_DEFINED #include "include/core/SkPathTypes.h" #include "include/core/SkPoint.h" #include "include/core/SkRRect.h" template <unsigned N> class SkPath_PointIterator { … }; class SkPath_RectPointIterator : public SkPath_PointIterator<4> { … }; class SkPath_OvalPointIterator : public SkPath_PointIterator<4> { … }; class SkPath_RRectPointIterator : public SkPath_PointIterator<8> { … }; #endif