Index: sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r9667ff80660933cb89207a510c4fb111148181d4 --- sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp (.../VTreatmentAdjustmentRecirculate.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp (.../VTreatmentAdjustmentRecirculate.cpp) (revision 9667ff80660933cb89207a510c4fb111148181d4) @@ -48,30 +48,38 @@ * \brief View::VTreatmentAdjustmentRecirculate::doReconnect * \details User requests to re-connect to system (stop re-circulating, clamp arterial and venous lines) */ -void View::VTreatmentAdjustmentRecirculate::doReconnect() { - doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_RECONNECT ); +void View::VTreatmentAdjustmentRecirculate::doReconnect () { // 0 + doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_RECONNECT ); } /*! - * \brief View::VTreatmentAdjustmentRecirculate::doConfirm + * \brief View::VTreatmentAdjustmentRecirculate::doConfirmReconnect * \details User confirms patient connected, lines un-shunted to return to treatment */ -void View::VTreatmentAdjustmentRecirculate::doConfirm() { - doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_CONFIRM_RECONNECT ); +void View::VTreatmentAdjustmentRecirculate::doConfirmReconnect () { // 1 + doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_CONFIRM_RECONNECT ); } /*! * \brief View::VTreatmentAdjustmentRecirculate::doResume * \details User requests to resume re-circulation */ -void View::VTreatmentAdjustmentRecirculate::doResume() { - doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_RESUME_RC ); +void View::VTreatmentAdjustmentRecirculate::doResume () { // 2 + doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_RESUME_RC ); } /*! * \brief View::VTreatmentAdjustmentRecirculate::doTreatmentEnd * \details User requests to end treatment */ -void View::VTreatmentAdjustmentRecirculate::doTreatmentEnd() { - doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_END_TREATMENT ); +void View::VTreatmentAdjustmentRecirculate::doTreatmentEnd () { // 3 + doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_END_TREATMENT ); } + +/*! + * \brief View::VTreatmentAdjustmentRecirculate::doConfirmDisconnect + * \details User confirms patient disconnected, lines shunted to begin re-circulation + */ +void View::VTreatmentAdjustmentRecirculate::doConfirmDisconnect () { // 4 + doAdjustment( GuiRecirculateCommands::REQUESTED_USER_ACTION_TX_RECIRC_CONFIRM_DISCONNECT ); +}