00001 #ifndef _WINNT_FILE_H_ 00002 #define _WINNT_FILE_H_ 00003 00004 #include "OSDependent/Posix/PosixFile.h" 00005 00006 /* 00007 * WinNT implementation for file access. 00008 */ 00009 class ClassExport File : public PosixFile { 00010 public: 00011 File(const char *name, const char *mode) : 00012 PosixFile(name, mode) { 00013 } 00014 File() : PosixFile() {} 00015 00016 /** 00017 * Static methods. 00018 */ 00019 static int chmod(const char *name, int mode); 00020 static bool doesExist(const char *name); 00021 00022 }; 00023 00024 #endif // _WINNT_FILE_H_
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001