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.
tdepim/libkdepim/tests/testutf7decoder.cpp

27 lines
551 B

#include "qutf7codec.h"
#include "qutf7codec.cpp"
#include <qtextstream.h>
#include <string.h>
#include <assert.h>
int main( int argc, char * argv[] ) {
if ( argc == 1 ) {
(void)new QUtf7Codec;
QTextCodec * codec = QTextCodec::codecForName("utf-7");
assert(codec);
QTextIStream my_cin(stdin);
my_cin.setCodec(codec);
QTextOStream my_cout(stdout);
QString buffer = my_cin.read();
my_cout << buffer;
} else {
qWarning("usage: testutf7decoder string_to_decode\n");
}
QTextCodec::deleteAllCodecs();
}