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.
27 lines
515 B
C++
27 lines
515 B
C++
#pragma once
|
|
|
|
#include "iGuiPlotCmdHelper.h"
|
|
#include "nmPlot_global.h"
|
|
|
|
// 该类是数值试井绘图载体的样例nmGuiPlot的Cmd命令分发处理
|
|
class NM_PLOT_EXPORT nmGuiPlotCmdHelper
|
|
: public iGuiPlotCmdHelper
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit nmGuiPlotCmdHelper(iGuiPlot* p);
|
|
~nmGuiPlotCmdHelper();
|
|
|
|
virtual bool runAction(QString sAction);
|
|
|
|
public slots:
|
|
|
|
void slotObjPtsFinished(QVector<QPointF>& vec);
|
|
// void slotObjFinished();
|
|
|
|
protected:
|
|
|
|
friend class nmGuiPlot;
|
|
};
|