13 lines
178 B
C++
13 lines
178 B
C++
#ifndef STATUSWIDGET_H
|
|
#define STATUSWIDGET_H
|
|
|
|
#include <QGraphicsWidget>
|
|
|
|
class Statuswidget : public QGraphicsWidget
|
|
{
|
|
public:
|
|
Statuswidget();
|
|
};
|
|
|
|
#endif // STATUSWIDGET_H
|