Blame view

src/ParamOutputImpl/Plot/TickPlot/TickPlot.cc 451 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * TickPlot.cc
 *
 *  Created on: 16 janv. 2014
 *      Author: CS
 */

#include "TickPlot.hh"
#include "TickMarkDecorator.hh"
#include "PlotLogger.hh"


namespace plot {

TickPlot::TickPlot(AMDA::Parameters::ParameterManager& manager,
		boost::shared_ptr<Panel> panel, bool isStandalone) :
		DecoratorPlot(manager, panel, isStandalone,
8c860e4f   Benjamin Renard   Rework for tickpl...
18
				new TickMarkDecorator(this)) {
1d1a3b8a   Erdogan Furkan   Done for tickPlot...
19
	setHeightFixed(true);
fbe3c2bb   Benjamin Renard   First commit
20
21
22
23
24
25
}

TickPlot::~TickPlot() {
}

} /* namespace plot */