You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
387 B
C++
12 lines
387 B
C++
#ifndef NATURALSORT_H
|
|
#define NATURALSORT_H
|
|
|
|
#include <QString>
|
|
|
|
bool naturalSortLessThanCS( const QString &left, const QString &right );
|
|
bool naturalSortLessThanCI( const QString &left, const QString &right );
|
|
bool naturalSortGreaterThanCS( const QString &left, const QString &right );
|
|
bool naturalSortGreaterThanCI( const QString &left, const QString &right );
|
|
|
|
#endif
|