mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
16 lines
215 B
C++
16 lines
215 B
C++
|
#pragma once
|
||
|
|
||
|
#include <IO/ReadBuffer.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class ReadBufferWrapperBase
|
||
|
{
|
||
|
public:
|
||
|
virtual const ReadBuffer & getWrappedReadBuffer() const = 0;
|
||
|
virtual ~ReadBufferWrapperBase() = default;
|
||
|
};
|
||
|
|
||
|
}
|