Remote Call Framework 3.4
Certificate.hpp
1 
2 //******************************************************************************
3 // RCF - Remote Call Framework
4 //
5 // Copyright (c) 2005 - 2023, Delta V Software. All rights reserved.
6 // https://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 under GPL terms.
12 //
13 // Version: 3.4
14 // Contact: support <at> deltavsoft.com
15 //
16 //******************************************************************************
17 
18 #ifndef INCLUDE_RCF_CERTIFICATE_HPP
19 #define INCLUDE_RCF_CERTIFICATE_HPP
20 
21 #include <RCF/Export.hpp>
22 #include <RCF/RcfFwd.hpp>
23 
24 #include <memory>
25 
26 namespace RCF {
27 
29  class RCF_EXPORT Certificate
30  {
31  public:
32 
33  // *** SWIG BEGIN ***
34 
35  virtual CertificateImplementationType _getType();
36 
37  Win32CertificatePtr _downcastToWin32Certificate(CertificatePtr certPtr);
38  X509CertificatePtr _downcastToX509Certificate(CertificatePtr certPtr);
39 
40  // *** SWIG END ***
41 
42  virtual ~Certificate()
43  {
44  }
45  };
46 
47 } // namespace RCF
48 
49 #endif // ! INCLUDE_RCF_CERTIFICATE_HPP
std::shared_ptr< Certificate > CertificatePtr
Reference counted wrapper for RCF::Certificate.
Definition: RcfFwd.hpp:108
std::shared_ptr< Win32Certificate > Win32CertificatePtr
Reference counted wrapper for RCF::Win32Certificate.
Definition: RcfFwd.hpp:257
Definition: AmiIoHandler.hpp:23
Base class for all RCF certificate classes.
Definition: Certificate.hpp:29