removed inline methods from LtePdcpTag
This commit is contained in:
@@ -84,5 +84,18 @@ PdcpTag::Print (std::ostream &os) const
|
||||
os << m_senderTimestamp;
|
||||
}
|
||||
|
||||
Time
|
||||
PdcpTag::GetSenderTimestamp (void) const
|
||||
{
|
||||
return m_senderTimestamp;
|
||||
}
|
||||
|
||||
void
|
||||
PdcpTag::SetSenderTimestamp (Time senderTimestamp)
|
||||
{
|
||||
this->m_senderTimestamp = senderTimestamp;
|
||||
}
|
||||
|
||||
|
||||
} // namespace ns3
|
||||
|
||||
|
||||
@@ -57,19 +57,13 @@ public:
|
||||
/**
|
||||
* 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;
|
||||
|
||||
Reference in New Issue
Block a user