2001-10-06 14:13:28 +00:00
|
|
|
#ifndef COUTPUTPACKETSTREAM_H
|
|
|
|
#define COUTPUTPACKETSTREAM_H
|
|
|
|
|
|
|
|
#include "COutputStreamFilter.h"
|
|
|
|
|
|
|
|
class COutputPacketStream : public COutputStreamFilter {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2001-10-06 14:13:28 +00:00
|
|
|
COutputPacketStream(IOutputStream*, bool adoptStream = true);
|
|
|
|
~COutputPacketStream();
|
|
|
|
|
|
|
|
// manipulators
|
|
|
|
|
|
|
|
// accessors
|
|
|
|
|
|
|
|
// IOutputStream overrides
|
2001-10-14 16:58:01 +00:00
|
|
|
virtual void close();
|
|
|
|
virtual UInt32 write(const void*, UInt32 count);
|
|
|
|
virtual void flush();
|
2001-10-06 14:13:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|