consolidate all repos to one for archive
This commit is contained in:
16
semester_2/programiranje_2/naloga0502/Device.h
Normal file
16
semester_2/programiranje_2/naloga0502/Device.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user