mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 19:32:07 +00:00
17 lines
312 B
C++
17 lines
312 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class IBlockInputStream;
|
||
|
class IBlockOutputStream;
|
||
|
|
||
|
using BlockInputStreamPtr = std::shared_ptr<IBlockInputStream>;
|
||
|
using BlockInputStreams = std::vector<BlockInputStreamPtr>;
|
||
|
using BlockOutputStreamPtr = std::shared_ptr<IBlockOutputStream>;
|
||
|
|
||
|
}
|