13 lines
197 B
C++
13 lines
197 B
C++
#ifndef IDASHBOARDWIDGET_H
|
|
#define IDASHBOARDWIDGET_H
|
|
|
|
#include "core_global.h"
|
|
|
|
class CORESHARED_EXPORT IDashboardWidget
|
|
{
|
|
public:
|
|
virtual void refresh() = 0;
|
|
};
|
|
|
|
#endif // IDASHBOARDWIDGET_H
|