#ifndef IGNITIONICON_H
#define IGNITIONICON_H

#include <QLabel>
#include <QTimer>

class IgnitionIcon : public QLabel
{
    Q_OBJECT

    static QPixmap *icon;
    QTimer timer;

public:
    explicit IgnitionIcon(QWidget *parent = Q_NULLPTR);

private slots:
    void check();
};

#endif // IGNITIONICON_H