aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Storages/IStorage_fwd.h
blob: b9243b029b098c06dbe4e54688f96899b3f130a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <base/types.h>

#include <map>
#include <memory>

namespace DB
{

class IStorage;

using ConstStoragePtr = std::shared_ptr<const IStorage>;
using StoragePtr = std::shared_ptr<IStorage>;
using Tables = std::map<String, StoragePtr>;

}