Labrador/Desktop Interface/deviceconnecteddisplay.h

21 lines
359 B
C
Raw Normal View History

2016-09-07 07:36:43 +01:00
#ifndef DEVICECONNECTEDDISPLAY_H
#define DEVICECONNECTEDDISPLAY_H
#include <QWidget>
#include <QLabel>
#include <QDebug>
class deviceConnectedDisplay : public QLabel
{
Q_OBJECT
public:
explicit deviceConnectedDisplay(QWidget *parent = 0);
signals:
public slots:
void connectedStatusChanged(bool status);
};
#endif // DEVICECONNECTEDDISPLAY_H