consolidate all repos to one for archive
This commit is contained in:
16
semester_2/programiranje_2/naloga0502/WateringSistem.h
Normal file
16
semester_2/programiranje_2/naloga0502/WateringSistem.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef NALOGA0502_WATERINGSISTEM_H
|
||||
#define NALOGA0502_WATERINGSISTEM_H
|
||||
|
||||
#include "Device.h"
|
||||
|
||||
class WateringSistem : public Device {
|
||||
private:
|
||||
int startHour, endHour;
|
||||
public:
|
||||
WateringSistem(std::string id, std::string name, int startHour, int endHour);
|
||||
|
||||
std::string toString() const override;
|
||||
};
|
||||
|
||||
|
||||
#endif //NALOGA0502_WATERINGSISTEM_H
|
||||
Reference in New Issue
Block a user