! Constructs a data point with key and all values set to zero. */
| 24433 | Constructs a data point with key and all values set to zero. |
| 24434 | */ |
| 24435 | QCPStatisticalBoxData::QCPStatisticalBoxData() : |
| 24436 | key(0), |
| 24437 | minimum(0), |
| 24438 | lowerQuartile(0), |
| 24439 | median(0), |
| 24440 | upperQuartile(0), |
| 24441 | maximum(0) |
| 24442 | { |
| 24443 | } |
| 24444 | |
| 24445 | /*! |
| 24446 | Constructs a data point with the specified \a key, \a minimum, \a lowerQuartile, \a median, \a |
nothing calls this directly
no outgoing calls
no test coverage detected