qt/LedOK/QXlsx/source/xlsxcelllocation.cpp

24 lines
306 B
C++
Raw Normal View History

2025-06-27 22:06:33 +08:00
// xlsxcelllocation.cpp
#include "xlsxcelllocation.h"
#include "xlsxcell.h"
#include "xlsxglobal.h"
#include <QList>
#include <QObject>
#include <QString>
#include <QVector>
QT_BEGIN_NAMESPACE_XLSX
CellLocation::CellLocation()
{
col = -1;
row = -1;
cell.reset();
}
QT_END_NAMESPACE_XLSX