Mercurial > minori
view include/core/session.h @ 271:f01b6e9c8fa2
dep/animone: make OS X code build
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 14 Apr 2024 22:28:50 -0400 |
parents | 3ec7804abf17 |
children | 9a88e1725fd2 |
line wrap: on
line source
#ifndef MINORI_CORE_SESSION_H_ #define MINORI_CORE_SESSION_H_ #include "core/config.h" #include "gui/locale.h" #include <QElapsedTimer> #include "semver/semver.hpp" class MainWindow; struct Session { public: Session() { timer.start(); } /* we literally *cannot* be lying to the user by doing this */ void IncrementRequests() { requests++; }; int GetRequests() { return requests; }; int uptime() { return timer.elapsed(); } Config config; static constexpr semver::version version{PACKAGE_VERSION}; private: unsigned int requests = 0; QElapsedTimer timer; }; extern Session session; #endif // MINORI_CORE_SESSION_H_