mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-15 17:40:51 -05:00
17 lines
341 B
C++
17 lines
341 B
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
#include "CommandData.hpp"
|
|
#include "event/Events.hpp"
|
|
|
|
namespace bluetooth
|
|
{
|
|
|
|
struct Command
|
|
{
|
|
std::unique_ptr<bluetooth::event::Base> event;
|
|
};
|
|
|
|
} // namespace bluetooth
|