LibCore+LibConfig+ConfigServer: Add Config::{add,remove}_group()

Plumbs synchronous calls for adding and removing group entries to
config files. This is useful for services like SystemServer which
default to group names for executable paths, and for removing all
keys at once.
This commit is contained in:
thankyouverycool 2022-09-23 09:45:05 -04:00 committed by Ali Mohammad Pur
commit c34f2e75e9
Notes: sideshowbarker 2024-07-17 23:02:37 +09:00
10 changed files with 97 additions and 0 deletions

View file

@ -54,6 +54,7 @@ public:
ErrorOr<void> sync();
void add_group(String const& group);
void remove_group(String const& group);
void remove_entry(String const& group, String const& key);