qtsciicodec.h
This is the verbatim text of the qtsciicodec.h include file. It is
provided only for illustration; the copyright
remains with Trolltech.
/****************************************************************************
** $Id: qt/src/tools/qtsciicodec.h 2.2.1 edited 2000-08-16 $
**
** Definition of QTSCIICodec class
**
*****************************************************************************/
// Contributed by Hans Petter Bieker <bieker@kde.org>
// See the documentation for their license statement for the code as
// it was at the time of contribution.
#ifndef QTSCIICODEC_H
#define QTSCIICODEC_H
#ifndef QT_H
#include "qtextcodec.h"
#endif // QT_H
#ifndef QT_NO_CODECS
class Q_EXPORT QTsciiCodec : public QTextCodec {
public:
virtual int mibEnum() const;
const char* name() const;
QCString fromUnicode(const QString& uc, int& len_in_out) const;
QString toUnicode(const char* chars, int len) const;
int heuristicContentMatch(const char* chars, int len) const;
int heuristicNameMatch(const char* hint) const;
};
#endif
#endif
Copyright © 2000 Trolltech | Trademarks
| Qt version 2.2.1
|