* @brief Re-wrap an inner CommandResponse under a new outer id (chained calls). */
| 52 | * @brief Re-wrap an inner CommandResponse under a new outer id (chained calls). |
| 53 | */ |
| 54 | static API::CommandResponse rewrap(const QString& outerId, API::CommandResponse inner) |
| 55 | { |
| 56 | inner.id = outerId; |
| 57 | return inner; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * @brief Pack an inner CommandResponse into a step record for steps[] arrays. |
no outgoing calls
no test coverage detected