mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
14 lines
219 B
C++
14 lines
219 B
C++
#pragma once
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
namespace DB
|
|
{
|
|
// http://stackoverflow.com/questions/18315472/https-request-in-c-using-poco
|
|
struct UseSSL : private boost::noncopyable
|
|
{
|
|
UseSSL();
|
|
~UseSSL();
|
|
};
|
|
}
|