| 165 | } |
| 166 | |
| 167 | std::vector<std::wstring> splitMultiOptions(const std::wstring& str) |
| 168 | { |
| 169 | std::vector<std::wstring> sVec; |
| 170 | boost::split(sVec, str, boost::is_any_of(L",")); |
| 171 | return sVec; |
| 172 | } |
| 173 | |
| 174 | Bunit parseBUnit(const std::wstring& str) |
| 175 | { |
no test coverage detected