#pragma once #include "ClipPathView.g.h" #include "GroupView.h" namespace winrt::RNSVG::implementation { struct ClipPathView : ClipPathViewT { public: ClipPathView() = default; // IRenderable void Draw(RNSVG::D2DDeviceContext const & /*deviceContext*/, Windows::Foundation::Size const & /*size*/){}; }; } // namespace winrt::RNSVG::implementation namespace winrt::RNSVG::factory_implementation { struct ClipPathView : ClipPathViewT {}; } // namespace winrt::RNSVG::factory_implementation