Arthur Ganger / Braille_In
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Braille_In.h Source File

Braille_In.h

00001 #ifndef _AG_BRAILLE_IN_H_
00002 #define _AG_BRAILLE_IN_H_
00003 
00004 
00005 
00006 
00007 class BrailleInput {
00008 
00009 public:
00010 char* translateBraille(char* input, int numChars);
00011 char* translateBraille(const char* input, int numChars);
00012 char output[512];
00013 
00014 private:
00015 char translateBrailleChar(char input, bool& NextCaps);
00016 
00017 
00018 
00019 
00020 };
00021 
00022 
00023 
00024 
00025 
00026 #endif