| 5 | namespace winrt::FastCopy::implementation |
| 6 | { |
| 7 | struct DateTimeToStringConverter : DateTimeToStringConverterT<DateTimeToStringConverter> |
| 8 | { |
| 9 | DateTimeToStringConverter() = default; |
| 10 | |
| 11 | winrt::Windows::Foundation::IInspectable Convert( |
| 12 | winrt::Windows::Foundation::IInspectable const& value, |
| 13 | winrt::Windows::UI::Xaml::Interop::TypeName const& targetType, |
| 14 | winrt::Windows::Foundation::IInspectable const& parameter, |
| 15 | winrt::hstring const& language |
| 16 | ); |
| 17 | |
| 18 | winrt::Windows::Foundation::IInspectable ConvertBack( |
| 19 | winrt::Windows::Foundation::IInspectable const& value, |
| 20 | winrt::Windows::UI::Xaml::Interop::TypeName const& targetType, |
| 21 | winrt::Windows::Foundation::IInspectable const& parameter, |
| 22 | winrt::hstring const& language |
| 23 | ); |
| 24 | }; |
| 25 | } |
| 26 | |
| 27 | namespace winrt::FastCopy::factory_implementation |
nothing calls this directly
no outgoing calls
no test coverage detected