Files
CodeRepository/Apps/App_ResistanceMatcher/3rd/QXlsx/include/xlsxcelllocation.h
chenzhen 222dda1e43 1,新增“App_ThermalImageSystem”;
2,新增“Apps”;
3,新增“Common”;
4,新增“FileList”;
5,新增“MediaX”;
6,新增“OpenSource”;
7,新增“Samples”;
8,新增“SoftwareBusinessLines”.
2026-02-14 23:03:23 +08:00

34 lines
425 B
C++

// xlsxcelllocation.h
#ifndef CELL_LOCATION_H
#define CELL_LOCATION_H
#include "xlsxglobal.h"
#include <memory>
#include <QList>
#include <QMetaType>
#include <QObject>
#include <QString>
#include <QVector>
#include <QtGlobal>
QT_BEGIN_NAMESPACE_XLSX
class Cell;
class QXLSX_EXPORT CellLocation
{
public:
CellLocation();
int col;
int row;
std::shared_ptr<Cell> cell;
};
QT_END_NAMESPACE_XLSX
#endif