blob: b8229c055359ee0f36650feebee5f52af8cdcae0 (
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
|
/*
* 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 SkSVGG_DEFINED
#define SkSVGG_DEFINED
#include "SkSVGContainer.h"
class SkSVGG : public SkSVGContainer {
public:
virtual ~SkSVGG() = default;
static sk_sp<SkSVGG> Make() { return sk_sp<SkSVGG>(new SkSVGG()); }
private:
SkSVGG() : INHERITED(SkSVGTag::kG) { }
typedef SkSVGContainer INHERITED;
};
#endif // SkSVGG_DEFINED
|