add WifiHelper::Install (Ptr<Node>) method per craig's comment.

This commit is contained in:
Mathieu Lacage
2008-11-24 06:45:13 +01:00
parent 8393b27aa2
commit c6d1ff065d
3 changed files with 11 additions and 0 deletions

View File

@@ -857,6 +857,11 @@ def register_Ns3WifiHelper_methods(root_module, cls):
'ns3::NetDeviceContainer',
[param('ns3::WifiPhyHelper const &', 'phy'), param('ns3::NodeContainer', 'c')],
is_const=True)
## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::WifiPhyHelper const & phy, ns3::Ptr<ns3::Node> node) const [member function]
cls.add_method('Install',
'ns3::NetDeviceContainer',
[param('ns3::WifiPhyHelper const &', 'phy'), param('ns3::Ptr< ns3::Node >', 'node')],
is_const=True)
return
def register_Ns3WifiPhyHelper_methods(root_module, cls):