TDME2 1.9.121
FileSystem.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
6
10
11FileSystemInterface* FileSystem::fileSystem = nullptr;
12FileSystemInterface* FileSystem::standardFileSystem = nullptr;
13
14FileSystemInterface* FileSystem::getInstance()
15{
16 if (fileSystem == nullptr) {
19 }
20 return fileSystem;
21}
22
24{
25 if (standardFileSystem == nullptr) {
27 }
28 return standardFileSystem;
29}
30
32{
34}
35
37{
39 FileSystem::fileSystem = nullptr;
40}
File system singleton class.
Definition: FileSystem.h:14
static STATIC_DLL_IMPEXT FileSystemInterface * standardFileSystem
Definition: FileSystem.h:16
static STATIC_DLL_IMPEXT FileSystemInterface * fileSystem
Definition: FileSystem.h:17
static void setupFileSystem(FileSystemInterface *fileSystem)
Set up file system.
Definition: FileSystem.cpp:31
static FileSystemInterface * getStandardFileSystem()
Retrieve standard file system.
Definition: FileSystem.cpp:23
static void unsetFileSystem()
Unset file system, which means disposing the old one and unset internal file system to use.
Definition: FileSystem.cpp:36
Standard file system implementation.