source:
ntrip/trunk/BNC/bncsslconfig.h@
3349
Last change on this file since 3349 was 3348, checked in by , 14 years ago | |
---|---|
File size: 321 bytes |
Line | |
---|---|
1 | #ifndef BNCSSLCONFIG_H |
2 | #define BNCSSLCONFIG_H |
3 | |
4 | #include <QtNetwork> |
5 | |
6 | // Singleton Class |
7 | // --------------- |
8 | class bncSslConfig : public QSslConfiguration { |
9 | public: |
10 | static bncSslConfig& Instance() { |
11 | static bncSslConfig _sslConfig; |
12 | return _sslConfig; |
13 | } |
14 | private: |
15 | bncSslConfig(); |
16 | ~bncSslConfig(); |
17 | }; |
18 | |
19 | #endif |
Note:
See TracBrowser
for help on using the repository browser.