00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __PFSTREAM_H__
00020 #define __PFSTREAM_H__
00021
00022 #include "pfstreamBuf.h"
00023
00024 class EXPCL_DTOOL IPipeStream : public istream {
00025 PUBLISHED:
00026 INLINE IPipeStream(const std::string);
00027
00028 INLINE void flush(void);
00029 private:
00030 PipeStreamBuf _psb;
00031
00032 INLINE IPipeStream(void);
00033 };
00034
00035 class EXPCL_DTOOL OPipeStream : public ostream {
00036 PUBLISHED:
00037 INLINE OPipeStream(const std::string);
00038
00039 INLINE void flush(void);
00040 private:
00041 PipeStreamBuf _psb;
00042
00043 INLINE OPipeStream(void);
00044 };
00045
00046 #include "pfstream.I"
00047
00048 #endif
00049
00050