00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00028 #ifndef _RTXCPPSTREAMIF_H_
00029 #define _RTXCPPSTREAMIF_H_
00030
00031 #include "rtxsrc/rtxCommon.h"
00032
00036 class EXTERNRTX OSStreamIF {
00037 public:
00041 virtual ~OSStreamIF ();
00042
00051 virtual void close () = 0;
00052
00059 virtual void flush () = 0;
00060
00066 virtual OSBOOL isOpened () = 0;
00067
00068 } ;
00069
00070 #endif