mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 20:12:02 +00:00
23 lines
351 B
C++
23 lines
351 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
|
|
#include <Common/NamePrompter.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class HTTPPathHints : public IHints<>
|
|
{
|
|
public:
|
|
std::vector<String> getAllRegisteredNames() const override;
|
|
void add(const String & http_path);
|
|
|
|
private:
|
|
std::vector<String> http_paths;
|
|
};
|
|
|
|
using HTTPPathHintsPtr = std::shared_ptr<HTTPPathHints>;
|
|
|
|
}
|