diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-01-19 09:46:35 +0200 |
---|---|---|
committer | Edgars Cīrulis <edgarsscirulis@gmail.com> | 2023-01-19 09:50:45 +0200 |
commit | 9934537e19c7ce6f9bf926cc8abba023297b0a40 (patch) | |
tree | 40eb8fa464e52b6c2b7aa5faa3c23e643fbbd6d4 /launcher | |
parent | 730f714e973eadf76d2f834a9e062ce5bb44e41f (diff) | |
download | PrismLauncher-9934537e19c7ce6f9bf926cc8abba023297b0a40.tar.gz PrismLauncher-9934537e19c7ce6f9bf926cc8abba023297b0a40.tar.bz2 PrismLauncher-9934537e19c7ce6f9bf926cc8abba023297b0a40.zip |
feat: add debug printing for Version
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/Version.cpp | 18 | ||||
-rw-r--r-- | launcher/Version.h | 7 |
2 files changed, 25 insertions, 0 deletions
diff --git a/launcher/Version.cpp b/launcher/Version.cpp index 9fdd955b..2129ebfd 100644 --- a/launcher/Version.cpp +++ b/launcher/Version.cpp @@ -1,5 +1,6 @@ #include "Version.h" +#include <QDebug> #include <QUrl> #include <QRegularExpression> #include <QRegularExpressionMatch> @@ -93,3 +94,20 @@ void Version::parse() m_sections.append(Section(currentSection)); } } + + +/// qDebug print support for the BlockedMod struct +QDebug operator<<(QDebug debug, const Version& v) +{ + QDebugStateSaver saver(debug); + + debug.nospace() << "Version{ string: " << v.toString() << ", sections: [ "; + + for (auto s : v.m_sections) { + debug.nospace() << s.m_fullString << ", "; + } + + debug.nospace() << " ]" << " }"; + + return debug; +}
\ No newline at end of file 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(); }; + + |