/* * 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 "modules/svg/include/SkSVGHiddenContainer.h" #include "modules/svg/include/SkSVGTypes.h" class SkSVGClipPath final : public SkSVGHiddenContainer { public: static sk_sp Make() { return sk_sp(new SkSVGClipPath()); } private: SkSVGClipPath(); using INHERITED = SkSVGHiddenContainer; }; #endif // SkSVGClipPath_DEFINED