! Constructs a data point with key and all values set to zero. */
| 25191 | Constructs a data point with key and all values set to zero. |
| 25192 | */ |
| 25193 | QCPStatisticalBoxData::QCPStatisticalBoxData() : |
| 25194 | key(0), |
| 25195 | minimum(0), |
| 25196 | lowerQuartile(0), |
| 25197 | median(0), |
| 25198 | upperQuartile(0), |
| 25199 | maximum(0) |
| 25200 | { |
| 25201 | } |
| 25202 | |
| 25203 | /*! |
| 25204 | 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