blob: 29b9a00f4b7fc47ca4d878ab7a69d9f164bc8cc8 (
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
|
/*
* 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
write(const LBData &lbdata);
private:
bool _debug;
string _output_path;
};
#endif //__LBOUTPUT_HH__
|