/usr/include/fox-1.6/FX88596Codec.h is in libfox-1.6-dev 1.6.50-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifndef FX88596CODEC_H
#define FX88596CODEC_H
#ifndef FXTEXTCODEC_H
#include "FXTextCodec.h"
#endif
namespace FX {
/// ISO-8859-6 Codec
class FXAPI FX88596Codec : public FXTextCodec {
FXDECLARE(FX88596Codec)
public:
FX88596Codec(){}
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 ~FX88596Codec(){}
};
}
#endif
|