5 Star 17 Fork 18

sj0830 / qt_project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
excelhelper.h 606 Bytes
一键复制 编辑 原始数据 按行查看 历史
sj0830 提交于 2020-02-18 23:34 . 首次提交,建立基础开发版本;
#ifndef EXCELHELPER_H
#define EXCELHELPER_H
#include <QObject>
class ExcelHelper : public QObject
{
Q_OBJECT
private:
explicit ExcelHelper(QObject *parent = 0);
static ExcelHelper *_instance;
public:
static ExcelHelper *Instance()
{
if (!_instance)
{
_instance = new ExcelHelper;
}
return _instance;
}
void ToExcel(QString fileName, QString sheetName,
QString title, QString columnNames[],
int columnWidths[], int columnCount, QStringList content);
signals:
public slots:
};
#endif // EXCELHELPER_H
C/C++
1
https://gitee.com/sjsun/qt_project.git
git@gitee.com:sjsun/qt_project.git
sjsun
qt_project
qt_project
master

搜索帮助