StatusPlot.hh
727 Bytes
/*
* StatusPlot.hh
*
* Created on: 12 janv. 2015
* Author: AKKA
*/
#ifndef STATUSPLOT_HH_
#define STATUSPLOT_HH_
#include "DecoratorPlot.hh"
#include "PanelPlotOutput.hh"
#include "StatusPlotNode.hh"
#include "Time/TimePlot.hh"
namespace plot {
/**
* @brief Plot that may draw 2 kinds of plots :
* - a standalone tick plot with a dedicated (and hidden) time axis
* - a tick plot related to a time plot (in the same panel) that uses
* the time plot time axis
*
*/
class StatusPlot: public DecoratorPlot {
public:
StatusPlot(AMDA::Parameters::ParameterManager& manager,
boost::shared_ptr<Panel> panel, bool isStandalone);
virtual ~StatusPlot();
};
} /* namespace plot */
#endif /* STATUSPLOT_HH_ */