Blame view

src/ParamOutputImpl/Plot/StatusPlot/StatusPlot.cc 476 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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,
8c860e4f   Benjamin Renard   Rework for tickpl...
18
				new StatusBarDecorator(manager, this)) {
1d1a3b8a   Erdogan Furkan   Done for tickPlot...
19
	setHeightFixed(true);
fbe3c2bb   Benjamin Renard   First commit
20
21
22
23
24
25
}

StatusPlot::~StatusPlot() {
}

} /* namespace plot */