xlsxcelllocation.cpp 325 B

1234567891011121314151617181920212223
  1. // xlsxcelllocation.cpp
  2. #include <QtGlobal>
  3. #include <QObject>
  4. #include <QString>
  5. #include <QVector>
  6. #include <QList>
  7. #include "xlsxglobal.h"
  8. #include "xlsxcell.h"
  9. #include "xlsxcelllocation.h"
  10. QT_BEGIN_NAMESPACE_XLSX
  11. CellLocation::CellLocation()
  12. {
  13. col = -1;
  14. row = -1;
  15. cell.clear();
  16. }
  17. QT_END_NAMESPACE_XLSX