summaryrefslogtreecommitdiffstats
path: root/src/HalfFullConverter.h
blob: 7a18f6b84d78fe6fcf5ecaef5385937d045e88ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __PY_HALF_FULL_CONVERTER_H_
#define __PY_HALF_FULL_CONVERTER_H_

#include <glib.h>

namespace PY {

class HalfFullConverter {

public:
    static gunichar toFull (gunichar ch);
    static gunichar toHalf (gunichar ch);

private:
    const static guint m_table[][3];
};

};
#endif