I'm getting the undefined reference to vtable for CustomProgressBar' error when trying to launch following code:
customprogressbar.h
#ifndef CUSTOMPROGRESSBAR_H
#define CUSTOMPROGRESSBAR_H
#include <QProgressBar>
#include "task.h"
class CustomProgressBar : public QProgressBar
{
Q_OBJECT
public:
    CustomProgressBar(DayTask, QWidget* parent = 0);
protected:
    void paintEvent(QPaintEvent *) Q_DECL_OVERRIDE;
private:
    DayTask task;
};
#endif // CUSTOMPROGRESSBAR_H
customprogressbar.cpp
#include "customprogressbar.h"
#include <QPainter>
CustomProgressBar::CustomProgressBar(DayTask task, QWidget* parent) :
    task{task},
    QProgressBar(parent)
{
}
//paintevent
What could cause the problem?
 
     
    