blob: f79c0244dab5a16f15d718be5fe77d1db72fdff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Module: lboutput.hh
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation.
*/
#ifndef __LBOUTPUT_HH__
#define __LBOUTPUT_HH__
#include "lbdata.hh"
using namespace std;
class LBOutput
{
public:
LBOutput(bool debug, string &output_path) : _debug(debug), _output_path(output_path) {}
~LBOutput() {}
void
shutdown();
void
write(const LBData &lbdata);
private:
bool _debug;
string _output_path;
};
#endif //__LBOUTPUT_HH__
|