You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
279 B
16 lines
279 B
12 years ago
|
#ifndef UBTEXTTOOLS_H
|
||
|
#define UBTEXTTOOLS_H
|
||
|
|
||
|
#include <QString>
|
||
|
|
||
|
class UBTextTools{
|
||
|
public:
|
||
|
UBTextTools(){}
|
||
|
virtual ~UBTextTools(){}
|
||
|
|
||
|
static QString cleanHtmlCData(const QString& _html);
|
||
|
static QString cleanHtml(const QString& _html);
|
||
|
};
|
||
|
|
||
|
#endif // UBTEXTTOOLS_H
|