#include "KDChartLineAttributes.h"
#include <QDebug>
#include <KDABLibFakes>

Go to the source code of this file.
Defines | |
| #define | d d_func() |
Functions | |
| QDebug | operator<< (QDebug dbg, const KDChart::LineAttributes &a) |
| #define d d_func() |
Definition at line 31 of file KDChartLineAttributes.cpp.
| QDebug operator<< | ( | QDebug | dbg, | |
| const KDChart::LineAttributes & | a | |||
| ) |
Definition at line 136 of file KDChartLineAttributes.cpp.
References KDChart::LineAttributes::areaBoundingDataset(), KDChart::LineAttributes::displayArea(), and KDChart::LineAttributes::transparency().
00137 { 00138 dbg << "KDChart::LineAttributes(" 00139 // MissingValuesPolicy missingValuesPolicy; 00140 << "bool="<<a.displayArea() 00141 << "transparency="<<a.transparency() 00142 << "areaBoundingDataset="<<a.areaBoundingDataset() 00143 << ")"; 00144 return dbg; 00145 00146 }
1.5.4