You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
309 B

#ifndef _QUOTE_FACTORY_H_
#define _QUOTE_FACTORY_H_
#include <qwt_series_data.h>
class QuoteFactory
{
public:
enum Stock
{
BMW,
Daimler,
Porsche,
NumStocks
};
static QVector<QwtOHLCSample> samples2010( Stock );
static QString title( Stock );
};
#endif