| 105 | |
| 106 | |
| 107 | int DynamicColorManager::addColor(DynamicColor* color) { |
| 108 | active.insert(color); |
| 109 | colors.push_back(color); |
| 110 | return ((int)colors.size() - 1); |
| 111 | } |
| 112 | |
| 113 | |
| 114 | int DynamicColorManager::findColor(const std::string& name) const { |
no test coverage detected