mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-03 20:57:19 -04:00
12 lines
162 B
C++
12 lines
162 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
struct Device
|
|
{
|
|
public:
|
|
Device(std::string name = "") : name(name)
|
|
{}
|
|
virtual ~Device(){};
|
|
std::string name;
|
|
};
|