| 158 | |
| 159 | |
| 160 | Dimension::Id PointLayout::findDim(const std::string& name) const |
| 161 | { |
| 162 | Dimension::Id id = Dimension::id(name); |
| 163 | if (dimType(id) != Dimension::Type::None) |
| 164 | return id; |
| 165 | return findProprietaryDim(name); |
| 166 | } |
| 167 | |
| 168 | |
| 169 | Dimension::Id |
no test coverage detected