xlsxcelllocation.h 405 B

1234567891011121314151617181920212223242526272829303132
  1. // xlsxcelllocation.h
  2. #ifndef CELL_LOCATION_H
  3. #define CELL_LOCATION_H
  4. #include "xlsxglobal.h"
  5. #include <memory>
  6. #include <QList>
  7. #include <QMetaType>
  8. #include <QObject>
  9. #include <QString>
  10. #include <QVector>
  11. QT_BEGIN_NAMESPACE_XLSX
  12. class Cell;
  13. class QXLSX_EXPORT CellLocation
  14. {
  15. public:
  16. CellLocation();
  17. int col;
  18. int row;
  19. std::shared_ptr<Cell> cell;
  20. };
  21. QT_END_NAMESPACE_XLSX
  22. #endif