ClickHouse/src/IO/ReadBufferWrapperBase.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
215 B
C++
Raw Normal View History

#pragma once
#include <IO/ReadBuffer.h>
namespace DB
{
class ReadBufferWrapperBase
{
public:
virtual const ReadBuffer & getWrappedReadBuffer() const = 0;
virtual ~ReadBufferWrapperBase() = default;
};
}