Ravi Teja | a49895e | 2020-06-16 03:57:58 -0500 | [diff] [blame] | 1 | #include "config.h" |
2 | |||||
3 | #include "ca_cert_entry.hpp" | ||||
4 | |||||
5 | #include "ca_certs_manager.hpp" | ||||
6 | |||||
Nan Zhou | e1289ad | 2021-12-28 11:02:56 -0800 | [diff] [blame] | 7 | namespace ca::cert |
Ravi Teja | a49895e | 2020-06-16 03:57:58 -0500 | [diff] [blame] | 8 | { |
9 | |||||
10 | void Entry::delete_() | ||||
11 | { | ||||
12 | // Remove entry D-bus object | ||||
13 | manager.erase(id); | ||||
14 | } | ||||
Nan Zhou | e1289ad | 2021-12-28 11:02:56 -0800 | [diff] [blame] | 15 | } // namespace ca::cert |