wumu
2023-06-14 e0873308a615c7e8f78fe653fd3bb2ecf4739501
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