mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
0821d62516
Also a couple of massive include-refactorings with better forwarding
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>;
|
|
|
|
}
|