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.
42 lines
1.3 KiB
42 lines
1.3 KiB
/***************************************************************************
|
|
copyright : (C) 2006 by Robby Stephenson
|
|
email : robby@periapsis.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 TELLICO_ISO6937CONVERTER_H
|
|
#define TELLICO_ISO6937CONVERTER_H
|
|
|
|
class TQCString;
|
|
class TQString;
|
|
class TQChar;
|
|
|
|
namespace Tellico {
|
|
|
|
/**
|
|
* @author Robby Stephenson
|
|
*/
|
|
class Iso6937Converter {
|
|
public:
|
|
static TQString toUtf8(const TQCString& text);
|
|
|
|
private:
|
|
static bool hasNext(unsigned int pos, unsigned int len);
|
|
static bool isAscii(unsigned char c);
|
|
static bool isCombining(unsigned char c);
|
|
|
|
static TQChar getChar(unsigned char c);
|
|
static TQChar getCombiningChar(unsigned int c);
|
|
};
|
|
|
|
} // end namespace
|
|
|
|
#endif
|