| 1 | #include "KeyValueModel.h" |
| 2 | |
| 3 | KeyValueModel::KeyValueModel(const QString& key, const QString& value) |
| 4 | { |
| 5 | this->key = key; |
| 6 | this->value = value; |
| 7 | } |
| 8 | |
| 9 | const QString& KeyValueModel::getKey() const |
| 10 | { |
nothing calls this directly
no outgoing calls
no test coverage detected