xref: /haiku/src/apps/debuganalyzer/gui/chart/ChartLegend.cpp (revision 2222d0559df303a9846a2fad53741f8b20b14d7c)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include "chart/ChartLegend.h"
7 
8 
9 // #pragma mark - ChartLegend
10 
11 
12 ChartLegend::ChartLegend(int32 level)
13 	:
14 	fLevel(level)
15 {
16 }
17 
18 
19 ChartLegend::~ChartLegend()
20 {
21 }
22 
23 
24 // #pragma mark - ChartLegendRenderer
25 
26 
27 ChartLegendRenderer::~ChartLegendRenderer()
28 {
29 }
30