mirror of
https://github.com/vicr123/the-libs.git
synced 2025-01-23 10:52:04 -05:00
22 lines
366 B
C++
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
|