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