yacreader/common/qnaturalsorting.h
Luis Ángel San Martín b4ea359bed added: QsLog to YACReader
added: error log messages to client<->server local comunication
2014-03-23 10:31:32 +01:00

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