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.
26 lines
469 B
C++
26 lines
469 B
C++
#pragma once
|
|
|
|
#include "Defines.h"
|
|
#include "iFileEngine.h"
|
|
#include "iFileEngine_global.h"
|
|
|
|
// Excel格式文件加载解析引擎
|
|
class I_FILE_ENGINE_EXPORT iFileEngineExcel : public iFileEngine
|
|
{
|
|
public:
|
|
iFileEngineExcel();
|
|
~iFileEngineExcel();
|
|
|
|
public:
|
|
|
|
void setSheet(QString sSheet);
|
|
|
|
virtual bool load(VVecVariant& vvecData, QString sFile);
|
|
static bool getAllSheets(QString sFile, QStringList& list);
|
|
|
|
protected:
|
|
|
|
QString m_sSheet;
|
|
|
|
};
|