Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
StrCharAscii.h
Go to the documentation of this file.
1 //
4 //
5 
6 #ifndef _INC_StrCharAscii_H
7 #define _INC_StrCharAscii_H
8 #ifndef NO_PRAGMA_ONCE
9 #pragma once
10 #endif
11 
12 #include "StrChar.h"
13 
14 namespace Gray
15 {
17  {
20 
21  ASCII_NONE = -1, // No char was produced.
22 
23 #define StrCharASCII(a,b,c) ASCII_##b = a,
24 #include "StrCharAscii.tbl"
25 #undef StrCharASCII
26  };
27 }
28 
29 #endif
< The main namespace for all Core functions.
Definition: GrayCore.cpp:14
ASCII_TYPE
Definition: StrCharAscii.h:17
@ ASCII_NONE
Definition: StrCharAscii.h:21