#include "Switch.h" Switch::Switch() { this->type = Thing::SwitchType; } bool Switch::IsOn() { return false; } bool Switch::IsOff() { bool isOn = IsOn(); bool isOff = !isOn; return isOff; }