barrier/synergy/COutputPacketStream.h
crs 6aba3a6f57 removed exception specifications. thread exceptions weren't
being listed and they'd have to be added to every one.  just
doesn't seem worth the trouble.
2001-10-14 16:58:01 +00:00

22 lines
422 B
C++

#ifndef COUTPUTPACKETSTREAM_H
#define COUTPUTPACKETSTREAM_H
#include "COutputStreamFilter.h"
class COutputPacketStream : public COutputStreamFilter {
public:
COutputPacketStream(IOutputStream*, bool adoptStream = true);
~COutputPacketStream();
// manipulators
// accessors
// IOutputStream overrides
virtual void close();
virtual UInt32 write(const void*, UInt32 count);
virtual void flush();
};
#endif