fb32ddf622
This reverts commit 37a59ef1af
.
Change-Id: If38da265ebbb196e72c7d035ba51028438787e2e
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/221541
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
24 lines
434 B
C++
24 lines
434 B
C++
|
|
/*
|
|
* Copyright 2006 The Android Open Source Project
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
|
|
#ifndef SkParsePath_DEFINED
|
|
#define SkParsePath_DEFINED
|
|
|
|
#include "include/core/SkPath.h"
|
|
|
|
class SkString;
|
|
|
|
class SK_API SkParsePath {
|
|
public:
|
|
static bool FromSVGString(const char str[], SkPath*);
|
|
static void ToSVGString(const SkPath&, SkString*);
|
|
};
|
|
|
|
#endif
|