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