16 lines
516 B
C++
16 lines
516 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 Draw(RNSVG::D2DDeviceContext const &deviceContext, Windows::Foundation::Size const &size);
|
|
};
|
|
} // namespace winrt::RNSVG::implementation
|
|
|
|
namespace winrt::RNSVG::factory_implementation {
|
|
struct DefsView : DefsViewT<DefsView, implementation::DefsView> {};
|
|
} // namespace winrt::RNSVG::factory_implementation
|