LeviLamina
Loading...
Searching...
No Matches
InputEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct InputEntry {
6public:
7 // member variables
8 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 InputEntry& operator=(InputEntry const&);
17 InputEntry(InputEntry const&);
18 InputEntry();
19};
Definition InputEntry.h:5
Definition Alias.h:14