LeviLamina
Loading...
Searching...
No Matches
InMemoryFileStorage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class InMemoryFile;
8namespace Core { class Path; }
9// clang-format on
10
12public:
13 // member variables
14 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCAPI ::std::shared_ptr<::InMemoryFile> createFile(::Core::Path const& fileName);
31
32 MCAPI bool deleteFile(::Core::Path const& fileName);
33
34 MCAPI bool findFile(::Core::Path const& fileName, ::std::shared_ptr<::InMemoryFile>& outFile);
35
36 MCAPI void flushToDisk();
37
38 MCAPI void populateFileList(::std::vector<::std::string>& fileList);
39 // NOLINTEND
40};
Definition Path.h:15
Definition InMemoryFileStorage.h:11
Definition InMemoryFile.h:5
Definition Path.h:16
Definition Alias.h:14