This commit is contained in:
Konstantinos Sideris 2017-10-23 00:19:35 +03:00
parent 143ed5176a
commit c6e1068e0e
5 changed files with 9 additions and 29 deletions

View file

@ -19,23 +19,11 @@ public:
void start();
void stop();
QColor color()
{
return color_;
}
void setColor(QColor color)
{
color_ = color;
}
QColor color() { return color_; }
void setColor(QColor color) { color_ = color; }
int interval()
{
return interval_;
}
void setInterval(int interval)
{
interval_ = interval;
}
int interval() { return interval_; }
void setInterval(int interval) { interval_ = interval; }
private slots:
void onTimeout();