blob: fd206a23a45763b1f5161e8bd0ef20d88c005967 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <memory>
namespace DB
{
class Block;
class IOutputFormat;
using OutputFormatPtr = std::shared_ptr<IOutputFormat>;
void formatBlock(OutputFormatPtr out, const Block & block);
}
|