aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/svg/model/SkSVGDefs.h
blob: 3064fe2197b1883cf217e8458170fa61cd631891 (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
/*
 * 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 SkSVGDefs_DEFINED
#define SkSVGDefs_DEFINED

#include "SkSVGHiddenContainer.h"

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

private:
    SkSVGDefs() : INHERITED(SkSVGTag::kDefs) {}

    typedef SkSVGHiddenContainer INHERITED;
};

#endif // SkSVGDefs_DEFINED