the-libs/lib/tapplication.h
2018-08-03 22:44:22 +10:00

22 lines
366 B
C++

#ifndef TAPPLICATION_H
#define TAPPLICATION_H
#include "the-libs_global.h"
#include <QApplication>
class THELIBSSHARED_EXPORT tApplication : public QApplication
{
Q_OBJECT
public:
explicit tApplication(int &argc, char **argv);
signals:
void openFile(QString file);
public slots:
private:
bool event(QEvent * event);
};
#endif // TAPPLICATION_H