xlsxcelllocation.h 425 B

123456789101112131415161718192021222324252627282930313233
  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. #include <QtGlobal>
  12. QT_BEGIN_NAMESPACE_XLSX
  13. class Cell;
  14. class QXLSX_EXPORT CellLocation
  15. {
  16. public:
  17. CellLocation();
  18. int col;
  19. int row;
  20. std::shared_ptr<Cell> cell;
  21. };
  22. QT_END_NAMESPACE_XLSX
  23. #endif