| 154 | } |
| 155 | |
| 156 | bool Form::SetSupplement(const std::string& key, const std::string& value) |
| 157 | { |
| 158 | if (m_Supplements.find(key) == m_Supplements.end()) |
| 159 | return false; |
| 160 | |
| 161 | m_Supplements[key] = value; |
| 162 | |
| 163 | return true; |
| 164 | } |
| 165 | |
| 166 | const std::map<std::string, std::string>& Form::GetSupplements() const |
| 167 | { |
no test coverage detected