使用QMake构建时出现以下错误:

这是我的标题:

#ifndef TIMERTODO_H
#define TIMERTODO_H

#include <QTimer>

class TodoBaseTask;

class TimerTodo : public QTimer
{
public:
    TimerTodo(TodoBaseTask *timer);
    void StartTimer();
private slots:
    void timerOver();
signals:
    void notify(TodoBaseTask *todo);
    void hasNotified(TimerTodo *timer);
private:
    TodoBaseTask *m_todo;
};

#endif // TIMERTODO_H
这是我的来源:
#include "timertodo.h"
#include "todobasetask.h"

TimerTodo::TimerTodo(TodoBaseTask *todo)
{
    m_todo = todo;
    connect(this, SIGNAL(timeout()), this, SLOT(timerOver()));
}

void TimerTodo::StartTimer()
{
    QDateTime nextNotify = m_todo->getDeadLine().addDays(-1);
    this->start(QDateTime::currentDateTime().msecsTo(nextNotify));
}

void TimerTodo::timerOver()
{
    emit notify(m_todo);
    emit hasNotified(this);
}
如何解决?

最佳答案

这在Qt documentation中进行了解释:



(强调我的)

因此,您需要将此宏放在每个具有自己的信号或插槽的类中。

09-28 08:55