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.
nmWATI/Include/mGui/mGuiTree/iDockPlots.h

22 lines
369 B
C

#pragma once
#include "iDockBaseWx.h"
class iPlotCurveWxT;
class M_GUI_TREE_EXPORT iDockPlots : public iDockBaseWx
{
Q_OBJECT
public:
explicit iDockPlots(const QString& sTitle, QWidget *parent = 0);
~iDockPlots();
iPlotCurveWxT* getPlotWx();
protected:
virtual QWidget* buildCentrlWx(int nIndex);
private:
iPlotCurveWxT* m_pPlotWx;
};