--- a/src/lte/model/lte-phy-tag.h Mon Mar 14 13:23:01 2011 +0100
+++ b/src/lte/model/lte-phy-tag.h Tue Mar 15 11:22:36 2011 +0100
@@ -42,18 +42,21 @@
/**
* Create a LtePhyTag with the given RNTI and LC id
*/
- LtePhyTag (Ptr<LtePhy> enbPhy);
+ LtePhyTag (uint16_t cellId);
+
+
+ virtual ~LtePhyTag ();
virtual void Serialize (TagBuffer i) const;
virtual void Deserialize (TagBuffer i);
virtual uint32_t GetSerializedSize () const;
virtual void Print (std::ostream &os) const;
- bool IsEnbPhyEqual () const;
+ uint16_t GetCellId () const;
private:
- LtePhy* m_enbPhy;
+ uint16_t m_cellId;
};