LeviLamina
Loading...
Searching...
No Matches
JSToken.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct JSToken {
6public:
7 // member variables
8 // NOLINTBEGIN
12#ifdef LL_PLAT_S
14#else // LL_PLAT_C
16#endif
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 JSToken& operator=(JSToken const&);
22 JSToken(JSToken const&);
23 JSToken();
24};
Definition Alias.h:14