mirror of
				https://github.com/YACReader/yacreader
				synced 2025-10-31 00:04:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			459 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			459 B
		
	
	
	
		
			C
		
	
	
	
	
	
| 
 | |
| 
 | |
| #ifndef __QNATURALSORTING_H
 | |
| #define __QNATURALSORTING_H
 | |
| 
 | |
| #include <QString>
 | |
| #include <QFileInfo>
 | |
| #include "library_item.h"
 | |
| 
 | |
| bool naturalSortLessThanCS( const QString &left, const QString &right );
 | |
| bool naturalSortLessThanCI( const QString &left, const QString &right );
 | |
| bool naturalSortLessThanCIFileInfo(const QFileInfo & left,const QFileInfo & right);
 | |
| bool naturalSortLessThanCILibraryItem(LibraryItem * left, LibraryItem * right);
 | |
| 
 | |
| #endif
 |