diff options
Diffstat (limited to '')
-rw-r--r-- | src/ui/thread/VersionCheckThread.h | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/src/ui/thread/VersionCheckThread.h b/src/ui/thread/VersionCheckThread.h index d457f1fd..3a1cd698 100644 --- a/src/ui/thread/VersionCheckThread.h +++ b/src/ui/thread/VersionCheckThread.h @@ -34,21 +34,40 @@ namespace GpgFrontend::UI { +/** + * @brief + * + */ class VersionCheckThread : public QThread { Q_OBJECT public: + /** + * @brief Construct a new Version Check Thread object + * + */ explicit VersionCheckThread(); signals: - void upgradeVersion(SoftwareVersion version); + /** + * @brief + * + * @param version + */ + void SignalUpgradeVersion(SoftwareVersion version); protected: + /** + * @brief + + * + */ void run() override; private: - QByteArray latest_reply_bytes_, current_reply_bytes_; + QByteArray latest_reply_bytes_; ///< + QByteArray current_reply_bytes_; ///< }; } // namespace GpgFrontend::UI |