Blame view

src/ParamOutputImpl/Plot/ColorSeriesProperties.cc 462 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
22
23
/*
 * ColorSerieProperties.cc
 *
 *  Created on: 15 nov. 2014
 *      Author: AKKA
 */

#include "ColorSeriesProperties.hh"

#include <sstream>

namespace plot {

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

}  /* namespace plot */