1 // Copyright 2009 The Archiveopteryx Developers <info@aox.org>
2 
3 #ifndef EUCKR_H
4 #define EUCKR_H
5 
6 #include "cp949.h"
7 
8 
9 class EucKrCodec
10     : public Cp949Codec
11 {
12 public:
13     EucKrCodec();
14 };
15 
16 
17 #endif
18