init
This commit is contained in:
22
dmplot/ui/dmplot.h
Normal file
22
dmplot/ui/dmplot.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef DMPLOT_H
|
||||
#define DMPLOT_H
|
||||
|
||||
#include"plotwidget.h"
|
||||
#include <QDockWidget>
|
||||
|
||||
|
||||
class DMPlot: public QDockWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
signals:
|
||||
void appendValuetoPlotSGL(double value);
|
||||
|
||||
public:
|
||||
DMPlot(const QString& title,QWidget* parent = 0);
|
||||
protected:
|
||||
PlotWidget* plotWidget;
|
||||
|
||||
};
|
||||
|
||||
#endif // DMPLOT_H
|
||||
Reference in New Issue
Block a user