Skip to content
Snippets Groups Projects
Commit 5505cb9b authored by athatheocsd's avatar athatheocsd
Browse files

Further implementation of subservices

parent e6e12713
No related branches found
No related tags found
No related merge requests found
...@@ -86,8 +86,15 @@ public: ...@@ -86,8 +86,15 @@ public:
/** /**
* Setter for event-action status * Setter for event-action status
*/ */
void setEventActionStatus(EventActionStatus){ void setEventActionStatus(EventActionStatus e){
eventActionStatus = e;
}
/**
* Setter for event-action function status
*/
void setEventActionFunctionStatus(EventActionFunctionStatus e){
eventActionFunctionStatus = e;
} }
}; };
......
...@@ -77,7 +77,6 @@ void EventActionService::enableEventActionFunction(Message message) { ...@@ -77,7 +77,6 @@ void EventActionService::enableEventActionFunction(Message message) {
// TC[19,8] // TC[19,8]
if (message.messageType == 8 && message.packetType == Message::TC && message.serviceType if (message.messageType == 8 && message.packetType == Message::TC && message.serviceType
== 19){ == 19){
} }
} }
...@@ -85,6 +84,5 @@ void EventActionService::disableEventActionFunction(Message message) { ...@@ -85,6 +84,5 @@ void EventActionService::disableEventActionFunction(Message message) {
// TC[19,9] // TC[19,9]
if (message.messageType == 9 && message.packetType == Message::TC && message.serviceType if (message.messageType == 9 && message.packetType == Message::TC && message.serviceType
== 19){ == 19){
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment