ColorSeriesProperties.cc 462 Bytes
/*
 * 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 */