| 37 | } |
| 38 | |
| 39 | void AddonManager::ProcessAddons() { |
| 40 | // Loop through all addons and process any that match our type |
| 41 | for (std::vector<AddonBlock*>::iterator it = addons.begin(); it != addons.end(); it++) { |
| 42 | (*it)->ptr->process(); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | void AddonManager::PostprocessAddons(bool reportSent) { |
| 47 | // Loop through all addons and process any that match our type |
no test coverage detected