Example #1
0
 public QwertyTypist(IToneMapper toneMapper)
 {
     leftHand  = new LeftHand();
     rightHand = new RightHand();
     bothHands = new List <IHand> {
         leftHand, rightHand
     };
     layout     = new QwertyLayout();
     ToneMapper = toneMapper;
     characterToLayoutMapper = new CharacterToQwertyLayoutMapper();
 }
Example #2
0
 public VietnameseCharacterExpander(IToneMapper toneMapper)
 {
     ToneMapper = toneMapper;
 }