00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00044 #include "clmsg-phy-on-off-switch.h"
00045
00046 #include <iostream>
00047
00048 ClMessage_t CLMSG_PHY_ON_OFF_SWITCH;
00049 ClMessage_t CLMSG_PHY_ON_OFF_SWITCH_STATUS;
00050
00051 ClMsgPhyOnOffSwitch::ClMsgPhyOnOffSwitch()
00052 : turnOn(true), ClMessage(CLMSG_PHY_ON_OFF_SWITCH_VERBOSITY, CLMSG_PHY_ON_OFF_SWITCH)
00053 {
00054 }
00055
00056 ClMsgPhyOnOffSwitch::ClMsgPhyOnOffSwitch(int destination)
00057 : turnOn(true), ClMessage(CLMSG_PHY_ON_OFF_SWITCH_VERBOSITY, CLMSG_PHY_ON_OFF_SWITCH, UNICAST, destination)
00058 {
00059 }
00060
00061 ClMessage* ClMsgPhyOnOffSwitch::copy()
00062 {
00063
00064 assert(0);
00065 }
00066
00067
00069 void ClMsgPhyOnOffSwitch::setOn()
00070 {
00071 turnOn = true;
00072 }
00073
00074 void ClMsgPhyOnOffSwitch::setOff()
00075 {
00076 turnOn = true;
00077 }
00078
00079 bool ClMsgPhyOnOffSwitch::isOn()
00080 {
00081 return(turnOn);
00082 }
00083
00084 ClMsgPhyOnOffSwitchStatus::ClMsgPhyOnOffSwitchStatus()
00085 : isOn_status(false), ClMessage(CLMSG_PHY_ON_OFF_SWITCH_STATUS_VERBOSITY, CLMSG_PHY_ON_OFF_SWITCH_STATUS)
00086 {
00087 }
00088
00089 ClMsgPhyOnOffSwitchStatus::ClMsgPhyOnOffSwitchStatus(int destination)
00090 : isOn_status(false), ClMessage(CLMSG_PHY_ON_OFF_SWITCH_STATUS_VERBOSITY, CLMSG_PHY_ON_OFF_SWITCH_STATUS, UNICAST, destination)
00091 {
00092 }
00093
00094 ClMessage* ClMsgPhyOnOffSwitchStatus::copy()
00095 {
00096
00097 assert(0);
00098 }
00099
00100
00102 void ClMsgPhyOnOffSwitchStatus::setStatus(bool flag)
00103 {
00104 isOn_status = flag;
00105 }
00106
00107 bool ClMsgPhyOnOffSwitchStatus::getStatus()
00108 {
00109 return(isOn_status);
00110 }
00111
00112