LeviLamina
Loading...
Searching...
No Matches
FileStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core {
6
7class FileStats {
8public:
9 // member variables
10 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 FileStats& operator=(FileStats const&);
24 FileStats(FileStats const&);
25 FileStats();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCNAPI uint64 getAllocatedUsedFileSystemSize() const;
31
32 MCNAPI void setFileSystemUsedSize(int64 newSize, int64 newAllocatedSize);
33 // NOLINTEND
34};
35
36} // namespace Core
MCAPI uint64 getAllocatedUsedFileSystemSize() const
MCAPI void setFileSystemUsedSize(int64 newSize, int64 newAllocatedSize)
Definition Alias.h:14