26 lines
682 B
C++
26 lines
682 B
C++
|
|
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include "gd/common/init_flags.h"
|
|
|
|
namespace bluetooth {
|
|
namespace common {
|
|
|
|
bool InitFlags::btm_dm_flush_discovery_queue_on_search_cancel = false;
|
|
bool InitFlags::logging_debug_enabled_for_all = false;
|
|
bool InitFlags::leaudio_targeted_announcement_reconnection_mode = false;
|
|
std::unordered_map<std::string, bool>
|
|
InitFlags::logging_debug_explicit_tag_settings = {};
|
|
void InitFlags::Load(const char** flags) {}
|
|
void InitFlags::SetAll(bool value) {
|
|
InitFlags::logging_debug_enabled_for_all = value;
|
|
}
|
|
void InitFlags::SetAllForTesting() {
|
|
InitFlags::logging_debug_enabled_for_all = true;
|
|
}
|
|
|
|
} // namespace common
|
|
} // namespace bluetooth
|