/* * AxisLegend.hh * * Created on: 01 jun. 2018 * Author: AKKA */ #ifndef AXISLEGEND_HH_ #define AXISLEGEND_HH_ #include "Label.hh" #include #include namespace plot { class AxisLegend { public: AxisLegend() : _color(0, 0, 0), _font(Font("", 0)) { } AxisLegend(Font font) : _color(0, 0, 0), _font(font) { } AxisLegend(Font font, Color color) : _color(color), _font(font) { } AxisLegend(const AxisLegend& legend) : _labels(legend._labels), _color(legend._color), _font(legend._font) { } virtual ~AxisLegend() { _labels.clear(); } const std::vector