blob: c52b3c0bcd22e4b7a690b47e8247ca9ba65447b7 [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
13#include "SkPath.h"
14
15class SkString;
16
17class SkParsePath {
18public:
19 static bool FromSVGString(const char str[], SkPath*);
20 static void ToSVGString(const SkPath&, SkString*);
21};
22
23#endif