mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
22 lines
356 B
C++
22 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
|