// xlsxcelllocation.h #ifndef CELL_LOCATION_H #define CELL_LOCATION_H #include #include #include #include #include #include #include #include "xlsxglobal.h" QT_BEGIN_NAMESPACE_XLSX class Cell; class CellLocation { public: CellLocation(); int col; int row; QSharedPointer cell; }; QT_END_NAMESPACE_XLSX #endif