C++ Web Framework  3.0
sslloader.h
1 #ifndef SSLLOADER_H
2 #define SSLLOADER_H
3 
4 #include "cppwebframework_global.h"
5 #include <QSslConfiguration>
6 #include "configuration.h"
7 
8 CWF_BEGIN_NAMESPACE
9 
13 class CPPWEBFRAMEWORKSHARED_EXPORT SslLoader
14 {
15  Configuration configuration;
16 public:
20  SslLoader(const Configuration &configuration);
24  QSslConfiguration *getSslConfiguration() const;
25 };
26 
27 CWF_END_NAMESPACE
28 
29 #endif // SSLLOADER_H
The SslLoader class is responsible for loading the SSL settings.
Definition: sslloader.h:13
All classes of C++ Web Framework are contained within the namespace CWF.
Definition: configuration.h:24