-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRotationOrder.h
49 lines (40 loc) · 1.4 KB
/
RotationOrder.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef __KL2EDK_AUTOGEN_RotationOrder__
#define __KL2EDK_AUTOGEN_RotationOrder__
////////////////////////////////////////////////////////////////
// THIS FILE IS AUTOMATICALLY GENERATED -- DO NOT MODIFY!!
////////////////////////////////////////////////////////////////
// Generated by kl2exe version 1.11.4
////////////////////////////////////////////////////////////////
#include <Fabric/EDK/EDK.h>
#if FABRIC_EDK_VERSION_MAJ != 1 || FABRIC_EDK_VERSION_MIN != 11
# error "This file needs to be rebuilt for the current EDK version!"
#endif
#include "global.h"
namespace Fabric { namespace EDK { namespace KL {
// KL struct 'RotationOrder'
// Defined at RotationOrder.kl:17:1
struct RotationOrder
{
typedef RotationOrder &Result;
typedef RotationOrder const &INParam;
typedef RotationOrder &IOParam;
SInt32 order;
};
inline void Traits<RotationOrder>::ConstructEmpty( RotationOrder &val )
{
Traits< SInt32 >::ConstructEmpty( val.order );
}
inline void Traits<RotationOrder>::ConstructCopy( RotationOrder &lhs, RotationOrder const &rhs )
{
Traits< SInt32 >::ConstructCopy( lhs.order, rhs.order );
}
inline void Traits<RotationOrder>::AssignCopy( RotationOrder &lhs, RotationOrder const &rhs )
{
Traits< SInt32 >::AssignCopy( lhs.order, rhs.order );
}
inline void Traits<RotationOrder>::Destruct( RotationOrder &val )
{
Traits< SInt32 >::Destruct( val.order );
}
}}}
#endif // __KL2EDK_AUTOGEN_RotationOrder__