LeviLamina
Loading...
Searching...
No Matches
JSVarRef.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct JSVarRef {
6public:
7 // member variables
8 // NOLINTBEGIN
9 union {
11 struct {
15 };
16 };
18 union {
21 };
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 JSVarRef& operator=(JSVarRef const&);
28 JSVarRef(JSVarRef const&);
29 JSVarRef();
30};
Definition Alias.h:14