mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
20 lines
305 B
C++
20 lines
305 B
C++
#include "SeerUtl.h"
|
|
#include <QtCore/QDebug>
|
|
|
|
int main (int argc, char* argv[]) {
|
|
|
|
Q_UNUSED(argc);
|
|
Q_UNUSED(argv);
|
|
|
|
QString text("Function\\n1");
|
|
QString result;
|
|
|
|
result = Seer::filterEscapes(text);
|
|
|
|
qDebug().noquote() << text;
|
|
qDebug().noquote() << result;
|
|
|
|
return 1;
|
|
}
|
|
|