libdballe 9.6
bulletin.h
1#ifndef DBALLE_MSG_BULLETIN_H
2#define DBALLE_MSG_BULLETIN_H
3
4#include <cstdio>
5
6namespace wreport {
7struct Bulletin;
8}
9
10namespace dballe {
11namespace msg {
12
22{
23protected:
24 bool first = true;
25 FILE* out;
26
27public:
28 BulletinCSVWriter(FILE* out);
30
31 void output_bulletin(const wreport::Bulletin& bulletin);
32};
33
34}
35}
36
37#endif
Write bulletins in CSV format to an output stream.
Definition: bulletin.h:22