mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
13 lines
111 B
C++
13 lines
111 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
typedef std::vector<std::string> Names;
|
|
|
|
}
|