blob: 9edf9cc3fec740c58b9eaf97dcc1d18aa7f9cada (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* $Id: kchartcolorarray.h 376098 2005-01-07 14:13:50Z raphael $
*
* Kalle Dalheimer <[email protected]>
*/
#ifndef KCHARTCOLORARRAY
#define KCHARTCOLORARRAY
#include <tqvaluevector.h>
#include <tqcolor.h>
namespace KChart
{
typedef TQValueVector<TQColor> KChartColorArray;
} //KChart namespace
#endif
|