| 5 | namespace winrt::FastCopy::implementation |
| 6 | { |
| 7 | struct DataInjector : DataInjectorT<DataInjector> |
| 8 | { |
| 9 | DataInjector() = default; |
| 10 | |
| 11 | static Microsoft::UI::Xaml::DependencyProperty DataProperty(); |
| 12 | |
| 13 | static winrt::Windows::Foundation::IInspectable GetData(Microsoft::UI::Xaml::DependencyObject target); |
| 14 | static void SetData(Microsoft::UI::Xaml::DependencyObject target, winrt::Windows::Foundation::IInspectable data); |
| 15 | |
| 16 | private: |
| 17 | static Microsoft::UI::Xaml::DependencyProperty s_dataProperty; |
| 18 | }; |
| 19 | } |
| 20 | |
| 21 | namespace winrt::FastCopy::factory_implementation |
nothing calls this directly
no outgoing calls
no test coverage detected