You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
settings/src/application.h

23 lines
386 B
C++

#ifndef APPLICATION_H
#define APPLICATION_H
#include <QApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QDBusConnection>
class Application : public QApplication
{
Q_OBJECT
public:
explicit Application(int &argc, char **argv);
void switchToPage(const QString &name);
private:
QQmlApplicationEngine m_engine;
};
#endif // APPLICATION_H