| 148 | } |
| 149 | |
| 150 | void Form::AddSupplement(const std::string& key) |
| 151 | { |
| 152 | if (m_Supplements.find(key) == m_Supplements.end()) |
| 153 | m_Supplements[key] = ""; |
| 154 | } |
| 155 | |
| 156 | bool Form::SetSupplement(const std::string& key, const std::string& value) |
| 157 | { |
no test coverage detected