You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
657 B
20 lines
657 B
#pragma once
|
|
#include "ClipPathView.g.h"
|
|
#include "GroupView.h"
|
|
|
|
namespace winrt::RNSVG::implementation {
|
|
struct ClipPathView : ClipPathViewT<ClipPathView, RNSVG::implementation::GroupView> {
|
|
public:
|
|
ClipPathView() = default;
|
|
|
|
// RenderableView
|
|
void Render(
|
|
Microsoft::Graphics::Canvas::UI::Xaml::CanvasControl const & /*canvas*/,
|
|
Microsoft::Graphics::Canvas::CanvasDrawingSession const & /*session*/){};
|
|
};
|
|
} // namespace winrt::RNSVG::implementation
|
|
|
|
namespace winrt::RNSVG::factory_implementation {
|
|
struct ClipPathView : ClipPathViewT<ClipPathView, implementation::ClipPathView> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|