ML Reference
MeVis/Foundation/Sources/MLUtilities/mlUnicodeCodePoints.h
Go to the documentation of this file.
00001 // **InsertLicense** code
00002 //----------------------------------------------------------------------------------
00004 
00009 //----------------------------------------------------------------------------------
00010 #ifndef __mlUnicodeCodePoints_H
00011 #define __mlUnicodeCodePoints_H
00012 
00013 #include "mlTypeDefs.h"
00014 
00015 namespace ml
00016 {
00017   namespace Unicode
00018   {
00019     // U+0080 - U+00FF (C1 controls and Latin-1 supplement)
00020     const MLuint32 DegreeSign       = 0x00B0;
00021     const MLuint32 SuperscriptTwo   = 0x00B2;
00022     const MLuint32 SuperscriptThree = 0x00B3;
00023     const MLuint32 SuperscriptOne   = 0x00B9;
00024 
00025     // U+02B0 - U+02FF ( Spacing Modifier Letters )
00026     // Fallback for Superscript Minus on XP
00027     const MLuint32 ModifierLetterMacron = 0x02C9; 
00028 
00029     // U+2070 - U+209F (Superscripts and Subscripts)
00030     const MLuint32 SuperscriptMinus = 0x207B;
00031 
00032     // U+2190 - U+21FF (Arrows)
00033     const MLuint32 AntiClockwiseOpenCircleArrow = 0x21BA;
00034     const MLuint32 ClockwiseOpenCircleArrow     = 0x21BB;
00035   }
00036 }
00037 
00038 #endif // __mlUnicodeCodePoints_H