#include <qglobal.h>
#include "kdchart_export.h"
#include <QtAlgorithms>
#include <algorithm>
#include <Qt>
Include dependency graph for KDChartGlobal.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
|
Definition at line 46 of file KDChartGlobal.h. |
|
Value: protected: \ class Private; \ inline Private * d_func(); \ inline const Private * d_func() const; \ explicit inline X( Private * ); \ explicit inline X( Private *, QWidget *, PLANE * ); \ private: \ void init(); Definition at line 173 of file KDChartGlobal.h. |
|
Value: protected: \ class Private; \ Private * d_func() { return _d; } \ const Private * d_func() const { return _d; } \ explicit inline X( Private * ); \ private: \ void init(); \ Private * _d; Definition at line 117 of file KDChartGlobal.h. |
|
Value: protected: \ class Private; \ Private * d_func() { return _d; } \ const Private * d_func() const { return _d; } \ explicit inline X( Private *, QWidget* ); \ private: \ void init(); \ Private * _d; Definition at line 140 of file KDChartGlobal.h. |
|
Value: public: \ inline void swap( X & other ) { qSwap( _d, other._d ); } \ protected: \ class Private; \ Private * d_func() { return _d; } \ const Private * d_func() const { return _d; } \ private: \ void init(); \ Private * _d; Definition at line 94 of file KDChartGlobal.h. |
|
Value: protected: \ class Private; \ inline Private * d_func(); \ inline const Private * d_func() const; \ explicit inline X( Private * ); \ private: \ void init(); Definition at line 60 of file KDChartGlobal.h. |
|
Value: protected: \ class Private; \ inline Private * d_func(); \ inline const Private * d_func() const; \ explicit inline X( Private *, ParentType ); \ private: \ void init(); Definition at line 81 of file KDChartGlobal.h. |
|
Definition at line 91 of file KDChartGlobal.h. |
|
Value: protected: \ void doSwap( X& other ) \ { qSwap( _d, other._d); } Definition at line 224 of file KDChartGlobal.h. |
|
Definition at line 229 of file KDChartGlobal.h. |
|
Value: template <> inline void qSwap<X>( X & lhs, X & rhs ) \ { lhs.swap( rhs ); } \ namespace std { \ template <> inline void swap<X>( X & lhs, X & rhs ) \ { lhs.swap( rhs ); } \ } Definition at line 208 of file KDChartGlobal.h. |
|
Definition at line 221 of file KDChartGlobal.h. |
|
Value: inline CLASS::CLASS( Private * p ) \ : PARENT( p ) { init(); } \ inline CLASS::Private * CLASS::d_func() \ { return static_cast<Private*>( PARENT::d_func() ); } \ inline const CLASS::Private * CLASS::d_func() const \ { return static_cast<const Private*>( PARENT::d_func() ); } Definition at line 152 of file KDChartGlobal.h. |
|
Value: inline CLASS::CLASS( Private * p ) \ : PARENT( p ) { init(); } \ inline CLASS::CLASS( \ Private * p, QWidget* parent, PLANE * plane ) \ : PARENT( p, parent, plane ) { init(); } \ inline CLASS::Private * CLASS::d_func() \ { return static_cast<Private *>( PARENT::d_func() ); } \ inline const CLASS::Private * CLASS::d_func() const \ { return static_cast<const Private *>( PARENT::d_func() ); } Definition at line 184 of file KDChartGlobal.h. |
|
Value: inline CLASS::CLASS( Private * p, Chart* parent ) \ : BASEPLANE( p, parent ) { init(); } \ inline CLASS::Private * CLASS::d_func() \ { return static_cast<Private *>( BASEPLANE::d_func() ); } \ inline const CLASS::Private * CLASS::d_func() const \ { return static_cast<const Private *>( BASEPLANE::d_func() ); } Definition at line 196 of file KDChartGlobal.h. |
|
Definition at line 42 of file KDChartGlobal.h.
00042 {
00043 return *o;
00044 }
|
|
Definition at line 37 of file KDChartGlobal.h.
00037 {
00038 return o;
00039 }
|