23 lines
294 B
C++
23 lines
294 B
C++
#ifndef TRENDGRAPH_H
|
|
#define TRENDGRAPH_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class CTrendGraph;
|
|
}
|
|
|
|
class CTrendGraph : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CTrendGraph(QWidget *parent = nullptr);
|
|
~CTrendGraph();
|
|
|
|
private:
|
|
Ui::CTrendGraph *ui;
|
|
};
|
|
|
|
#endif // TRENDGRAPH_H
|