Blame view

src/ParamOutputImpl/Plot/StatusPlot/StatusPlot.cc 467 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
24
/*
 * StatusPlot.cc
 *
 *  Created on: 12 janv. 2015
 *      Author: AKKA
 */

#include "StatusPlot.hh"
#include "StatusBarDecorator.hh"
#include "PlotLogger.hh"


namespace plot {

StatusPlot::StatusPlot(AMDA::Parameters::ParameterManager& manager,
		boost::shared_ptr<Panel> panel, bool isStandalone) :
		DecoratorPlot(manager, panel, isStandalone,
				new StatusBarDecorator(manager, isStandalone, this)) {
}

StatusPlot::~StatusPlot() {
}

} /* namespace plot */