wifi: Remove useless ctors in BlockAckAgreement and OriginatorBlockAckAgreement

This commit is contained in:
Sébastien Deronne
2017-11-11 10:34:28 +01:00
parent 92b54d9514
commit 0837a671e5
4 changed files with 0 additions and 19 deletions

View File

@@ -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),

View File

@@ -36,7 +36,6 @@ class BlockAckAgreement
public:
BlockAckAgreement ();
/**
* Constructor for BlockAckAgreement with given peer and TID.
*

View File

@@ -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),

View File

@@ -37,7 +37,6 @@ class OriginatorBlockAckAgreement : public BlockAckAgreement
public:
OriginatorBlockAckAgreement ();
/**
* Constructor
*