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