Blame view

src/ParamOutputImpl/Plot/XSeriesProperties.cc 377 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
/*
 * 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;
	out_ << prefix_ << "xAxisId=" << getAxisId() << std::endl;
}

}  /* namespace plot */