logplus/Slfio/include/commonutils.h
DESKTOP-450PEFP\mainc 5e750f0529 修改插件模块逻辑,模块中自定义生成QAction
平台获取模块中定义的QAction显示在ToolBar, 点击QAction, 加载插件插入到tab中
getPrjAllSlf封装到Slfio中,可以在插件模块中使用。
2026-03-23 10:40:57 +08:00

31 lines
638 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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