LeviLamina
Loading...
Searching...
No Matches
MemoryFileSystemEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class Result; }
8// clang-format on
9
10namespace Core {
11
12class MemoryFileSystemEntry {
13public:
14 // member variables
15 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 MemoryFileSystemEntry& operator=(MemoryFileSystemEntry const&);
26 MemoryFileSystemEntry(MemoryFileSystemEntry const&);
27 MemoryFileSystemEntry();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~MemoryFileSystemEntry() = default;
33
34 virtual ::Core::Result canRemove() = 0;
35
36 virtual uint64 getSize() const = 0;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace Core
Definition Result.h:11
Definition Alias.h:14