| 58 | } |
| 59 | |
| 60 | void MakePhysicalDimensionList(const mdf::IXmlNode &root, |
| 61 | mdf::detail::BlockPropertyList &dest) { |
| 62 | mdf::IXmlNode::ChildList list; |
| 63 | root.GetChildList(list); |
| 64 | if (list.empty()) { |
| 65 | return; |
| 66 | } |
| 67 | dest.emplace_back("", "", "", mdf::detail::BlockItemType::BlankItem); |
| 68 | dest.emplace_back("Physical Dimensions", "", "", |
| 69 | mdf::detail::BlockItemType::HeaderItem); |
| 70 | for (const auto &c : list) { |
| 71 | MakePhysicalDimension(*c, dest); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void MakeUnitGroup(const mdf::IXmlNode &pd, |
| 76 | mdf::detail::BlockPropertyList &dest) { |
no test coverage detected