mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +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();
|
||
|
};
|
||
|
}
|