mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
13 lines
284 B
C++
13 lines
284 B
C++
#pragma once
|
|
#include <map>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class NamedCollection;
|
|
using NamedCollectionPtr = std::shared_ptr<const NamedCollection>;
|
|
using MutableNamedCollectionPtr = std::shared_ptr<NamedCollection>;
|
|
using NamedCollectionsMap = std::map<std::string, MutableNamedCollectionPtr>;
|
|
|
|
}
|