Blame view

src/ParamOutputImpl/Plot/XSeriesProperties.cc 368 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * XSerieProperties.cc
 *
 *  Created on: 13 déc. 2013
 *      Author: CS
 */

#include "XSeriesProperties.hh"

namespace plot {

/*
 * Dumps properties for test.
 */
void XSeriesProperties::dump(std::ostream& out_, std::string& prefix_){
	out_ << "[X SERIES PROPERTIES]" << std::endl;
c46af5a8   Benjamin Renard   Implements multi ...
17
	out_ << prefix_ << "id=" << getId() << std::endl;
fbe3c2bb   Benjamin Renard   First commit
18
19
20
}

}  /* namespace plot */