mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 13:17:08 -04:00
10 lines
170 B
C++
10 lines
170 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
struct Device {
|
|
public:
|
|
Device(std::string name="") :name(name) {}
|
|
virtual ~Device() {};
|
|
std::string name;
|
|
};
|