wumu
2024-05-07 5e74d49c960965e3134cda27f603024483a4a1d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// xlsxcelllocation.h
 
#ifndef CELL_LOCATION_H
#define CELL_LOCATION_H
 
#include <QtGlobal>
#include <QObject>
#include <QString>
#include <QVector>
#include <QList>
#include <QMetaType>
 
#include <memory>
 
#include "xlsxglobal.h"
 
QT_BEGIN_NAMESPACE_XLSX
 
class Cell;
 
class QXLSX_EXPORT CellLocation
{
public:
    CellLocation();
 
    int col;
    int row;
 
    std::shared_ptr<Cell> cell;
};
 
QT_END_NAMESPACE_XLSX
#endif