summaryrefslogtreecommitdiffstats
path: root/src/SimpTradConverter.h
blob: daa40e53dbf7bc911908ea8e94857d75a03a7f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __SIMP_TRAD_CONVERTER_H_
#define __SIMP_TRAD_CONVERTER_H_

#include <glib.h>
#include "String.h"

namespace PY {

class SimpTradConverter {
public:
    static void simpToTrad (const gchar *in, String &out);
};

};
#endif