1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef DEFAULT_CHART_AXIS_LEGEND_SOURCE_H
6#define DEFAULT_CHART_AXIS_LEGEND_SOURCE_H
7
8#include "chart/ChartAxisLegendSource.h"
9
10
11class DefaultChartAxisLegendSource : public ChartAxisLegendSource {
12public:
13	virtual	int32				GetAxisLegends(const ChartDataRange& range,
14									ChartLegend** legends, double* values,
15									int32 maxLegends);
16};
17
18
19#endif	// DEFAULT_CHART_AXIS_LEGEND_SOURCE_H
20