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.
24 lines
454 B
C++
24 lines
454 B
C++
#pragma once
|
|
|
|
#include "ZxObjBase.h"
|
|
#include "nmPlot_global.h"
|
|
|
|
// 数值试井绘图对象(基类)
|
|
class NM_PLOT_EXPORT nmObjBase : public ZxObjBase
|
|
{
|
|
Q_OBJECT
|
|
ZX_DECLARE_DYNAMIC
|
|
|
|
public:
|
|
|
|
nmObjBase();
|
|
nmObjBase(const QString& sName, \
|
|
ZxSubAxisX* pAxisX, \
|
|
ZxSubAxisY* pAxisY);
|
|
~nmObjBase();
|
|
|
|
virtual void paintBack(QPainter* painter, \
|
|
const ZxPaintParam& param);
|
|
|
|
};
|