| 44 | } |
| 45 | |
| 46 | void AddonManager::PostprocessAddons(bool reportSent) { |
| 47 | // Loop through all addons and process any that match our type |
| 48 | for (std::vector<AddonBlock*>::iterator it = addons.begin(); it != addons.end(); it++) { |
| 49 | (*it)->ptr->postprocess(reportSent); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | // HACK : change this for NeoPicoLED |
| 54 | GPAddon * AddonManager::GetAddon(std::string name) { // hack for NeoPicoLED |
no test coverage detected