Go to the documentation of this file.00001 #ifndef DABC_RECORDS_STRINGS__H
00002 #define DABC_RECORDS_STRINGS__H
00003
00004 #include "records.h"
00005
00006 #ifndef __cpluscplus
00007 #define _DABC_HISTOGRAM_RECORD_FORMAT_ "L:1;F:1;F:1;C:32;C:32;C:16;L"
00008 #define _DABC_STATUS_RECORD_FORMAT_ "L:1;C:16;C:16"
00009 #define _DABC_INFO_RECORD_FORMAT_ "L:1;C:16;C:128"
00010 #define _DABC_RATE_RECORD_FORMAT_ "F:1;L:1;F:1;F:1;F:1;F:1;C:16;C:16;C:16"
00011
00012 #define _DABC_COLOR_RED_ "Red"
00013 #define _DABC_COLOR_GREEN_ "Green"
00014 #define _DABC_COLOR_BLUE_ "Blue"
00015 #define _DABC_COLOR_CYAN_ "Cyan"
00016 #define _DABC_COLOR_YELLOW_ "Yellow"
00017 #define _DABC_COLOR_MAGENTA_ "Magenta"
00018
00019 const char* HistogramRecDesc = _DABC_HISTOGRAM_RECORD_FORMAT_;
00020 const char* StatusRecDesc = _DABC_STATUS_RECORD_FORMAT_;
00021 const char* InfoRecDesc = _DABC_INFO_RECORD_FORMAT_;
00022 const char* RateRecDesc = _DABC_RATE_RECORD_FORMAT_;
00023
00024 const char* col_Red = _DABC_COLOR_RED_;
00025 const char* col_Green = _DABC_COLOR_GREEN_;
00026 const char* col_Blue = _DABC_COLOR_BLUE_;
00027 const char* col_Cyan = _DABC_COLOR_CYAN_;
00028 const char* col_Yellow = _DABC_COLOR_YELLOW_;
00029 const char* col_Magenta = _DABC_COLOR_MAGENTA_;
00030
00031 #endif
00032 #endif