mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-18 08:22:06 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
23 lines
552 B
C++
23 lines
552 B
C++
#ifndef COUTPUTPACKETSTREAM_H
|
|
#define COUTPUTPACKETSTREAM_H
|
|
|
|
#include "COutputStreamFilter.h"
|
|
|
|
//! Packetizing output stream filter
|
|
/*!
|
|
Filters an output stream to create packets that include message
|
|
boundaries. Each write() is considered a single packet.
|
|
*/
|
|
class COutputPacketStream : public COutputStreamFilter {
|
|
public:
|
|
COutputPacketStream(IOutputStream*, bool adoptStream = true);
|
|
~COutputPacketStream();
|
|
|
|
// IOutputStream overrides
|
|
virtual void close();
|
|
virtual UInt32 write(const void*, UInt32 count);
|
|
virtual void flush();
|
|
};
|
|
|
|
#endif
|