summaryrefslogtreecommitdiffstats
path: root/libkdepim/tests/testutf7encoder2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libkdepim/tests/testutf7encoder2.cpp')
-rw-r--r--libkdepim/tests/testutf7encoder2.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/libkdepim/tests/testutf7encoder2.cpp b/libkdepim/tests/testutf7encoder2.cpp
deleted file mode 100644
index 65cf8b46..00000000
--- a/libkdepim/tests/testutf7encoder2.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-#include "qutf7codec.h"
-#include "qutf7codec.cpp"
-#include <tqtextstream.h>
-#include <string.h>
-#include <assert.h>
-#include <iostream>
-
-int main( int argc, char * argv[] ) {
- if ( argc == 1 ) {
- (void)new TQUtf7Codec;
-
- TQTextCodec * codec = TQTextCodec::codecForName("utf-7");
- assert(codec);
-
- TQTextIStream my_cin(stdin);
-
- TQTextOStream my_cout(stdout);
- my_cout.setCodec(codec);
-
- TQString buffer = my_cin.read();
-
- // qDebug("buffer == " + buffer);
-
-#ifdef USE_STREAM
- my_cout << buffer << endl;
-#else
- TQTextEncoder * enc = codec->makeEncoder();
-#ifdef CHAR_WISE
- int len;
- for ( int i = 0 ; i < buffer.length() ; i++ ) {
- len = 1;
- cout << (enc->fromUnicode(TQString(buffer[i]),len)).data();
- }
- std::cout << std::endl;
-#else
- int len = buffer.length();
- std::cout << (enc->fromUnicode(buffer,len)).data() << std::endl;;
-#endif // CHAR_WISE
- delete enc;
-#endif // else USE_STREAM
- } else {
- qWarning("usage: testutf7encoder2 < infile > outfile\n");
- }
- TQTextCodec::deleteAllCodecs();
-}