wifi: Remove useless ctors in BlockAckAgreement and OriginatorBlockAckAgreement
This commit is contained in:
@@ -25,15 +25,6 @@ namespace ns3 {
|
||||
|
||||
NS_LOG_COMPONENT_DEFINE ("BlockAckAgreement");
|
||||
|
||||
BlockAckAgreement::BlockAckAgreement ()
|
||||
: m_amsduSupported (0),
|
||||
m_blockAckPolicy (1),
|
||||
m_htSupported (0),
|
||||
m_inactivityEvent ()
|
||||
{
|
||||
NS_LOG_FUNCTION (this);
|
||||
}
|
||||
|
||||
BlockAckAgreement::BlockAckAgreement (Mac48Address peer, uint8_t tid)
|
||||
: m_amsduSupported (0),
|
||||
m_blockAckPolicy (1),
|
||||
|
||||
@@ -36,7 +36,6 @@ class BlockAckAgreement
|
||||
|
||||
|
||||
public:
|
||||
BlockAckAgreement ();
|
||||
/**
|
||||
* Constructor for BlockAckAgreement with given peer and TID.
|
||||
*
|
||||
|
||||
@@ -23,14 +23,6 @@
|
||||
|
||||
namespace ns3 {
|
||||
|
||||
OriginatorBlockAckAgreement::OriginatorBlockAckAgreement ()
|
||||
: BlockAckAgreement (),
|
||||
m_state (PENDING),
|
||||
m_sentMpdus (0),
|
||||
m_needBlockAckReq (false)
|
||||
{
|
||||
}
|
||||
|
||||
OriginatorBlockAckAgreement::OriginatorBlockAckAgreement (Mac48Address recipient, uint8_t tid)
|
||||
: BlockAckAgreement (recipient, tid),
|
||||
m_state (PENDING),
|
||||
|
||||
@@ -37,7 +37,6 @@ class OriginatorBlockAckAgreement : public BlockAckAgreement
|
||||
|
||||
|
||||
public:
|
||||
OriginatorBlockAckAgreement ();
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user