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.
20 lines
422 B
C++
20 lines
422 B
C++
#ifndef NMCALCULATIONGEOWELL_H
|
|
#define NMCALCULATIONGEOWELL_H
|
|
|
|
#include <QString>
|
|
#include <QVector>
|
|
#include "nmCalculationGeoDataWell.h"
|
|
|
|
class nmCalculationGeoWell
|
|
{
|
|
public:
|
|
nmCalculationGeoWell(const QVector<nmCalculationGeoDataWell>& wellList);
|
|
|
|
//创建井的方法
|
|
QString generateWellGeoCodes(int index);
|
|
private:
|
|
QVector<nmCalculationGeoDataWell> m_vWellList;
|
|
};
|
|
|
|
#endif // NMCALCULATIONGEOWELL_H
|