You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
610 B

#include <map>
#include <string>
#include "gd/common/init_flags.h"
namespace bluetooth {
namespace common {
bool InitFlags::logging_debug_enabled_for_all = false;
bool InitFlags::leaudio_targeted_announcement_reconnection_mode = true;
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