blob: 9a79f945d9b20d793f382ab73744356ecf11fcc1 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.combbff1d52009-06-05 16:21:03 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.combbff1d52009-06-05 16:21:03 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.combbff1d52009-06-05 16:21:03 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.combbff1d52009-06-05 16:21:03 +000010#ifndef SkParsePath_DEFINED
11#define SkParsePath_DEFINED
12
Mike Kleinc0bd9f92019-04-23 12:05:21 -050013#include "include/core/SkPath.h"
reed@android.combbff1d52009-06-05 16:21:03 +000014
15class SkString;
16
Brian Osmanfb32ddf2019-06-18 10:14:20 -040017class SK_API SkParsePath {
reed@android.combbff1d52009-06-05 16:21:03 +000018public:
19 static bool FromSVGString(const char str[], SkPath*);
20 static void ToSVGString(const SkPath&, SkString*);
21};
22
23#endif