summaryrefslogtreecommitdiffstats
path: root/libkdepim/tests/testutf7decoder.cpp
blob: 39ded92010b5a51c3a5b27125d49858f2daffc64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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();
}