#ifndef __TLSSocket_h__ #define __TLSSocket_h__ namespace core { /// /// Instantiate the TLSSocket object into the TCPSocket to /// encrypt the TCP connection. /// class TLSSocket { public: TLSSocket(); ~TLSSocket(); }; } #endif