blob: ec4395308b10918d3452baf88ec5fd7d5480e288 [file] [log] [blame]
Florin Malitace8840e2016-12-08 09:26:47 -05001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkSVGClipPath_DEFINED
9#define SkSVGClipPath_DEFINED
10
11#include "SkSVGHiddenContainer.h"
12#include "SkSVGTypes.h"
13
14class SkSVGClipPath final : public SkSVGHiddenContainer {
15public:
16 virtual ~SkSVGClipPath() = default;
17 static sk_sp<SkSVGClipPath> Make() {
18 return sk_sp<SkSVGClipPath>(new SkSVGClipPath());
19 }
20
21protected:
22
23private:
24 SkSVGClipPath();
25
26 typedef SkSVGHiddenContainer INHERITED;
27};
28
29#endif // SkSVGClipPath_DEFINED