| 54 | } |
| 55 | |
| 56 | inline bool Engine::ProcessingStep::hasInputAvailable() const |
| 57 | { |
| 58 | for (int i=0;i<m_input.size();i++) |
| 59 | if (!m_input[i].data->empty()) |
| 60 | return true; |
| 61 | return false; |
| 62 | } |
| 63 | |
| 64 | Engine::Engine() : |
| 65 | m_graph(NULL) { |
no test coverage detected