mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
12 lines
118 B
C++
12 lines
118 B
C++
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class Throttler;
|
||
|
using ThrottlerPtr = std::shared_ptr<Throttler>;
|
||
|
|
||
|
}
|