15bb6825f10d64834ad1d1d967f590aebae285360epoger@google.com
27b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com/*
35bb6825f10d64834ad1d1d967f590aebae285360epoger@google.com * Copyright 2006 The Android Open Source Project
47b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com *
55bb6825f10d64834ad1d1d967f590aebae285360epoger@google.com * Use of this source code is governed by a BSD-style license that can be
65bb6825f10d64834ad1d1d967f590aebae285360epoger@google.com * found in the LICENSE file.
77b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com */
87b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com
95bb6825f10d64834ad1d1d967f590aebae285360epoger@google.com
107b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com#ifndef SkParsePath_DEFINED
117b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com#define SkParsePath_DEFINED
127b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com
137b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com#include "SkPath.h"
147b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com
157b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.comclass SkString;
167b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com
177b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.comclass SkParsePath {
187b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.compublic:
197b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com    static bool FromSVGString(const char str[], SkPath*);
207b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com    static void ToSVGString(const SkPath&, SkString*);
217b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com};
227b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com
237b30c9e85cafacafdc30b4923d23431ac11bfeb0reed@android.com#endif
24