2016-07-27 01:46:34 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "experimental/svg/model/SkSVGContainer.h"
|
2016-07-27 01:46:34 +00:00
|
|
|
|
|
|
|
class SkSVGG : public SkSVGContainer {
|
|
|
|
public:
|
|
|
|
virtual ~SkSVGG() = default;
|
|
|
|
|
|
|
|
static sk_sp<SkSVGG> Make() { return sk_sp<SkSVGG>(new SkSVGG()); }
|
|
|
|
|
|
|
|
private:
|
2016-07-29 15:52:03 +00:00
|
|
|
SkSVGG() : INHERITED(SkSVGTag::kG) { }
|
2016-07-27 01:46:34 +00:00
|
|
|
|
|
|
|
typedef SkSVGContainer INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SkSVGG_DEFINED
|