1 /* 2 * Copyright 2016 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #ifndef SkSVGClipPath_DEFINED 9 #define SkSVGClipPath_DEFINED 10 11 #include "SkSVGHiddenContainer.h" 12 #include "SkSVGTypes.h" 13 14 class SkSVGClipPath final : public SkSVGHiddenContainer { 15 public: 16 virtual ~SkSVGClipPath() = default; Make()17 static sk_sp<SkSVGClipPath> Make() { 18 return sk_sp<SkSVGClipPath>(new SkSVGClipPath()); 19 } 20 21 protected: 22 23 private: 24 SkSVGClipPath(); 25 26 typedef SkSVGHiddenContainer INHERITED; 27 }; 28 29 #endif // SkSVGClipPath_DEFINED 30