1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/tmpproj/tempclass.h

22 lines
315 B
C
Raw Normal View History

#ifndef TEMPCLASS_H
#define TEMPCLASS_H
#include <QObject>
2018-02-13 20:21:20 +08:00
#include <qqtcore.h>
#include <qqt-local.h>
2018-02-13 20:21:20 +08:00
class QQTSHARED_EXPORT TempClass : public QObject
{
Q_OBJECT
public:
2018-02-13 20:21:20 +08:00
explicit TempClass ( QObject* parent = nullptr ) : QObject ( parent ) {
}
signals:
public slots:
};
#endif // TEMPCLASS_H