1 /****************************************************************************
2 * RRDtool 1.2.12 Copyright by Tobi Oetiker, 1997-2005
3 ****************************************************************************
4 * rrd_xport.h contains XML related constants
5 ****************************************************************************/
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 #ifndef _RRD_XPORT_H
11 #define _RRD_XPORT_H
13 #define XML_ENCODING "ISO-8859-1"
14 #define ROOT_TAG "xport"
15 #define META_TAG "meta"
16 #define META_START_TAG "start"
17 #define META_STEP_TAG "step"
18 #define META_END_TAG "end"
19 #define META_ROWS_TAG "rows"
20 #define META_COLS_TAG "columns"
21 #define LEGEND_TAG "legend"
22 #define LEGEND_ENTRY_TAG "entry"
23 #define DATA_TAG "data"
24 #define DATA_ROW_TAG "row"
25 #define COL_TIME_TAG "t"
26 #define COL_DATA_TAG "v"
29 #endif
32 #ifdef __cplusplus
33 }
34 #endif