blob: 6400bbd94f16e02b9c51be1befa9960c0bc3f6c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef HEBREWMCIM_H
#define HEBREWMCIM_H
/**
* Title: Keyboard mapping for Michigan-Claremont Hebrew input
* Description:
* Copyright: Copyright (c) 2001 CrossWire Bible Society under the terms of the GNU GPL
* Company:
* @author Troy A. Griffitts
* @version 1.0
*/
#include <swinputmeth.h>
#include <map>
class HebrewMCIM : public SWInputMethod {
void init();
int subst[255];
map<int, int> subst2[12];
map<int, int*> multiChars;
public:
HebrewMCIM();
int *translate(char in);
};
#endif
|