LeviLamina
Loading...
Searching...
No Matches
Degree.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace mce { struct Radian; }
8// clang-format on
9
10namespace mce {
11
12struct Degree : public ::type_safe::strong_typedef<::mce::Degree, float>,
13 public ::type_safe::strong_typedef_op::equality_comparison<::mce::Degree>,
14 public ::type_safe::strong_typedef_op::floating_point_arithmetic<::mce::Degree>,
15 public ::type_safe::strong_typedef_op::input_operator<::mce::Degree>,
16 public ::type_safe::strong_typedef_op::relational_comparison<::mce::Degree>,
17 public ::type_safe::strong_typedef_op::output_operator<::mce::Degree> {
18#ifdef LL_PLAT_S
19public:
20 // prevent constructor by default
21 Degree();
22
23#else // LL_PLAT_C
24#endif
25public:
26 // member functions
27 // NOLINTBEGIN
28#ifdef LL_PLAT_S
29 MCNAPI explicit Degree(::mce::Radian rad);
30#endif
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36#ifdef LL_PLAT_S
37 MCNAPI void* $ctor(::mce::Radian rad);
38#endif
39 // NOLINTEND
40};
41
42} // namespace mce
Definition Degree.h:17
Definition Radian.h:12