Index: sources/gui/GuiController.cpp =================================================================== diff -u -ra3030123e885fb9f22dea5839c4e988896a257e4 -r5215e145a0f26a20c99e3f10af6ac8a9c3b67383 --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision a3030123e885fb9f22dea5839c4e988896a257e4) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 5215e145a0f26a20c99e3f10af6ac8a9c3b67383) @@ -332,3 +332,23 @@ AlarmStatusData data = AlarmGenerator::ALARM_ID_HD_COMM_TIMEOUT(); emit didActionReceive(data); } + +/*! + * \brief GuiController::doAlertRequest + * Handles a request to show a new alert + * \param alert - (GuiAlert) The alert information to show + */ +void GuiController::doAlertRequest(const GuiAlertRequestData &alertRequest) +{ + emit didAlertRequest(alertRequest); +} + +/*! + * \brief GuiController::doAlertResponse + * Handles a user response to an alert + * \param alertResponse - (GuiAlertResponse) the alert response + */ +void GuiController::doAlertResponse(const GuiAlertResponseData &alertResponse) +{ + emit didAlertResponse(alertResponse); +}