X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreidentity.h;h=b2ba09f121bc6f10a8462d697c175c8ecd2fa932;hp=39ee2a45a0a666cbf6c7b9ac8bd90358bdd8b512;hb=c0d6dc0dec628f2e143e37ecc95cec45e636f8a5;hpb=4a5065255e652dd0c301bac0db41b7afb777ef49 diff --git a/src/core/coreidentity.h b/src/core/coreidentity.h index 39ee2a45..b2ba09f1 100644 --- a/src/core/coreidentity.h +++ b/src/core/coreidentity.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,98 +18,75 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIDENTITY_H -#define COREIDENTITY_H +#pragma once + +#include "core-export.h" #include "identity.h" -#ifdef HAVE_SSL -#include #include -#endif //HAVE_SSL +#include class SignalProxy; // ======================================== // CoreCertManager // ======================================== -#ifdef HAVE_SSL class CoreIdentity; -class CoreCertManager : public CertManager +class CORE_EXPORT CoreCertManager : public CertManager { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: - CoreCertManager(CoreIdentity &identity); + CoreCertManager(CoreIdentity* identity); -#ifdef HAVE_SSL - virtual const QSslKey &sslKey() const; - virtual const QSslCertificate &sslCert() const; + const QSslKey& sslKey() const override; + const QSslCertificate& sslCert() const override; public slots: - virtual void setSslKey(const QByteArray &encoded); - virtual void setSslCert(const QByteArray &encoded); -#endif + void setSslKey(const QByteArray& encoded) override; + void setSslCert(const QByteArray& encoded) override; void setId(IdentityId id); private: - CoreIdentity &identity; + CoreIdentity* _identity{nullptr}; }; - -#endif //HAVE_SSL - // ========================================= // CoreIdentity // ========================================= -class CoreIdentity : public Identity +class CORE_EXPORT CoreIdentity : public Identity { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: - CoreIdentity(IdentityId id, QObject *parent = 0); - CoreIdentity(const Identity &other, QObject *parent = 0); - CoreIdentity(const CoreIdentity &other, QObject *parent = 0); - - void synchronize(SignalProxy *proxy); + CoreIdentity(IdentityId id, QObject* parent = nullptr); + CoreIdentity(const Identity& other, QObject* parent = nullptr); + CoreIdentity(const CoreIdentity& other, QObject* parent = nullptr); -#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 */ + void synchronize(SignalProxy* proxy); - CoreIdentity &operator=(const CoreIdentity &identity); + 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); private: -#ifdef HAVE_SSL QSslKey _sslKey; QSslCertificate _sslCert; CoreCertManager _certManager; -#endif }; - -#ifdef HAVE_SSL -inline const QSslKey &CoreCertManager::sslKey() const +inline const QSslKey& CoreCertManager::sslKey() const { - return identity.sslKey(); + return _identity->sslKey(); } - -inline const QSslCertificate &CoreCertManager::sslCert() const +inline const QSslCertificate& CoreCertManager::sslCert() const { - return identity.sslCert(); + return _identity->sslCert(); } - - -#endif - -#endif //COREIDENTITY_H