26 lines
375 B
C++
26 lines
375 B
C++
#ifndef OBJGEOSTRATUMS_H
|
|
#define OBJGEOSTRATUMS_H
|
|
|
|
#include <QObject>
|
|
#include "qmycustomplot.h"
|
|
|
|
/**
|
|
* @class
|
|
* @brief 地质分层
|
|
* @see
|
|
*/
|
|
class CObjGeostratums :public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CObjGeostratums();
|
|
virtual ~CObjGeostratums();
|
|
|
|
virtual bool LoadFromSLF(QMyCustomPlot *widget, QString strSlfName, QString csCurve);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|