aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/svg/model/SkSVGClipPath.h
blob: ec4395308b10918d3452baf88ec5fd7d5480e288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkSVGClipPath_DEFINED
#define SkSVGClipPath_DEFINED

#include "SkSVGHiddenContainer.h"
#include "SkSVGTypes.h"

class SkSVGClipPath final : public SkSVGHiddenContainer {
public:
    virtual ~SkSVGClipPath() = default;
    static sk_sp<SkSVGClipPath> Make() {
        return sk_sp<SkSVGClipPath>(new SkSVGClipPath());
    }

protected:

private:
    SkSVGClipPath();

    typedef SkSVGHiddenContainer INHERITED;
};

#endif // SkSVGClipPath_DEFINED