mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-06 07:06:11 +00:00
Adds Windows support. Co-authored-by: Adam Gleitman <adam.gleitman@gmail.com> Co-authored-by: REDMOND\agnel <agnel@microsoft.com>
18 lines
580 B
C++
18 lines
580 B
C++
#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
|