Files
MuditaOS/module-bluetooth/Bluetooth/Device.hpp
2019-10-14 15:32:06 +02:00

10 lines
170 B
C++

#pragma once
#include <string>
struct Device {
public:
Device(std::string name="") :name(name) {}
virtual ~Device() {};
std::string name;
};