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