LeviLamina
Loading...
Searching...
No Matches
MemoryFileSystemData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core {
6
8public:
9 // MemoryFileSystemData inner types declare
10 // clang-format off
11 struct WriteOp;
12 // clang-format on
13
14 // MemoryFileSystemData inner types define
15 struct WriteOp {
16 public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 WriteOp& operator=(WriteOp const&);
26 WriteOp(WriteOp const&);
27 WriteOp();
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
37 // NOLINTEND
38
39public:
40 // prevent constructor by default
44};
45
46} // namespace Core
Definition MemoryFileSystemData.h:15
Definition MemoryFileSystemData.h:7
Definition Alias.h:14