summaryrefslogtreecommitdiffhomepage
path: root/opentrack/main-window.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-02-27 14:26:43 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-02-27 15:46:03 +0100
commitb05464749c618b83167e23f8b7046c1d29cbd9a3 (patch)
tree737854fac27c84595a53d97dce7ddbee862f3574 /opentrack/main-window.hpp
parentd7fb4b69ef543c8201b043424b9f24bfe8e050d1 (diff)
opentrack: add back the updater
Diffstat (limited to 'opentrack/main-window.hpp')
-rw-r--r--opentrack/main-window.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/opentrack/main-window.hpp b/opentrack/main-window.hpp
index 322c74c5..c0724a35 100644
--- a/opentrack/main-window.hpp
+++ b/opentrack/main-window.hpp
@@ -35,6 +35,8 @@
#include "ui_main-window.h"
+class update_query;
+
class main_window final : public QMainWindow, private State
{
Q_DECLARE_TR_FUNCTIONS(main_window)
@@ -84,6 +86,8 @@ class main_window final : public QMainWindow, private State
qt_signal<void> toggle_tracker { this, &main_window::toggle_tracker_, Qt::QueuedConnection };
qt_signal<void> restart_tracker { this, &main_window::restart_tracker_, Qt::QueuedConnection };
+ std::unique_ptr<update_query> updater;
+
public:
void init_dylibs();
void init_tray_menu();