X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreidentity.h;fp=src%2Fcore%2Fcoreidentity.h;h=b2ba09f121bc6f10a8462d697c175c8ecd2fa932;hp=0265881c42e05aaaedea49a467a2861bb4a28ea8;hb=1a5c1814a0c52f6f35e65c7033b2f896bf1188e3;hpb=df38a9238d603ec8d2040619befa50980d994916 diff --git a/src/core/coreidentity.h b/src/core/coreidentity.h index 0265881c..b2ba09f1 100644 --- a/src/core/coreidentity.h +++ b/src/core/coreidentity.h @@ -24,17 +24,14 @@ #include "identity.h" -#ifdef HAVE_SSL -# include -# include -#endif // HAVE_SSL +#include +#include class SignalProxy; // ======================================== // CoreCertManager // ======================================== -#ifdef HAVE_SSL class CoreIdentity; class CORE_EXPORT CoreCertManager : public CertManager { @@ -43,14 +40,12 @@ class CORE_EXPORT CoreCertManager : public CertManager public: CoreCertManager(CoreIdentity* identity); -# ifdef HAVE_SSL const QSslKey& sslKey() const override; const QSslCertificate& sslCert() const override; public slots: void setSslKey(const QByteArray& encoded) override; void setSslCert(const QByteArray& encoded) override; -# endif void setId(IdentityId id); @@ -58,8 +53,6 @@ private: CoreIdentity* _identity{nullptr}; }; -#endif // HAVE_SSL - // ========================================= // CoreIdentity // ========================================= @@ -74,25 +67,20 @@ public: void synchronize(SignalProxy* proxy); -#ifdef HAVE_SSL inline const QSslKey& sslKey() const { return _sslKey; } inline void setSslKey(const QSslKey& key) { _sslKey = key; } void setSslKey(const QByteArray& encoded); inline const QSslCertificate& sslCert() const { return _sslCert; } inline void setSslCert(const QSslCertificate& cert) { _sslCert = cert; } void setSslCert(const QByteArray& encoded); -#endif /* HAVE_SSL */ private: -#ifdef HAVE_SSL QSslKey _sslKey; QSslCertificate _sslCert; CoreCertManager _certManager; -#endif }; -#ifdef HAVE_SSL inline const QSslKey& CoreCertManager::sslKey() const { return _identity->sslKey(); @@ -102,5 +90,3 @@ inline const QSslCertificate& CoreCertManager::sslCert() const { return _identity->sslCert(); } - -#endif