wumu
2024-04-29 20a43d0e0ff9e9f6ee5349373fd810c6597abf00
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