| 54 | point_count_t m_cnt; |
| 55 | |
| 56 | DimIndex() : m_srcId(Dimension::Id::Unknown), |
| 57 | m_candId(Dimension::Id::Unknown), |
| 58 | m_min((std::numeric_limits<double>::max)()), |
| 59 | m_max((std::numeric_limits<double>::lowest)()), |
| 60 | m_avg(0.0), m_cnt(0) |
| 61 | {} |
| 62 | }; |
| 63 | typedef std::map<std::string, DimIndex> DimIndexMap; |
| 64 |
nothing calls this directly
no outgoing calls
no test coverage detected