LeviLamina
Loading...
Searching...
No Matches
JSContext.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct JSContext {
6public:
7 // member variables
8 // NOLINTBEGIN
37 // NOLINTEND
38
39public:
40 // prevent constructor by default
41 JSContext& operator=(JSContext const&);
42 JSContext(JSContext const&);
43 JSContext();
44};
Definition Alias.h:14