| 69 | } |
| 70 | |
| 71 | virtual CommandResult Dec(const char *uri, const char *name, const char *value) { |
| 72 | sticker_database.DecValue(sticker_type, |
| 73 | ValidateUri(uri).c_str(), |
| 74 | name, |
| 75 | value); |
| 76 | |
| 77 | return CommandResult::OK; |
| 78 | } |
| 79 | |
| 80 | virtual CommandResult Delete(const char *uri, const char *name) { |
| 81 | std::string validated_uri = ValidateUri(uri); |
no test coverage detected