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.
26 lines
411 B
C++
26 lines
411 B
C++
#pragma once
|
|
|
|
#include "ZxObjPoint.h"
|
|
#include "mGuiPlot_global.h"
|
|
#include "mAlgDefines.h"
|
|
#include "ZxObjBdyLine.h"
|
|
#include "ZxObjWmPoint.h"
|
|
|
|
|
|
class M_GUI_PLOT_EXPORT ZxObjBdyPoint : public ZxObjWmPoint
|
|
{
|
|
Q_OBJECT
|
|
ZX_DECLARE_DYNAMIC
|
|
|
|
public:
|
|
ZxObjBdyPoint();
|
|
ZxObjBdyPoint(const QString& sName,
|
|
ZxSubAxisX* pAxisX,
|
|
ZxSubAxisY* pAxisY);
|
|
~ZxObjBdyPoint();
|
|
};
|
|
|
|
|
|
|
|
|