00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef QWT_ARRAY_H
00013 #define QWT_ARRAY_H
00014
00015 #include "qwt_global.h"
00016
00021 #if QT_VERSION < 0x040000
00022 #include <qmemarray.h>
00023 #define QwtArray QMemArray
00024 #else
00025 #include <qvector.h>
00026 #define QwtArray QVector
00027 #endif
00028
00029 #endif