mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 21:12:28 +00:00
15 lines
203 B
C++
15 lines
203 B
C++
#pragma once
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Block;
|
|
|
|
class IOutputFormat;
|
|
using OutputFormatPtr = std::shared_ptr<IOutputFormat>;
|
|
|
|
void formatBlock(OutputFormatPtr out, const Block & block);
|
|
|
|
}
|