Files
mirall/stream_buffer.h

14 lines
180 B
C
Raw Normal View History

#pragma once
#include "buffer.h"
class StreamBuffer : public Buffer {
public:
StreamBuffer(int sock, size_t size);
[[nodiscard]] bool Refill();
private:
int sock_;
};