You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kbibtex/src/iso6937converter.h

51 lines
1.9 KiB

/***************************************************************************
copyright : (C) 2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This file has been modified to match the requirements of KBibTeX. *
* In case of problems or bugs arising from this implementation, please *
* contact the KBibTeX team first. *
* Thomas Fischer <fischer@unix-ag.uni-kl.de> *
* *
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#ifndef KBIBTEX_ISO6937CONVERTER_H
#define KBIBTEX_ISO6937CONVERTER_H
class QCString;
class QString;
class QChar;
namespace KBibTeX {
/**
* @author Robby Stephenson
*/
class Iso6937Converter {
public:
static QString toUtf8(const QCString& text);
private:
static bool hasNext(unsigned int pos, unsigned int len);
static bool isAscii(unsigned char c);
static bool isCombining(unsigned char c);
static QChar getChar(unsigned char c);
static QChar getCombiningChar(unsigned int c);
};
} // end namespace
#endif