// C++/WinRT v2.0.250303.1 // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #pragma once #ifndef WINRT_Windows_Foundation_Numerics_0_H #define WINRT_Windows_Foundation_Numerics_0_H WINRT_EXPORT namespace winrt::Windows::Foundation::Numerics { struct Rational; } namespace winrt::impl { template <> struct category{ using type = struct_category; }; template <> inline constexpr auto& name_v = L"Windows.Foundation.Numerics.Rational"; struct struct_Windows_Foundation_Numerics_Rational { uint32_t Numerator; uint32_t Denominator; }; template <> struct abi { using type = struct_Windows_Foundation_Numerics_Rational; }; } #endif