prime/include/Kyoto/Text/CWordBreakTables.hpp
Phillip Stephens 2bd5aa55f8 More text implementations
Former-commit-id: 4b664aaf36bddf6835223a50eb45a7bca3795509
2023-01-11 11:08:11 -08:00

14 lines
215 B
C++

#ifndef _CWORDBREAKTABLES
#define _CWORDBREAKTABLES
#include <types.h>
class CWordBreakTables {
public:
static int GetBeginRank(wchar_t ch);
static int GetEndRank(wchar_t ch);
};
#endif // _CWORDBREAKTABLES