/usr/include/fox-1.6/FX88592Codec.h is in libfox-1.6-dev 1.6.49-2ubuntu1.
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 FX88592CODEC_H
#define FX88592CODEC_H
#ifndef FXTEXTCODEC_H
#include "FXTextCodec.h"
#endif
namespace FX {
/// ISO-8859-2 Codec
class FXAPI FX88592Codec : public FXTextCodec {
FXDECLARE(FX88592Codec)
public:
FX88592Codec(){}
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 ~FX88592Codec(){}
};
}
#endif
|