This commit is contained in:
2025-08-23 15:15:57 +08:00
commit b5fbaa9db5
167 changed files with 2087 additions and 0 deletions

23
threadclock.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef THREADCLOCK_H
#define THREADCLOCK_H
#include <QObject>
#include <QThread>
class ThreadClock : public QThread
{
Q_OBJECT
public:
explicit ThreadClock(QObject *parent = nullptr);
QString name() const;
void setName(const QString &newName);
private:
QString m_name;
protected:
void run() override;
};
#endif // THREADCLOCK_H