michael@0: michael@0: /* michael@0: * Copyright 2006 The Android Open Source Project michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: michael@0: #ifndef SkParsePath_DEFINED michael@0: #define SkParsePath_DEFINED michael@0: michael@0: #include "SkPath.h" michael@0: michael@0: class SkString; michael@0: michael@0: class SkParsePath { michael@0: public: michael@0: static bool FromSVGString(const char str[], SkPath*); michael@0: static void ToSVGString(const SkPath&, SkString*); michael@0: }; michael@0: michael@0: #endif