17 lines
275 B
C++
17 lines
275 B
C++
#ifndef NALOGA0502_DEVICE_H
|
|
#define NALOGA0502_DEVICE_H
|
|
|
|
#include <string>
|
|
|
|
class Device {
|
|
protected:
|
|
std::string id, name;
|
|
public:
|
|
Device(std::string id, std::string name);
|
|
|
|
virtual std::string toString() const;
|
|
};
|
|
|
|
|
|
#endif //NALOGA0502_DEVICE_H
|