mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
23 lines
356 B
C
23 lines
356 B
C
![]() |
#ifndef KSTRINGHANDLERTEST_H
|
||
|
#define KSTRINGHANDLERTEST_H
|
||
|
|
||
|
#include <QtCore/QObject>
|
||
|
|
||
|
class KStringHandlerTest : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void capwords();
|
||
|
void tagURLs();
|
||
|
void perlSplit();
|
||
|
void naturalCompare();
|
||
|
void preProcessWrap_data();
|
||
|
void preProcessWrap();
|
||
|
|
||
|
private:
|
||
|
static QString test;
|
||
|
};
|
||
|
|
||
|
#endif
|