Hi guys ,
i am very new to this language so can you tell me which style below function is showing in C++.
SmeConfigRnc::SmeConfigRnc(uint32_t rncId, uint16_t pc) : m_RncId(rncId), m_Pc(pc)
{
//Allocate userId
m_UserId = SmeConfigMgr::GetInstance()->GetFromFreeUserIdPool();
printf("Allocated for RNC, User Id=%d\n", m_UserId);
//Allocate mtpSap
m_MtpSapId = SmeConfigMgr::GetInstance()->GetFromFreeMtpSapIdPool();
printf("Allocated for RNC, MTP SAP=%d\n", m_MtpSapId);
}