24 lines
306 B
C++
24 lines
306 B
C++
// 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
|