Codebase list ruby-fxruby / 867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2a fox-includes / FX88593Codec.h
867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2a

Tree @867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

FX88593Codec.h @867a9ad8-16f3-49f2-8da1-08141b9b00dd/upstream/1.6.45+git20221125.1.7d76b2araw · history · blame

#ifndef FX88593CODEC_H
#define FX88593CODEC_H

#ifndef FXTEXTCODEC_H
#include "FXTextCodec.h"
#endif

namespace FX {

/// ISO-8859-3 Codec
class FXAPI FX88593Codec : public FXTextCodec {
  FXDECLARE(FX88593Codec)
public:
  FX88593Codec(){}
  virtual FXint mb2wc(FXwchar& wc,const FXchar* src,FXint nsrc) const;
  virtual FXint wc2mb(FXchar* dst,FXint ndst,FXwchar wc) const;
  virtual FXint mibEnum() const;
  virtual const FXchar* name() const;
  virtual const FXchar* mimeName() const;
  virtual const FXchar* const* aliases() const;
  virtual ~FX88593Codec(){}
  };

}

#endif