InstantSeriesProperties.cc
463 Bytes
/*
* 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 */