lte: eNB CCM should not have a direct pointer to the eNB RRC

This commit is contained in:
Zoraze Ali
2018-09-06 14:05:17 +02:00
parent fd84244d25
commit 18a087866c
3 changed files with 0 additions and 12 deletions

View File

@@ -597,7 +597,6 @@ LteHelper::InstallSingleEnbDevice (Ptr<Node> n)
// Set number of component carriers. Note: eNB CCM would also set the
// number of component carriers in eNB RRC
ccmEnbManager->SetNumberOfComponentCarriers (m_noOfCcs);
ccmEnbManager->SetRrc(rrc);
rrc->ConfigureCarriers (ccMap);

View File

@@ -130,10 +130,4 @@ LteEnbComponentCarrierManager::SetNumberOfComponentCarriers (uint16_t noOfCompon
m_ccmRrcSapUser->SetNumberOfComponentCarriers (noOfComponentCarriers);
}
void
LteEnbComponentCarrierManager::SetRrc (const Ptr<LteEnbRrc> rrc)
{
m_rrc = rrc;
}
} // end of namespace ns3

View File

@@ -151,11 +151,6 @@ public:
*/
virtual void SetNumberOfComponentCarriers (uint16_t noOfComponentCarriers);
/**
* \brief Sets a pointer to eNodeB RRC instance
* \param rrc the RRC
*/
virtual void SetRrc (const Ptr<LteEnbRrc> rrc);
protected: