1 
2 
3 #include "common/init_flags.h"
4 
5 #include <map>
6 #include <string>
7 
8 namespace bluetooth {
9 namespace common {
10 
11 bool InitFlags::logging_debug_enabled_for_all = false;
12 bool InitFlags::leaudio_targeted_announcement_reconnection_mode = true;
13 std::unordered_map<std::string, bool>
14     InitFlags::logging_debug_explicit_tag_settings = {};
Load(const char ** flags)15 void InitFlags::Load(const char** flags) {}
SetAll(bool value)16 void InitFlags::SetAll(bool value) {
17   InitFlags::logging_debug_enabled_for_all = value;
18 }
SetAllForTesting()19 void InitFlags::SetAllForTesting() {
20   InitFlags::logging_debug_enabled_for_all = true;
21 }
22 
23 }  // namespace common
24 }  // namespace bluetooth
25