LeviLamina
Loading...
Searching...
No Matches
MemoryFileSystemEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core {
6
7class MemoryFileSystemEntry {
8public:
9 // member variables
10 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 MemoryFileSystemEntry& operator=(MemoryFileSystemEntry const&);
23 MemoryFileSystemEntry(MemoryFileSystemEntry const&);
24 MemoryFileSystemEntry();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ~MemoryFileSystemEntry() = default;
30
31 virtual bool canRemove() const = 0;
32
33 virtual uint64 getSize() const = 0;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41};
42
43} // namespace Core
Definition Alias.h:14