blob: 01f5bfdda2b38f8b48f675e27e11288ceed64072 [file] [log] [blame]
Kevin Lubick9b028372023-10-05 15:04:54 -04001/*
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
15class SkMatrix;
16class SkPaint;
17class SkPath;
18
19namespace ToolUtils {
20
21void ExtractPathsFromSVG(const char filepath[], std::function<PathSniffCallback>);
22
23} // namespace ToolUtils
24
25#endif