blob: 2fc89aa507991eaf20fe4061f9b85f129145869a [file] [log] [blame]
/*
* Copyright 2019-present Infosys Limited  
*   
* SPDX-License-Identifier: Apache-2.0    
*/
/**************************************
* serviceRequestWfMbResp.cpp
* This is an auto generated file.
* Please do not edit this file.
* All edits to be made through template source file
* <TOP-DIR/scripts/SMCodeGen/templates/stateMachineTmpls/state.cpp.tt>
**************************************/
#include "smEnumTypes.h"
#include "actionTable.h"
#include "actionHandlers/actionHandlers.h"
#include "mmeStates/serviceRequestWfMbResp.h"
using namespace mme;
using namespace SM;
/******************************************************************************
* Constructor
******************************************************************************/
ServiceRequestWfMbResp::ServiceRequestWfMbResp():State(State_e::service_request_wf_mb_resp)
{
}
/******************************************************************************
* Destructor
******************************************************************************/
ServiceRequestWfMbResp::~ServiceRequestWfMbResp()
{
}
/******************************************************************************
* creates and returns static instance
******************************************************************************/
ServiceRequestWfMbResp* ServiceRequestWfMbResp::Instance()
{
static ServiceRequestWfMbResp state;
return &state;
}
/******************************************************************************
* initializes eventToActionsMap
******************************************************************************/
void ServiceRequestWfMbResp::initialize()
{
{
ActionTable actionTable;
actionTable.addAction(&ActionHandlers::process_mb_resp_svc_req);
eventToActionsMap.insert(pair<Event_e, ActionTable>(Event_e::MB_RESP_FROM_SGW, actionTable));
}
}