| 210 | typedef std::vector<const View *> ViewPtrVec; |
| 211 | |
| 212 | StringUtils::StringVec GetViewNames(const ViewPtrVec & views) |
| 213 | { |
| 214 | StringUtils::StringVec viewNames; |
| 215 | for (const auto & view : views) |
| 216 | { |
| 217 | viewNames.push_back(view->m_name); |
| 218 | } |
| 219 | return viewNames; |
| 220 | } |
| 221 | |
| 222 | std::ostringstream GetDisplayViewPrefixErrorMsg(const std::string & display, const View & view) |
| 223 | { |
no test coverage detected