mirror of
https://github.com/Lurkki14/tuxclocker.git
synced 2024-11-24 09:10:16 -06:00
20 lines
310 B
C++
20 lines
310 B
C++
#ifndef PLOTWIDGET_H
|
|
#define PLOTWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class PlotWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PlotWidget(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void leftPlot();
|
|
protected:
|
|
void leaveEvent(QEvent *event);
|
|
public slots:
|
|
};
|
|
|
|
#endif // PLOTWIDGET_H
|