--- a/src/lte/model/lte-pdcp-tag.cc Wed Apr 11 13:49:33 2012 +0200
+++ b/src/lte/model/lte-pdcp-tag.cc Thu Apr 12 13:28:31 2012 +0200
@@ -84,5 +84,18 @@
os << m_senderTimestamp;
}
+Time
+PdcpTag::GetSenderTimestamp (void) const
+{
+ return m_senderTimestamp;
+}
+
+void
+PdcpTag::SetSenderTimestamp (Time senderTimestamp)
+{
+ this->m_senderTimestamp = senderTimestamp;
+}
+
+
} // namespace ns3
--- a/src/lte/model/lte-pdcp-tag.h Wed Apr 11 13:49:33 2012 +0200
+++ b/src/lte/model/lte-pdcp-tag.h Thu Apr 12 13:28:31 2012 +0200
@@ -57,19 +57,13 @@
/**
* Get the instant when the PDCP delivers the PDU to the MAC SAP provider
*/
- Time GetSenderTimestamp (void) const
- {
- return m_senderTimestamp;
- }
+ Time GetSenderTimestamp (void) const;
/**
* Set the sender timestamp
* @param senderTimestamp time stamp of the instant when the PDCP delivers the PDU to the MAC SAP provider
*/
- void SetSenderTimestamp (Time senderTimestamp)
- {
- this->m_senderTimestamp = senderTimestamp;
- }
+ void SetSenderTimestamp (Time senderTimestamp);
private:
Time m_senderTimestamp;