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++
14 years ago
|
#ifndef NATURALSORT_H
|
||
|
#define NATURALSORT_H
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
12 years ago
|
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 );
|
||
14 years ago
|
|
||
13 years ago
|
#endif
|