* @brief Add source- and destination paths. * @param [in] source Source path. * @param [in] destination Destination path. */
| 42 | * @param [in] destination Destination path. |
| 43 | */ |
| 44 | void ShellFileOperations::AddSourceAndDestination(const String &source, |
| 45 | const String &destination) |
| 46 | { |
| 47 | m_sources.push_back(source); |
| 48 | m_destinations.push_back(destination); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * @brief Add source path. |
no outgoing calls