Add files from zip
This commit is contained in:
30
examples/stockchart/QuoteFactory.h
Normal file
30
examples/stockchart/QuoteFactory.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*****************************************************************************
|
||||
* Qwt Examples - Copyright (C) 2002 Uwe Rathmann
|
||||
* This file may be used under the terms of the 3-clause BSD License
|
||||
*****************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QtGlobal>
|
||||
|
||||
class QwtOHLCSample;
|
||||
class QString;
|
||||
|
||||
#if QT_VERSION < 0x060000
|
||||
template< typename T > class QVector;
|
||||
#endif
|
||||
|
||||
namespace QuoteFactory
|
||||
{
|
||||
enum Stock
|
||||
{
|
||||
BMW,
|
||||
Daimler,
|
||||
Porsche,
|
||||
|
||||
NumStocks
|
||||
};
|
||||
|
||||
QVector< QwtOHLCSample > samples2010( Stock );
|
||||
QString title( Stock );
|
||||
}
|
||||
Reference in New Issue
Block a user