mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
22 lines
315 B
C++
22 lines
315 B
C++
#ifndef TEMPCLASS_H
|
|
#define TEMPCLASS_H
|
|
|
|
#include <QObject>
|
|
#include <qqtcore.h>
|
|
#include <qqt-local.h>
|
|
|
|
class QQTSHARED_EXPORT TempClass : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TempClass ( QObject* parent = nullptr ) : QObject ( parent ) {
|
|
|
|
}
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // TEMPCLASS_H
|