qHexWalker 0.0.1
Hexagonal Grid Pathfinding & Maze Visualization on Interactive Maps
Loading...
Searching...
No Matches
application.cpp
Go to the documentation of this file.
1#include "application.h"
2#include "config.h"
3
4Application::Application(int &argc, char **argv) : QGuiApplication(argc, argv) {
5 loggerName_ = LOGGER_NAME;
6 appName_ = APP_NAME;
7 appVersion_ = VERSION;
8}
9
10bool Application::eventFilter(QObject *obj, QEvent *event) { return QGuiApplication::eventFilter(obj, event); }
Main application class for qHexWalker.
std::string loggerName_
Logger name for spdlog.
Definition application.h:84
Application(int &argc, char **argv)
Constructs the Application.
QString appVersion_
Application version string.
Definition application.h:86
bool eventFilter(QObject *obj, QEvent *event) override
Global event filter for the application.
QString appName_
Application name.
Definition application.h:85