Platform_NULL_FileSystem.cpp
Go to the documentation of this file.00001 //*** Platform_NULL_FileSystem.cpp *** 00002 00003 #include "Platform_NULL_FileSystem.h" 00004 #include "Platform_NULL_FileSystem_Directory.h" 00005 #include "Platform_NULL_FileSystem_File.h" 00006 00007 00008 //*** Constructor *** 00009 00010 Platform_NULL_FileSystem::Platform_NULL_FileSystem() 00011 { 00012 } 00013 00014 00015 //*** SetLogging *** 00016 00017 void Platform_NULL_FileSystem::SetLogging(bool enabled) 00018 { 00019 } 00020 00021 00022 //*** GetDirectory *** 00023 00024 Platform_FileSystem_Directory* Platform_NULL_FileSystem::CreateDirectoryObject(const char* path) 00025 { 00026 return new Platform_NULL_FileSystem_Directory(); 00027 } 00028 00029 00030 //*** GetFile *** 00031 00032 Platform_FileSystem_File* Platform_NULL_FileSystem::CreateFileObject(const char* path) 00033 { 00034 return new Platform_NULL_FileSystem_File(); 00035 } 00036 00037 00038 //*** RescanDevices *** 00039 00040 void Platform_NULL_FileSystem::RescanDevices() 00041 { 00042 } 00043 00044 00045 //*** GetDeviceCount *** 00046 00047 int Platform_NULL_FileSystem::GetDeviceCount() 00048 { 00049 return 0; 00050 } 00051 00052 00053 //*** GetDevice *** 00054 00055 const Platform_FileSystem_Device* Platform_NULL_FileSystem::GetDevice(int index) 00056 { 00057 return 0; 00058 }
Reproduction/republishing of any material on this site without permission is strictly prohibited.
