MCPcopy Create free account
hub / github.com/XorTroll/Goldleaf / EnsureExplorer

Function EnsureExplorer

Goldleaf/source/fs/fs_FileSystem.cpp:42–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40
41 template<typename T, typename ...Args>
42 inline T *EnsureExplorer(T *&exp, Args &&...args) {
43 if(exp == nullptr) {
44 exp = new T(args...);
45 }
46 return exp;
47 }
48
49 template<typename T>
50 inline void DeleteExplorer(T *&exp) {

Callers 8

GetSdCardExplorerFunction · 0.85
GetRomFsExplorerFunction · 0.85
GetPRODINFOFExplorerFunction · 0.85
GetNANDSafeExplorerFunction · 0.85
GetNANDUserExplorerFunction · 0.85
GetNANDSystemExplorerFunction · 0.85
GetRemotePCExplorerFunction · 0.85
GetDriveExplorerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected