##// END OF EJS Templates
Initial project refactor, xylinecharts...
Initial project refactor, xylinecharts * refactors pro files to include QCHART namespace * removes QWidget dependency * adds xylinechart to library * adds xylinechart example

File last commit:

r11:3456b7f2ae05
r11:3456b7f2ae05
Show More
qchartconfig.h
25 lines | 555 B | text/x-c | CLexer
#ifndef CHARTCONFIG_H
#define CHARTCONFIG_H
#define QCHART_VERSION_STR "1.0"
#define QCHART_VERSION 0x01
#if defined(QCHART_LIBRARY)
# define QCHART_EXPORT Q_DECL_EXPORT
#else
# define QCHART_EXPORT Q_DECL_IMPORT
#endif
#define QCHART_NAMESPACE QtChart
#ifdef QCHART_NAMESPACE
# define QCHART_BEGIN_NAMESPACE namespace QCHART_NAMESPACE {
# define QCHART_END_NAMESPACE }
# define QCHART_USE_NAMESPACE using namespace QCHART_NAMESPACE;
#else
# define QCHART_BEGIN_NAMESPACE
# define QCHART_END_NAMESPACE
# define QCHART_USE_NAMESPACE
#endif
#endif