Blame view

src/ParamOutputImpl/Plot/InstantPlot/InstantSeriesProperties.cc 463 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * InstantSerieProperties.cc
 *
 *  Created on: 13 déc. 2013
 *      Author: CS
 */

#include "InstantSeriesProperties.hh"

namespace plot {

/*
 * Dumps properties for test.
 */
void InstantSeriesProperties::dump(std::ostream& out_, std::string& prefix_){
	out_ << "[INSTANT SERIES PROPERTIES]" << std::endl;
	out_ << prefix_ << "tableOnXAxis=" << getTableOnXAxis() << std::endl;
	out_ << prefix_ << "id=" << getId() << std::endl;
}

}  /* namespace plot */