| 2247 | */ |
| 2248 | public: |
| 2249 | static string_t patch_toText(const Patches &patches) { |
| 2250 | string_t text; |
| 2251 | for (typename Patches::const_iterator cur_patch = patches.begin(); cur_patch != patches.end(); ++cur_patch) { |
| 2252 | text += (*cur_patch).toString(); |
| 2253 | } |
| 2254 | return text; |
| 2255 | } |
| 2256 | |
| 2257 | /** |
| 2258 | * Parse a textual representation of patches and return a List of Patch |
no test coverage detected