DSCAnalysisTool/YT_TANGOUS_Release/QXlsx/header/xlsxcelllocation.h

34 lines
425 B
C
Raw Normal View History

2025-03-06 07:25:37 +00:00
// 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