Initial commit.
[qbase64.git] / alphabet.h~
blob6cca98e7ac4947afe2e770459ecb92fb2b04d31a
1 #ifndef ALPHABET_H
2 #define ALPHABET_H
3   /** 
4    * @def ALPHABET_SIZE 
5    * alphabet size (in base64 encoding this is \e equal to 64)
6    *
7    */
8   #define ALPHABET_SIZE 64
9   
10   /**
11    * @namespace base64
12    * groups base64 manipulation methods and objects
13    *
14    */
15   namespace base64
16   {
17     static const char alphabet[ALPHABET_SIZE] =
18     {
19     'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
20     'I', 'J', 'K', 'L', 'M' ,'N', 'O', 'P',
21     'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
22     'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 
23     'g', 'h', 'i', 'j', 'k', 'l', 'm' ,'n', 
24     'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 
25     'w', 'x', 'y', 'z', '0', '1', '2', '3',
26     '4', '5', '6', '7', '8', '9', '+', '/'
27     };   
28   };
29 #endif