Removed constructor from header

This commit is contained in:
Kirill Andreev
2009-08-06 13:11:15 +04:00
parent 288264f0d4
commit e2503ee3a5
2 changed files with 6 additions and 2 deletions

View File

@@ -1140,6 +1140,10 @@ HwmpProtocol::ResetStats ()
plugin->second->ResetStats ();
}
}
HwmpProtocol::QueuedPacket::QueuedPacket () :
pkt (0),
protocol (0),
inInterface (0)
{}
} //namespace dot11s
} //namespace ns3

View File

@@ -145,7 +145,7 @@ private:
uint32_t inInterface; ///< incoming device interface ID. (if packet has come from upper layers, this is Mesh point ID)
RouteReplyCallback reply; ///< how to reply
QueuedPacket () : pkt (0), protocol (0), inInterface (0) {}
QueuedPacket ();
};
///\name Methods related to Queue/Dequeue procedures