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