Platform_NULL_FileSystem_File.cpp
Go to the documentation of this file.00001 //*** Platform_NULL_FileSystem_File.cpp *** 00002 00003 #include "Platform_NULL_FileSystem_File.h" 00004 00005 //*** Constructor *** 00006 00007 Platform_NULL_FileSystem_File::Platform_NULL_FileSystem_File() 00008 { 00009 } 00010 00011 00012 //*** GetPath *** 00013 00014 const char* Platform_NULL_FileSystem_File::GetPath() 00015 { 00016 return ""; 00017 } 00018 00019 00020 //*** Exists *** 00021 00022 bool Platform_NULL_FileSystem_File::Exists() 00023 { 00024 return false; 00025 } 00026 00027 00028 //*** Create *** 00029 00030 bool Platform_NULL_FileSystem_File::Create() 00031 { 00032 return false; 00033 } 00034 00035 00036 //*** Open *** 00037 00038 bool Platform_NULL_FileSystem_File::Open() 00039 { 00040 return false; 00041 } 00042 00043 00044 //*** Close *** 00045 00046 bool Platform_NULL_FileSystem_File::Close() 00047 { 00048 return false; 00049 } 00050 00051 00052 //*** Delete *** 00053 00054 void Platform_NULL_FileSystem_File::Delete() 00055 { 00056 } 00057 00058 00059 //*** GetPosition *** 00060 00061 int Platform_NULL_FileSystem_File::GetPosition() 00062 { 00063 return 0; 00064 } 00065 00066 00067 //*** SetPosition *** 00068 00069 int Platform_NULL_FileSystem_File::SetPosition(int position,SetPositionOrigin origin) 00070 { 00071 return 0; 00072 } 00073 00074 00075 //** Write methods */ 00076 00077 int Platform_NULL_FileSystem_File::Write(const char* value, int count) 00078 { 00079 return 0; 00080 } 00081 00082 int Platform_NULL_FileSystem_File::Write(const short* value, int count) 00083 { 00084 return 0; 00085 } 00086 00087 int Platform_NULL_FileSystem_File::Write(const int* value, int count) 00088 { 00089 return 0; 00090 } 00091 00092 int Platform_NULL_FileSystem_File::Write(const long* value, int count) 00093 { 00094 return 0; 00095 } 00096 00097 int Platform_NULL_FileSystem_File::Write(const unsigned char* value, int count) 00098 { 00099 return 0; 00100 } 00101 00102 int Platform_NULL_FileSystem_File::Write(const unsigned short* value, int count) 00103 { 00104 return 0; 00105 } 00106 00107 int Platform_NULL_FileSystem_File::Write(const unsigned int* value, int count) 00108 { 00109 return 0; 00110 } 00111 00112 int Platform_NULL_FileSystem_File::Write(const unsigned long* value, int count) 00113 { 00114 return 0; 00115 } 00116 00117 int Platform_NULL_FileSystem_File::Write(const float* value, int count) 00118 { 00119 return 0; 00120 } 00121 00122 int Platform_NULL_FileSystem_File::Write(const double* value, int count) 00123 { 00124 return 0; 00125 } 00126 00127 int Platform_NULL_FileSystem_File::Write(const bool* value, int count) 00128 { 00129 return 0; 00130 } 00131 00132 00133 //** Read methods */ 00134 00135 int Platform_NULL_FileSystem_File::Read(char* value, int count) 00136 { 00137 return 0; 00138 } 00139 00140 int Platform_NULL_FileSystem_File::Read(short* value, int count) 00141 { 00142 return 0; 00143 } 00144 00145 int Platform_NULL_FileSystem_File::Read(int* value, int count) 00146 { 00147 return 0; 00148 } 00149 00150 int Platform_NULL_FileSystem_File::Read(long* value, int count) 00151 { 00152 return 0; 00153 } 00154 00155 int Platform_NULL_FileSystem_File::Read(unsigned char* value, int count) 00156 { 00157 return 0; 00158 } 00159 00160 int Platform_NULL_FileSystem_File::Read(unsigned short* value, int count) 00161 { 00162 return 0; 00163 } 00164 00165 int Platform_NULL_FileSystem_File::Read(unsigned int* value, int count) 00166 { 00167 return 0; 00168 } 00169 00170 int Platform_NULL_FileSystem_File::Read(unsigned long* value, int count) 00171 { 00172 return 0; 00173 } 00174 00175 int Platform_NULL_FileSystem_File::Read(float* value, int count) 00176 { 00177 return 0; 00178 } 00179 00180 int Platform_NULL_FileSystem_File::Read(double* value, int count) 00181 { 00182 return 0; 00183 } 00184 00185 int Platform_NULL_FileSystem_File::Read(bool* value, int count) 00186 { 00187 return 0; 00188 } 00189
Reproduction/republishing of any material on this site without permission is strictly prohibited.
