#include "simplebluez/interfaces/GattService1.h"
using namespace SimpleBluez;
GattService1::GattService1(std::shared_ptr<SimpleDBus::Connection> conn, std::string path)
: SimpleDBus::Interface(conn, "org.bluez", path, "org.bluez.GattService1") {}
std::string GattService1::UUID() {
std::scoped_lock lock(_property_update_mutex);
return _uuid;
}
void GattService1::property_changed(std::string option_name) {
if (option_name == "UUID") {
std::scoped_lock lock(_property_update_mutex);
_uuid = _properties["UUID"].get_string();
}
}