Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
24 lines
412 B
C
24 lines
412 B
C
#ifndef REPORT_H
|
|
#define REPORT_H
|
|
|
|
#include <time.h>
|
|
#include "DbmsDefs.h"
|
|
|
|
typedef struct Report
|
|
{
|
|
char pe[SHEF_PE_LEN + 1];
|
|
long dur;
|
|
char ts[SHEF_TS_LEN + 1];
|
|
char extremum[SHEF_EX_LEN + 1];
|
|
float probability;
|
|
|
|
char shef_qual_code[SHEF_QC_LEN + 1];
|
|
long quality_code;
|
|
|
|
double value;
|
|
time_t validtime;
|
|
time_t basistime;
|
|
} Report;
|
|
|
|
|
|
#endif
|