source: ntrip/trunk/BNC/bncsslconfig.h@ 3353

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