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