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.
18 lines
580 B
18 lines
580 B
#pragma once
|
|
#include "DefsView.g.h"
|
|
#include "GroupView.h"
|
|
|
|
namespace winrt::RNSVG::implementation {
|
|
struct DefsView : DefsViewT<DefsView, RNSVG::implementation::GroupView> {
|
|
DefsView() = default;
|
|
|
|
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 DefsView : DefsViewT<DefsView, implementation::DefsView> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|