00001
00002
00003
00004
00006
00007
00008
00009
00010
00011
00012
00013
00014
00016
00017 #ifndef __IFile_h_INCLUDED__
00018 #define __IFile_h_INCLUDED__
00019
00020 #include <string>
00021 #include "IObject.h"
00022 #include "IRoot.h"
00023
00024 namespace mortic
00025 {
00027
00036 class IFile : public IObject
00037 {
00038 public:
00040 IFile(IRoot* root) : IObject(root, "File")
00041 { }
00042
00044
00050 virtual void close() = 0;
00051
00053
00059 virtual void flush() = 0;
00060
00062
00067 virtual std::string read(unsigned int size = 0) = 0;
00068
00070
00074 virtual void write(std::string s) = 0;
00075
00077
00080 virtual unsigned int tell() = 0;
00081
00083
00086 virtual void seek(unsigned int s) = 0;
00087
00089
00093 virtual bool eof() = 0;
00094
00096
00100 virtual bool isOpen() = 0;
00101
00103
00111 virtual std::string getPath() = 0;
00112 };
00113
00114 }
00115 ;
00116 #endif // __IFile_h_INCLUDED__