mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
15 lines
268 B
C++
15 lines
268 B
C++
|
#pragma once
|
||
|
#include <iostream>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
class Token;
|
||
|
std::ostream & operator<<(std::ostream & stream, const Token & what);
|
||
|
|
||
|
struct Expected;
|
||
|
std::ostream & operator<<(std::ostream & stream, const Expected & what);
|
||
|
|
||
|
}
|
||
|
|
||
|
#include <Core/iostream_debug_helpers.h>
|