| 73 | }; |
| 74 | |
| 75 | void ForEachObject(Classificator const & c, vector<string_view> const & path, GeomType geomType, int rules) |
| 76 | { |
| 77 | uint32_t const type = c.GetTypeByPath(path); |
| 78 | ClassifObject const * pObj = c.GetObject(type); |
| 79 | |
| 80 | DoCheckStyles doCheck(c, geomType, rules); |
| 81 | doCheck(pObj, type); |
| 82 | pObj->ForEachObjectInTree(doCheck, type); |
| 83 | } |
| 84 | |
| 85 | void ForEachObject(Classificator const & c, string const & name, GeomType geomType, int rules) |
| 86 | { |
no test coverage detected