1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef GB2312
4 #define GB2312
5 
6 #include "codec.h"
7 
8 
9 class Gb2312Codec
10     : public Codec
11 {
12 public:
13     Gb2312Codec();
14 
15     EString fromUnicode( const UString & );
16     UString toUnicode( const EString & );
17 };
18 
19 
20 #endif
21