aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Storages/FileLog/Buffer_fwd.h
blob: ec644aa7d369f99114329adbce6a0ea6f273245e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <memory>

namespace DB
{
class ReadBufferFromFileLog;

using ReadBufferFromFileLogPtr = std::shared_ptr<ReadBufferFromFileLog>;
}