ClickHouse/src/DataStreams/IBlockStream_fwd.h

18 lines
374 B
C++
Raw Normal View History

#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>;
2019-12-12 10:49:15 +00:00
using BlockOutputStreams = std::vector<BlockOutputStreamPtr>;
}