RCFProto
 All Classes Functions Typedefs
HttpsEndpoint.hpp
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2013, Delta V Software. All rights reserved.
6 // http://www.deltavsoft.com
7 //
8 // RCF is distributed under dual licenses - closed source or GPL.
9 // Consult your particular license for conditions of use.
10 //
11 // If you have not purchased a commercial license, you are using RCF
12 // under GPL terms.
13 //
14 // Version: 2.0
15 // Contact: support <at> deltavsoft.com
16 //
17 //******************************************************************************
18 
19 #ifndef INCLUDE_RCF_HTTPSENDPOINT_HPP
20 #define INCLUDE_RCF_HTTPSENDPOINT_HPP
21 
22 #include <RCF/Export.hpp>
23 #include <RCF/TcpEndpoint.hpp>
24 
25 namespace RCF {
26 
28  class RCF_EXPORT HttpsEndpoint : public TcpEndpoint
29  {
30  public:
31 
32  // *** SWIG BEGIN ***
33 
35  HttpsEndpoint(int port);
36 
38  HttpsEndpoint(const std::string & ip, int port);
39 
40  // *** SWIG END ***
41 
43  std::string asString() const;
44 
45  ServerTransportAutoPtr createServerTransport() const;
46  ClientTransportAutoPtr createClientTransport() const;
47  EndpointPtr clone() const;
48  };
49 
50 } // namespace RCF
51 
52 #endif // INCLUDE_RCF_HTTPSENDPOINT_HPP