consolidate all repos to one for archive
This commit is contained in:
9
semester_2/programiranje_2/naloga0502/Device.cpp
Normal file
9
semester_2/programiranje_2/naloga0502/Device.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "Device.h"
|
||||
|
||||
Device::Device(std::string id, std::string name) : id(id), name(name) {}
|
||||
|
||||
std::string Device::toString() const {
|
||||
return " id: " + id + " name: " + name + "\n";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user