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