mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
19 lines
342 B
C++
19 lines
342 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Interpreters/IRuntimeComponentsFactory.h>
|
||
|
#include <Interpreters/SecurityManager.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class RuntimeComponentsFactory : public IRuntimeComponentsFactory
|
||
|
{
|
||
|
public:
|
||
|
std::unique_ptr<ISecurityManager> createSecurityManager() override
|
||
|
{
|
||
|
return std::make_unique<SecurityManager>();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|