| 64 | } |
| 65 | |
| 66 | void ParsedList::makeList(PathName& list) const |
| 67 | { |
| 68 | fb_assert(this->hasData()); |
| 69 | list = (*this)[0]; |
| 70 | for (unsigned i = 1; i < this->getCount(); ++i) |
| 71 | { |
| 72 | list += ' '; |
| 73 | list += (*this)[i]; |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | void ParsedList::mergeLists(PathName& list, const PathName& serverList, const PathName& clientList) |
| 78 | { |
no test coverage detected