00001 00006 #ifndef MMFILE_H 00007 #define MMFILE_H 00008 #include"errorclass.h" 00009 #include"mseg.h" 00010 00011 namespace RAMS 00012 { 00016 class MMFile: public Mseg 00017 { 00018 protected: 00019 int fd; 00020 public: 00024 MMFile() { fd=-1; } 00028 MMFile(const char *filename) throw(Systemerror) { init(filename); } 00029 00034 void init(const char *filename) throw(Systemerror); 00035 00041 ~MMFile(); 00042 }; 00043 } 00044 #endif