| 37 | #include "NetJob.h" |
| 38 | |
| 39 | auto NetJob::addNetAction(NetAction::Ptr action) -> bool |
| 40 | { |
| 41 | action->m_index_within_job = m_queue.size(); |
| 42 | m_queue.append(action); |
| 43 | |
| 44 | action->setNetwork(m_network); |
| 45 | |
| 46 | return true; |
| 47 | } |
| 48 | |
| 49 | void NetJob::startNext() |
| 50 | { |
no test coverage detected