ClickHouse/src/Common/Throttler_fwd.h

12 lines
118 B
C++

#pragma once
#include <memory>
namespace DB
{
class Throttler;
using ThrottlerPtr = std::shared_ptr<Throttler>;
}