This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
239 B
C++

#ifndef APPLICATION_H
#define APPLICATION_H
#include <QObject>
#include <QCoreApplication>
class Application : public QCoreApplication
{
Q_OBJECT
public:
explicit Application(int &argc, char **argv);
};
#endif // APPLICATION_H