1 #ifndef FX885911CODEC_H
2 #define FX885911CODEC_H
3 
4 #ifndef FXTEXTCODEC_H
5 #include "FXTextCodec.h"
6 #endif
7 
8 namespace FX {
9 
10 /// ISO-8859-11 Codec
11 class FXAPI FX885911Codec : public FXTextCodec {
FXDECLARE(FX885911Codec)12   FXDECLARE(FX885911Codec)
13 public:
14   FX885911Codec(){}
15   virtual FXint mb2wc(FXwchar& wc,const FXchar* src,FXint nsrc) const;
16   virtual FXint wc2mb(FXchar* dst,FXint ndst,FXwchar wc) const;
17   virtual FXint mibEnum() const;
18   virtual const FXchar* name() const;
19   virtual const FXchar* mimeName() const;
20   virtual const FXchar* const* aliases() const;
~FX885911Codec()21   virtual ~FX885911Codec(){}
22   };
23 
24 }
25 
26 #endif
27