blob: 1f4fa073914d1c95885d0606c211b68048e12da6 [file] [log] [blame]
/*
* 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 "experimental/svg/model/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