MCPcopy Create free account
hub / github.com/cjcliffe/CubicSDR / removeGroup

Method removeGroup

src/BookmarkMgr.cpp:362–371  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

360}
361
362void BookmarkMgr::removeGroup(const std::string& group) {
363 std::lock_guard < std::recursive_mutex > lock(busy_lock);
364
365 auto i = bmData.find(group);
366
367 if (i != bmData.end()) {
368
369 bmData.erase(group);
370 }
371}
372
373void BookmarkMgr::renameGroup(const std::string& group, const std::string& ngroup) {
374 if (group == ngroup) {

Callers 1

doClickOKMethod · 0.80

Calls 1

findMethod · 0.80

Tested by

no test coverage detected