wumu
2023-10-24 0af28ca563f556e8d08d03c16a8da8a1741f65d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// xlsxcelllocation.cpp
 
#include <QtGlobal>
#include <QObject>
#include <QString>
#include <QVector>
#include <QList>
 
#include "xlsxglobal.h"
#include "xlsxcell.h"
#include "xlsxcelllocation.h"
 
QT_BEGIN_NAMESPACE_XLSX
 
CellLocation::CellLocation()
{
    col = -1;
    row = -1;
 
    cell.reset();
}
 
QT_END_NAMESPACE_XLSX