mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
13 lines
218 B
C++
13 lines
218 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Access/IAccessEntity.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
String serializeAccessEntity(const IAccessEntity & entity);
|
||
|
|
||
|
AccessEntityPtr deserializeAccessEntity(const String & definition, const String & path);
|
||
|
|
||
|
}
|