00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036 #ifndef __io_FileOutputStream__
00037 #define __io_FileOutputStream__
00038
00039 #include <stdnet/config.h>
00040 #include <stdnet/system/Object>
00041 #include <stdnet/io/OutputStream>
00042
00043 namespace stdbase {
00044 namespace io {
00045
00046 class FileOutputStream :
00047 public system::Object,
00048 public OutputStream
00049 {
00050 protected:
00051 FileOutputStream( ::stdbase::system::StringRef name );
00052 FileOutputStream( const ::stdbase::system::platform::FileDescriptor & fd);
00053
00054 virtual ~FileOutputStream();
00055
00056 public:
00057 static system::reference< FileOutputStream >
00058 create( stdbase::system::StringRef name );
00059
00060 static system::reference< FileOutputStream >
00061 create( const system::platform::FileDescriptor & _fd);
00062
00067 virtual void write( int b) throw (IOException);
00068
00076 virtual void write( byte b[], int len) throw (IOException);
00077
00082 virtual void flush() throw (IOException);
00083
00088 virtual void close() throw (IOException);
00089
00090 private:
00091 ::stdbase::system::platform::FileDescriptor * file;
00092 };
00093
00094 typedef ::stdbase::system::reference<FileOutputStream> FileOutputStreamRef;
00095
00096 }
00097 }
00098
00099 #endif // __io_FileOutputStream__
00100