20 lines
362 B
C++
20 lines
362 B
C++
#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
|