mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
17 lines
321 B
C++
17 lines
321 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct IAccessEntity;
|
|
using AccessEntityPtr = std::shared_ptr<const IAccessEntity>;
|
|
|
|
String serializeAccessEntity(const IAccessEntity & entity);
|
|
|
|
AccessEntityPtr deserializeAccessEntity(const String & definition, const String & file_path = "");
|
|
|
|
}
|