/* * 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, bool isStandalone) : DecoratorPlot(manager, panel, isStandalone, new StatusBarDecorator(manager, this)) { setHeightFixed(true); } StatusPlot::~StatusPlot() { } } /* namespace plot */