More text implementations

Former-commit-id: 4b664aaf36
This commit is contained in:
2023-01-11 11:08:11 -08:00
parent 94dec52cae
commit 2bd5aa55f8
16 changed files with 160 additions and 31 deletions

View File

@@ -0,0 +1,13 @@
#ifndef _CWORDBREAKTABLES
#define _CWORDBREAKTABLES
#include <types.h>
class CWordBreakTables {
public:
static int GetBeginRank(wchar_t ch);
static int GetEndRank(wchar_t ch);
};
#endif // _CWORDBREAKTABLES