Files
MuditaOS/module-bluetooth/Bluetooth/command/CommandData.hpp
Lefucjusz 773f2c7eb1 [BH-2069] Update license URL in headers
Update outdated license file URL in
license headers across all project.
2024-09-18 11:53:01 +02:00

22 lines
711 B
C++

// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
#pragma once
#include <utility>
#include <variant>
#include <PhoneNumber.hpp>
#include "Device.hpp"
#include "EventStore.hpp"
#include "OperatorName.hpp"
#include "BatteryLevel.hpp"
namespace bluetooth
{
using DataVariant = std::variant<BatteryLevel,
OperatorName,
Store::SignalStrength,
Devicei,
utils::PhoneNumber::View,
Store::Network::Status>;
} // namespace bluetooth