1#pragma once
2
3#include <boost/noncopyable.hpp>
4
5namespace DB
6{
7// http://stackoverflow.com/questions/18315472/https-request-in-c-using-poco
8struct UseSSL : private boost::noncopyable
9{
10 UseSSL();
11 ~UseSSL();
12};
13}
14