1 /* 2 * Copyright 2023 Google LLC 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 #ifndef PathExtractor_DEFINED 9 #define PathExtractor_DEFINED 10 11 #include "tools/ToolUtils.h" 12 13 #include <functional> 14 15 class SkMatrix; 16 class SkPaint; 17 class SkPath; 18 19 namespace ToolUtils { 20 21 void ExtractPathsFromSVG(const char filepath[], std::function<PathSniffCallback>); 22 23 } // namespace ToolUtils 24 25 #endif 26