diff options
Diffstat (limited to 'launcher/Version.h')
-rw-r--r-- | launcher/Version.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/launcher/Version.h b/launcher/Version.h index aceb7a07..c0927374 100644 --- a/launcher/Version.h +++ b/launcher/Version.h @@ -35,6 +35,7 @@ #pragma once +#include <QDebug> #include <QString> #include <QStringView> #include <QList> @@ -59,6 +60,8 @@ public: return m_string; } + friend QDebug operator<<(QDebug debug, const Version& v); + private: QString m_string; struct Section @@ -143,7 +146,11 @@ private: } } }; + + QList<Section> m_sections; void parse(); }; + + |