ClickHouse/src/IO/UseSSL.h
2020-04-03 18:14:31 +03:00

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();
};
}