xlsxcelllocation.h 418 B

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