src/lte/model/lte-phy-tag.h
changeset 7891 382a429bdc69
parent 7886 b65c16d4da83
child 8148 09e2d03022a2
--- 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;
 
 };