From 2c2fbd828ca474671bb9e03681b30b115d8d6035 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 6 Nov 2011 15:57:02 -0600 Subject: Actually move the kde files that were renamed in the last commit --- libtdepim/tests/testutf7decoder.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libtdepim/tests/testutf7decoder.cpp (limited to 'libtdepim/tests/testutf7decoder.cpp') diff --git a/libtdepim/tests/testutf7decoder.cpp b/libtdepim/tests/testutf7decoder.cpp new file mode 100644 index 000000000..b13fb30c3 --- /dev/null +++ b/libtdepim/tests/testutf7decoder.cpp @@ -0,0 +1,26 @@ +#include "qutf7codec.h" +#include "qutf7codec.cpp" +#include +#include +#include + +int main( int argc, char * argv[] ) { + if ( argc == 1 ) { + (void)new TQUtf7Codec; + + TQTextCodec * codec = TQTextCodec::codecForName("utf-7"); + assert(codec); + + TQTextIStream my_cin(stdin); + my_cin.setCodec(codec); + + TQTextOStream my_cout(stdout); + + TQString buffer = my_cin.read(); + + my_cout << buffer; + } else { + qWarning("usage: testutf7decoder string_to_decode\n"); + } + TQTextCodec::deleteAllCodecs(); +} -- cgit v1.2.1