| 326 | } |
| 327 | |
| 328 | void |
| 329 | Client::resolved(const Path & path, |
| 330 | bool recurse) |
| 331 | { |
| 332 | Pool pool; |
| 333 | svn_error_t * error = |
| 334 | svn_client_resolved(path.c_str(), |
| 335 | recurse, |
| 336 | *m_context, |
| 337 | pool); |
| 338 | |
| 339 | if (error != nullptr) |
| 340 | throw ClientException(error); |
| 341 | } |
| 342 | |
| 343 | void |
| 344 | Client::doExport(const Path & from_path, |