| 60 | {} |
| 61 | |
| 62 | QuickInfo PcdReader::inspect() |
| 63 | { |
| 64 | QuickInfo qi; |
| 65 | |
| 66 | initialize(); |
| 67 | |
| 68 | for (auto i : m_header.m_fields) |
| 69 | qi.m_dimNames.push_back(i.m_label); |
| 70 | qi.m_pointCount = m_header.m_pointCount; |
| 71 | qi.m_valid = true; |
| 72 | |
| 73 | return qi; |
| 74 | } |
| 75 | |
| 76 | void PcdReader::ready(PointTableRef table) |
| 77 | { |
nothing calls this directly
no test coverage detected