mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
24 lines
356 B
C++
24 lines
356 B
C++
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
#include <IO/ReadBuffer.h>
|
|
#include <IO/BufferWithOwnMemory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ReadBufferFromIStream : public BufferWithOwnMemory<ReadBuffer>
|
|
{
|
|
private:
|
|
std::istream & istr;
|
|
|
|
bool nextImpl() override;
|
|
|
|
public:
|
|
ReadBufferFromIStream(std::istream & istr_, size_t size = DBMS_DEFAULT_BUFFER_SIZE);
|
|
};
|
|
|
|
}
|