31 lines
638 B
C
31 lines
638 B
C
|
|
#ifndef COMMONUTILS_H
|
|||
|
|
#define COMMONUTILS_H
|
|||
|
|
|
|||
|
|
#include <QString>
|
|||
|
|
#include <QStatusBar>
|
|||
|
|
#include <QComboBox>
|
|||
|
|
#include <QUuid>
|
|||
|
|
#include <QDir>
|
|||
|
|
#include<cmath>
|
|||
|
|
|
|||
|
|
#pragma execution_character_set("utf-8")
|
|||
|
|
|
|||
|
|
class CCommonUtils
|
|||
|
|
{
|
|||
|
|
//函数定义
|
|||
|
|
public:
|
|||
|
|
//构造函数
|
|||
|
|
CCommonUtils();
|
|||
|
|
//析构函数
|
|||
|
|
virtual ~CCommonUtils();
|
|||
|
|
|
|||
|
|
static bool getAllSlf(QString prjname, QVector<QString> &vecSlfList, QVector<QString> &vecWellList);//直方图,获取当前工程下的slf
|
|||
|
|
static QString GetLogdataPath();
|
|||
|
|
static int chakan(QString path, QStringList &wellfs, QString strSuffix);
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // COMMONUTILS_H
|