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::relational_comparison<::mce::Degree>,
15 public ::type_safe::strong_typedef_op::floating_point_arithmetic<::mce::Degree>,
16 public ::type_safe::strong_typedef_op::input_operator<::mce::Degree>,
17 public ::type_safe::strong_typedef_op::output_operator<::mce::Degree> {
18public:
19 // prevent constructor by default
20 Degree();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCNAPI explicit Degree(::mce::Radian rad);
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCNAPI void* $ctor(::mce::Radian rad);
32 // NOLINTEND
33};
34
35} // namespace mce
Definition Degree.h:17
MCAPI void * $ctor(::mce::Radian rad)
MCAPI Degree(::mce::Radian rad)
Definition Radian.h:12