25 lines
		
	
	
		
			326 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			326 B
		
	
	
	
		
			C++
		
	
	
	
	
	
|   | // xlsxcelllocation.cpp
 | ||
|  | 
 | ||
|  | #include "xlsxcelllocation.h"
 | ||
|  | 
 | ||
|  | #include "xlsxcell.h"
 | ||
|  | #include "xlsxglobal.h"
 | ||
|  | 
 | ||
|  | #include <QList>
 | ||
|  | #include <QObject>
 | ||
|  | #include <QString>
 | ||
|  | #include <QVector>
 | ||
|  | #include <QtGlobal>
 | ||
|  | 
 | ||
|  | QT_BEGIN_NAMESPACE_XLSX | ||
|  | 
 | ||
|  | CellLocation::CellLocation() | ||
|  | { | ||
|  |     col = -1; | ||
|  |     row = -1; | ||
|  | 
 | ||
|  |     cell.reset(); | ||
|  | } | ||
|  | 
 | ||
|  | QT_END_NAMESPACE_XLSX |