Files
MuditaOS/module-bluetooth/Bluetooth/Device.hpp
Radoslaw Wicik a8573a404c Apply new style
2020-03-17 10:03:16 +01:00

12 lines
162 B
C++

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