/usr/include/fox-1.6/FXKOI8RCodec.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 27 28 29 | #ifndef FXKOI8RCODEC_H
#define FXKOI8RCODEC_H
#ifndef FXTEXTCODEC_H
#include "FXTextCodec.h"
#endif
namespace FX {
/// KOI8-R Codec
class FXAPI FXKOI8RCodec : public FXTextCodec {
FXDECLARE(FXKOI8RCodec)
public:
FXKOI8RCodec(){}
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 ~FXKOI8RCodec(){}
};
}
#endif
|