You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
432 B
C
28 lines
432 B
C
7 years ago
|
#ifndef SHOPOVERVIEW_H
|
||
|
#define SHOPOVERVIEW_H
|
||
|
|
||
|
#include <QFrame>
|
||
|
#include <idashboardwidget.h>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ShopOverview;
|
||
|
}
|
||
|
|
||
|
class ShopOverview : public QFrame, public IDashboardWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ShopOverview(QWidget *parent = 0);
|
||
|
~ShopOverview();
|
||
|
|
||
|
private:
|
||
|
Ui::ShopOverview *ui;
|
||
|
|
||
|
// IDashboardWidget interface
|
||
|
public:
|
||
|
virtual void refresh() override;
|
||
|
};
|
||
|
|
||
|
#endif // SHOPOVERVIEW_H
|