tomh@4474: from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers gjc@3408: gjc@3408: def register_types(module): gjc@3408: root_module = module.get_root() gjc@3408: gjc@3731: ## application-container.h: ns3::ApplicationContainer [class] gjc@3731: module.add_class('ApplicationContainer') gjc@3731: ## bridge-helper.h: ns3::BridgeHelper [class] gjc@3731: module.add_class('BridgeHelper', allow_subclassing=False) gjc@3731: ## csma-helper.h: ns3::CsmaHelper [class] gjc@3731: module.add_class('CsmaHelper', allow_subclassing=False) vincent@3842: ## emu-helper.h: ns3::EmuHelper [class] vincent@3842: module.add_class('EmuHelper', allow_subclassing=False) gjc@3731: ## internet-stack-helper.h: ns3::InternetStackHelper [class] gjc@3731: module.add_class('InternetStackHelper', allow_subclassing=False) gjc@3731: ## ipv4-address-helper.h: ns3::Ipv4AddressHelper [class] gjc@3731: module.add_class('Ipv4AddressHelper', allow_subclassing=False) gjc@3731: ## ipv4-interface-container.h: ns3::Ipv4InterfaceContainer [class] gjc@3731: module.add_class('Ipv4InterfaceContainer') tomh@4474: ## ipv4-static-routing-helper.h: ns3::Ipv4StaticRoutingHelper [class] tomh@4474: module.add_class('Ipv4StaticRoutingHelper', allow_subclassing=False) gjc@3408: ## mobility-helper.h: ns3::MobilityHelper [class] gjc@3408: module.add_class('MobilityHelper', allow_subclassing=False) gjc@3731: ## net-device-container.h: ns3::NetDeviceContainer [class] gjc@3731: module.add_class('NetDeviceContainer') gjc@3408: ## node-container.h: ns3::NodeContainer [class] gjc@3408: module.add_class('NodeContainer') gjc@3731: ## ns2-mobility-helper.h: ns3::Ns2MobilityHelper [class] gjc@3731: module.add_class('Ns2MobilityHelper', allow_subclassing=False) gjc@3408: ## olsr-helper.h: ns3::OlsrHelper [class] gjc@3408: module.add_class('OlsrHelper', allow_subclassing=False) gjc@3731: ## on-off-helper.h: ns3::OnOffHelper [class] gjc@3731: module.add_class('OnOffHelper', allow_subclassing=False) gjc@3731: ## packet-sink-helper.h: ns3::PacketSinkHelper [class] gjc@3731: module.add_class('PacketSinkHelper', allow_subclassing=False) gjc@3408: ## packet-socket-helper.h: ns3::PacketSocketHelper [class] gjc@3408: module.add_class('PacketSocketHelper', allow_subclassing=False) gjc@3731: ## point-to-point-helper.h: ns3::PointToPointHelper [class] gjc@3731: module.add_class('PointToPointHelper', allow_subclassing=False) gjc@4204: ## tap-bridge-helper.h: ns3::TapBridgeHelper [class] gjc@4204: module.add_class('TapBridgeHelper', allow_subclassing=False) gjc@3731: ## udp-echo-helper.h: ns3::UdpEchoClientHelper [class] gjc@3731: module.add_class('UdpEchoClientHelper', allow_subclassing=False) gjc@3731: ## udp-echo-helper.h: ns3::UdpEchoServerHelper [class] gjc@3731: module.add_class('UdpEchoServerHelper', allow_subclassing=False) vincent@3842: ## v4ping-helper.h: ns3::V4PingHelper [class] vincent@3842: module.add_class('V4PingHelper', allow_subclassing=False) gjc@3408: ## wifi-helper.h: ns3::WifiHelper [class] gjc@3408: module.add_class('WifiHelper', allow_subclassing=False) mathieu@4407: ## wifi-helper.h: ns3::WifiMacHelper [class] mathieu@4407: module.add_class('WifiMacHelper', allow_subclassing=False) mathieu@3912: ## wifi-helper.h: ns3::WifiPhyHelper [class] mathieu@3912: module.add_class('WifiPhyHelper', allow_subclassing=False) mathieu@4002: ## yans-wifi-helper.h: ns3::YansWifiChannelHelper [class] mathieu@3912: module.add_class('YansWifiChannelHelper', allow_subclassing=False) mathieu@4002: ## yans-wifi-helper.h: ns3::YansWifiPhyHelper [class] mathieu@3912: module.add_class('YansWifiPhyHelper', allow_subclassing=False, parent=root_module['ns3::WifiPhyHelper']) mathieu@4407: ## nqos-wifi-mac-helper.h: ns3::NqosWifiMacHelper [class] mathieu@4407: module.add_class('NqosWifiMacHelper', allow_subclassing=False, parent=root_module['ns3::WifiMacHelper']) mathieu@4422: ## qos-wifi-mac-helper.h: ns3::QosWifiMacHelper [class] mathieu@4422: module.add_class('QosWifiMacHelper', allow_subclassing=False, parent=root_module['ns3::WifiMacHelper']) gjc@3408: gjc@3855: ## Register a nested module for the namespace Config gjc@3408: gjc@3855: nested_module = module.add_cpp_namespace('Config') gjc@3855: register_types_ns3_Config(nested_module) gjc@3408: gjc@3408: gjc@3408: ## Register a nested module for the namespace TimeStepPrecision gjc@3408: gjc@3408: nested_module = module.add_cpp_namespace('TimeStepPrecision') gjc@3408: register_types_ns3_TimeStepPrecision(nested_module) gjc@3408: gjc@3408: tomh@4474: ## Register a nested module for the namespace addressUtils tomh@4474: tomh@4474: nested_module = module.add_cpp_namespace('addressUtils') tomh@4474: register_types_ns3_addressUtils(nested_module) tomh@4474: tomh@4474: gjc@3855: ## Register a nested module for the namespace internal gjc@3408: gjc@3855: nested_module = module.add_cpp_namespace('internal') gjc@3855: register_types_ns3_internal(nested_module) gjc@3408: gjc@3408: gjc@3408: ## Register a nested module for the namespace olsr gjc@3408: gjc@3408: nested_module = module.add_cpp_namespace('olsr') gjc@3408: register_types_ns3_olsr(nested_module) gjc@3408: gjc@3408: gjc@3855: def register_types_ns3_Config(module): gjc@3408: root_module = module.get_root() gjc@3408: gjc@3408: gjc@3408: def register_types_ns3_TimeStepPrecision(module): gjc@3408: root_module = module.get_root() gjc@3408: gjc@3408: tomh@4474: def register_types_ns3_addressUtils(module): tomh@4474: root_module = module.get_root() tomh@4474: tomh@4474: gjc@3855: def register_types_ns3_internal(module): gjc@3408: root_module = module.get_root() gjc@3408: gjc@3408: gjc@3408: def register_types_ns3_olsr(module): gjc@3408: root_module = module.get_root() gjc@3408: gjc@3408: gjc@3408: def register_methods(root_module): gjc@3731: register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer']) gjc@3731: register_Ns3BridgeHelper_methods(root_module, root_module['ns3::BridgeHelper']) gjc@3731: register_Ns3CsmaHelper_methods(root_module, root_module['ns3::CsmaHelper']) vincent@3842: register_Ns3EmuHelper_methods(root_module, root_module['ns3::EmuHelper']) gjc@3408: register_Ns3InternetStackHelper_methods(root_module, root_module['ns3::InternetStackHelper']) gjc@3731: register_Ns3Ipv4AddressHelper_methods(root_module, root_module['ns3::Ipv4AddressHelper']) gjc@3731: register_Ns3Ipv4InterfaceContainer_methods(root_module, root_module['ns3::Ipv4InterfaceContainer']) tomh@4474: register_Ns3Ipv4StaticRoutingHelper_methods(root_module, root_module['ns3::Ipv4StaticRoutingHelper']) gjc@3731: register_Ns3MobilityHelper_methods(root_module, root_module['ns3::MobilityHelper']) gjc@3408: register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer']) gjc@3731: register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer']) gjc@3731: register_Ns3Ns2MobilityHelper_methods(root_module, root_module['ns3::Ns2MobilityHelper']) gjc@3408: register_Ns3OlsrHelper_methods(root_module, root_module['ns3::OlsrHelper']) gjc@3408: register_Ns3OnOffHelper_methods(root_module, root_module['ns3::OnOffHelper']) gjc@3731: register_Ns3PacketSinkHelper_methods(root_module, root_module['ns3::PacketSinkHelper']) gjc@3731: register_Ns3PacketSocketHelper_methods(root_module, root_module['ns3::PacketSocketHelper']) gjc@3731: register_Ns3PointToPointHelper_methods(root_module, root_module['ns3::PointToPointHelper']) gjc@4204: register_Ns3TapBridgeHelper_methods(root_module, root_module['ns3::TapBridgeHelper']) gjc@3731: register_Ns3UdpEchoClientHelper_methods(root_module, root_module['ns3::UdpEchoClientHelper']) gjc@3731: register_Ns3UdpEchoServerHelper_methods(root_module, root_module['ns3::UdpEchoServerHelper']) vincent@3842: register_Ns3V4PingHelper_methods(root_module, root_module['ns3::V4PingHelper']) gjc@3408: register_Ns3WifiHelper_methods(root_module, root_module['ns3::WifiHelper']) mathieu@4407: register_Ns3WifiMacHelper_methods(root_module, root_module['ns3::WifiMacHelper']) mathieu@3912: register_Ns3WifiPhyHelper_methods(root_module, root_module['ns3::WifiPhyHelper']) mathieu@3912: register_Ns3YansWifiChannelHelper_methods(root_module, root_module['ns3::YansWifiChannelHelper']) mathieu@3912: register_Ns3YansWifiPhyHelper_methods(root_module, root_module['ns3::YansWifiPhyHelper']) mathieu@4407: register_Ns3NqosWifiMacHelper_methods(root_module, root_module['ns3::NqosWifiMacHelper']) mathieu@4422: register_Ns3QosWifiMacHelper_methods(root_module, root_module['ns3::QosWifiMacHelper']) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3ApplicationContainer_methods(root_module, cls): mathieu@4241: ## application-container.h: ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')]) gjc@3731: ## application-container.h: ns3::ApplicationContainer::ApplicationContainer() [constructor] gjc@3731: cls.add_constructor([]) gjc@3855: ## application-container.h: ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr application) [constructor] gjc@3855: cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')]) gjc@4204: ## application-container.h: ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor] gjc@4204: cls.add_constructor([param('std::string', 'name')]) gjc@3731: ## application-container.h: __gnu_cxx::__normal_iterator*,std::vector, std::allocator > > > ns3::ApplicationContainer::Begin() const [member function] gjc@3731: cls.add_method('Begin', gjc@3731: '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', gjc@3731: [], gjc@3731: is_const=True) gjc@3731: ## application-container.h: __gnu_cxx::__normal_iterator*,std::vector, std::allocator > > > ns3::ApplicationContainer::End() const [member function] gjc@3731: cls.add_method('End', gjc@3731: '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', gjc@3731: [], gjc@3731: is_const=True) gjc@3731: ## application-container.h: uint32_t ns3::ApplicationContainer::GetN() const [member function] gjc@3731: cls.add_method('GetN', gjc@3731: 'uint32_t', gjc@3731: [], gjc@3731: is_const=True) gjc@3731: ## application-container.h: ns3::Ptr ns3::ApplicationContainer::Get(uint32_t i) const [member function] gjc@3731: cls.add_method('Get', gjc@3731: 'ns3::Ptr< ns3::Application >', gjc@3731: [param('uint32_t', 'i')], gjc@3731: is_const=True) gjc@3731: ## application-container.h: void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function] gjc@3731: cls.add_method('Add', gjc@3731: 'void', gjc@3731: [param('ns3::ApplicationContainer', 'other')]) gjc@3731: ## application-container.h: void ns3::ApplicationContainer::Add(ns3::Ptr application) [member function] gjc@3731: cls.add_method('Add', gjc@3731: 'void', gjc@3731: [param('ns3::Ptr< ns3::Application >', 'application')]) gjc@4204: ## application-container.h: void ns3::ApplicationContainer::Add(std::string name) [member function] gjc@4204: cls.add_method('Add', gjc@4204: 'void', gjc@4204: [param('std::string', 'name')]) gjc@3731: ## application-container.h: void ns3::ApplicationContainer::Start(ns3::Time start) [member function] gjc@3731: cls.add_method('Start', gjc@3731: 'void', gjc@3731: [param('ns3::Time', 'start')]) gjc@3731: ## application-container.h: void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function] gjc@3731: cls.add_method('Stop', gjc@3731: 'void', gjc@3731: [param('ns3::Time', 'stop')]) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3BridgeHelper_methods(root_module, cls): mathieu@4241: ## bridge-helper.h: ns3::BridgeHelper::BridgeHelper(ns3::BridgeHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::BridgeHelper const &', 'arg0')]) gjc@3731: ## bridge-helper.h: ns3::BridgeHelper::BridgeHelper() [constructor] gjc@3731: cls.add_constructor([]) gjc@3731: ## bridge-helper.h: void ns3::BridgeHelper::SetDeviceAttribute(std::string n1, ns3::AttributeValue const & v1) [member function] gjc@3731: cls.add_method('SetDeviceAttribute', gjc@3731: 'void', gjc@3731: [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')]) gjc@3731: ## bridge-helper.h: ns3::NetDeviceContainer ns3::BridgeHelper::Install(ns3::Ptr node, ns3::NetDeviceContainer c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::NetDeviceContainer', gjc@3731: [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::NetDeviceContainer', 'c')]) raj@4237: ## bridge-helper.h: ns3::NetDeviceContainer ns3::BridgeHelper::Install(std::string nodeName, ns3::NetDeviceContainer c) [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::NetDeviceContainer', raj@4237: [param('std::string', 'nodeName'), param('ns3::NetDeviceContainer', 'c')]) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3CsmaHelper_methods(root_module, cls): mathieu@4241: ## csma-helper.h: ns3::CsmaHelper::CsmaHelper(ns3::CsmaHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::CsmaHelper const &', 'arg0')]) gjc@3731: ## csma-helper.h: ns3::CsmaHelper::CsmaHelper() [constructor] gjc@3731: cls.add_constructor([]) gjc@3731: ## csma-helper.h: void ns3::CsmaHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function] gjc@3731: cls.add_method('SetQueue', gjc@3731: 'void', gjc@3731: [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')]) gjc@3731: ## csma-helper.h: void ns3::CsmaHelper::SetDeviceAttribute(std::string n1, ns3::AttributeValue const & v1) [member function] gjc@3731: cls.add_method('SetDeviceAttribute', gjc@3731: 'void', gjc@3731: [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')]) gjc@3731: ## csma-helper.h: void ns3::CsmaHelper::SetChannelAttribute(std::string n1, ns3::AttributeValue const & v1) [member function] gjc@3731: cls.add_method('SetChannelAttribute', gjc@3731: 'void', gjc@3731: [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')]) craigdo@4265: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid, bool promiscuous) [member function] gjc@3731: cls.add_method('EnablePcap', gjc@3731: 'void', craigdo@4265: [param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'promiscuous')], gjc@3731: is_static=True) craigdo@4265: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, ns3::Ptr nd, bool promiscuous) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous')], craigdo@4265: is_static=True) craigdo@4265: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, std::string ndName, bool promiscuous) [member function] gjc@3731: cls.add_method('EnablePcap', gjc@3731: 'void', craigdo@4265: [param('std::string', 'filename'), param('std::string', 'ndName'), param('bool', 'promiscuous')], gjc@3731: is_static=True) craigdo@4265: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d, bool promiscuous) [member function] gjc@3731: cls.add_method('EnablePcap', gjc@3731: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd'), param('bool', 'promiscuous')], gjc@3731: is_static=True) craigdo@4265: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, ns3::NodeContainer n, bool promiscuous) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::NodeContainer', 'n'), param('bool', 'promiscuous')], craigdo@4265: is_static=True) craigdo@4265: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcapAll(std::string filename, bool promiscuous) [member function] gjc@3731: cls.add_method('EnablePcapAll', gjc@3731: 'void', craigdo@4265: [param('std::string', 'filename'), param('bool', 'promiscuous')], gjc@3731: is_static=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function] gjc@3731: cls.add_method('EnableAscii', gjc@3731: 'void', gjc@3731: [param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], gjc@3731: is_static=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function] gjc@3731: cls.add_method('EnableAscii', gjc@3731: 'void', gjc@3731: [param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')], gjc@3731: is_static=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function] gjc@3731: cls.add_method('EnableAscii', gjc@3731: 'void', gjc@3731: [param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')], gjc@3731: is_static=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::EnableAsciiAll(std::ostream & os) [member function] gjc@3731: cls.add_method('EnableAsciiAll', gjc@3731: 'void', gjc@3731: [param('std::ostream &', 'os')], gjc@3731: is_static=True) gjc@3855: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::Ptr node) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::NetDeviceContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) gjc@4204: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(std::string name) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('std::string', 'name')], gjc@4204: is_const=True) gjc@3855: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::Ptr node, ns3::Ptr channel) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::NetDeviceContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::CsmaChannel >', 'channel')], gjc@3855: is_const=True) gjc@4204: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::Ptr node, std::string channelName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'channelName')], gjc@4204: is_const=True) gjc@4204: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(std::string nodeName, ns3::Ptr channel) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('std::string', 'nodeName'), param('ns3::Ptr< ns3::CsmaChannel >', 'channel')], gjc@4204: is_const=True) gjc@4204: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(std::string nodeName, std::string channelName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('std::string', 'nodeName'), param('std::string', 'channelName')], gjc@4204: is_const=True) gjc@3855: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::NodeContainer const & c) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::NetDeviceContainer', gjc@3855: [param('ns3::NodeContainer const &', 'c')], gjc@3855: is_const=True) gjc@3855: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::NodeContainer const & c, ns3::Ptr channel) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::NetDeviceContainer', gjc@3855: [param('ns3::NodeContainer const &', 'c'), param('ns3::Ptr< ns3::CsmaChannel >', 'channel')], gjc@3855: is_const=True) gjc@4204: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::NodeContainer const & c, std::string channelName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('ns3::NodeContainer const &', 'c'), param('std::string', 'channelName')], gjc@4204: is_const=True) mathieu@3816: ## csma-helper.h: void ns3::CsmaHelper::InstallStar(ns3::Ptr hub, ns3::NodeContainer spokes, ns3::NetDeviceContainer & hubDevices, ns3::NetDeviceContainer & spokeDevices) [member function] mathieu@3816: cls.add_method('InstallStar', mathieu@3816: 'void', mathieu@3816: [param('ns3::Ptr< ns3::Node >', 'hub'), param('ns3::NodeContainer', 'spokes'), param('ns3::NetDeviceContainer &', 'hubDevices'), param('ns3::NetDeviceContainer &', 'spokeDevices')]) raj@4237: ## csma-helper.h: void ns3::CsmaHelper::InstallStar(std::string hubName, ns3::NodeContainer spokes, ns3::NetDeviceContainer & hubDevices, ns3::NetDeviceContainer & spokeDevices) [member function] raj@4237: cls.add_method('InstallStar', raj@4237: 'void', raj@4237: [param('std::string', 'hubName'), param('ns3::NodeContainer', 'spokes'), param('ns3::NetDeviceContainer &', 'hubDevices'), param('ns3::NetDeviceContainer &', 'spokeDevices')]) gjc@3731: return gjc@3731: vincent@3842: def register_Ns3EmuHelper_methods(root_module, cls): mathieu@4241: ## emu-helper.h: ns3::EmuHelper::EmuHelper(ns3::EmuHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::EmuHelper const &', 'arg0')]) vincent@3842: ## emu-helper.h: ns3::EmuHelper::EmuHelper() [constructor] vincent@3842: cls.add_constructor([]) vincent@3842: ## emu-helper.h: void ns3::EmuHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function] vincent@3842: cls.add_method('SetQueue', vincent@3842: 'void', vincent@3842: [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')]) vincent@3842: ## emu-helper.h: void ns3::EmuHelper::SetAttribute(std::string n1, ns3::AttributeValue const & v1) [member function] vincent@3842: cls.add_method('SetAttribute', vincent@3842: 'void', vincent@3842: [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')]) craigdo@4265: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid, bool promiscuous) [member function] vincent@3842: cls.add_method('EnablePcap', vincent@3842: 'void', craigdo@4265: [param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'promiscuous')], vincent@3842: is_static=True) craigdo@4265: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, ns3::Ptr nd, bool promiscuous) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous')], craigdo@4265: is_static=True) craigdo@4265: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, std::string ndName, bool promiscuous) [member function] vincent@3842: cls.add_method('EnablePcap', vincent@3842: 'void', craigdo@4265: [param('std::string', 'filename'), param('std::string', 'ndName'), param('bool', 'promiscuous')], vincent@3842: is_static=True) craigdo@4265: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d, bool promiscuous) [member function] vincent@3842: cls.add_method('EnablePcap', vincent@3842: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd'), param('bool', 'promiscuous')], vincent@3842: is_static=True) craigdo@4265: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, ns3::NodeContainer n, bool promiscuous) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::NodeContainer', 'n'), param('bool', 'promiscuous')], craigdo@4265: is_static=True) craigdo@4265: ## emu-helper.h: static void ns3::EmuHelper::EnablePcapAll(std::string filename, bool promiscuous) [member function] vincent@3842: cls.add_method('EnablePcapAll', vincent@3842: 'void', craigdo@4265: [param('std::string', 'filename'), param('bool', 'promiscuous')], vincent@3842: is_static=True) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function] vincent@3842: cls.add_method('EnableAscii', vincent@3842: 'void', vincent@3842: [param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], vincent@3842: is_static=True) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function] vincent@3842: cls.add_method('EnableAscii', vincent@3842: 'void', vincent@3842: [param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')], vincent@3842: is_static=True) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function] vincent@3842: cls.add_method('EnableAscii', vincent@3842: 'void', vincent@3842: [param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')], vincent@3842: is_static=True) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnableAsciiAll(std::ostream & os) [member function] vincent@3842: cls.add_method('EnableAsciiAll', vincent@3842: 'void', vincent@3842: [param('std::ostream &', 'os')], vincent@3842: is_static=True) gjc@3855: ## emu-helper.h: ns3::NetDeviceContainer ns3::EmuHelper::Install(ns3::Ptr node) const [member function] vincent@3842: cls.add_method('Install', vincent@3842: 'ns3::NetDeviceContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) gjc@4204: ## emu-helper.h: ns3::NetDeviceContainer ns3::EmuHelper::Install(std::string nodeName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('std::string', 'nodeName')], gjc@4204: is_const=True) gjc@3855: ## emu-helper.h: ns3::NetDeviceContainer ns3::EmuHelper::Install(ns3::NodeContainer const & c) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::NetDeviceContainer', gjc@3855: [param('ns3::NodeContainer const &', 'c')], gjc@3855: is_const=True) vincent@3842: return vincent@3842: gjc@3731: def register_Ns3InternetStackHelper_methods(root_module, cls): mathieu@4241: ## internet-stack-helper.h: ns3::InternetStackHelper::InternetStackHelper(ns3::InternetStackHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::InternetStackHelper const &', 'arg0')]) gjc@3731: ## internet-stack-helper.h: ns3::InternetStackHelper::InternetStackHelper() [constructor] gjc@3731: cls.add_constructor([]) gjc@4204: ## internet-stack-helper.h: void ns3::InternetStackHelper::Install(std::string nodeName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'void', gjc@4204: [param('std::string', 'nodeName')], gjc@4204: is_const=True) gjc@3855: ## internet-stack-helper.h: void ns3::InternetStackHelper::Install(ns3::Ptr node) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'void', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) gjc@3855: ## internet-stack-helper.h: void ns3::InternetStackHelper::Install(ns3::NodeContainer c) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'void', gjc@3855: [param('ns3::NodeContainer', 'c')], gjc@3855: is_const=True) tomh@4474: ## internet-stack-helper.h: void ns3::InternetStackHelper::SetTcp(std::string tid) [member function] tomh@4474: cls.add_method('SetTcp', gjc@3731: 'void', tomh@4474: [param('std::string', 'tid')]) tomh@4474: ## internet-stack-helper.h: void ns3::InternetStackHelper::SetTcp(std::string tid, std::string attr, ns3::AttributeValue const & val) [member function] tomh@4474: cls.add_method('SetTcp', tomh@4474: 'void', tomh@4474: [param('std::string', 'tid'), param('std::string', 'attr'), param('ns3::AttributeValue const &', 'val')]) craigdo@3864: ## internet-stack-helper.h: static void ns3::InternetStackHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function] craigdo@3864: cls.add_method('EnableAscii', craigdo@3864: 'void', craigdo@3864: [param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')], craigdo@3864: is_static=True) craigdo@3864: ## internet-stack-helper.h: static void ns3::InternetStackHelper::EnableAsciiAll(std::ostream & os) [member function] craigdo@3864: cls.add_method('EnableAsciiAll', craigdo@3864: 'void', craigdo@3864: [param('std::ostream &', 'os')], craigdo@3864: is_static=True) gjc@3731: ## internet-stack-helper.h: static void ns3::InternetStackHelper::EnablePcapAll(std::string filename) [member function] gjc@3731: cls.add_method('EnablePcapAll', gjc@3731: 'void', gjc@3731: [param('std::string', 'filename')], gjc@3731: is_static=True) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3Ipv4AddressHelper_methods(root_module, cls): mathieu@4241: ## ipv4-address-helper.h: ns3::Ipv4AddressHelper::Ipv4AddressHelper(ns3::Ipv4AddressHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::Ipv4AddressHelper const &', 'arg0')]) gjc@3731: ## ipv4-address-helper.h: ns3::Ipv4AddressHelper::Ipv4AddressHelper() [constructor] gjc@3731: cls.add_constructor([]) gjc@3731: ## ipv4-address-helper.h: void ns3::Ipv4AddressHelper::SetBase(ns3::Ipv4Address network, ns3::Ipv4Mask mask, ns3::Ipv4Address base="0.0.0.1") [member function] gjc@3731: cls.add_method('SetBase', gjc@3731: 'void', gjc@3731: [param('ns3::Ipv4Address', 'network'), param('ns3::Ipv4Mask', 'mask'), param('ns3::Ipv4Address', 'base', default_value='"0.0.0.1"')]) gjc@3731: ## ipv4-address-helper.h: ns3::Ipv4Address ns3::Ipv4AddressHelper::NewNetwork() [member function] gjc@3731: cls.add_method('NewNetwork', gjc@3731: 'ns3::Ipv4Address', gjc@3731: []) gjc@3731: ## ipv4-address-helper.h: ns3::Ipv4Address ns3::Ipv4AddressHelper::NewAddress() [member function] gjc@3731: cls.add_method('NewAddress', gjc@3731: 'ns3::Ipv4Address', gjc@3731: []) gjc@3731: ## ipv4-address-helper.h: ns3::Ipv4InterfaceContainer ns3::Ipv4AddressHelper::Assign(ns3::NetDeviceContainer const & c) [member function] gjc@3731: cls.add_method('Assign', gjc@3731: 'ns3::Ipv4InterfaceContainer', gjc@3731: [param('ns3::NetDeviceContainer const &', 'c')]) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3Ipv4InterfaceContainer_methods(root_module, cls): mathieu@4241: ## ipv4-interface-container.h: ns3::Ipv4InterfaceContainer::Ipv4InterfaceContainer(ns3::Ipv4InterfaceContainer const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::Ipv4InterfaceContainer const &', 'arg0')]) gjc@3731: ## ipv4-interface-container.h: ns3::Ipv4InterfaceContainer::Ipv4InterfaceContainer() [constructor] gjc@3731: cls.add_constructor([]) mathieu@3816: ## ipv4-interface-container.h: void ns3::Ipv4InterfaceContainer::Add(ns3::Ipv4InterfaceContainer other) [member function] mathieu@3816: cls.add_method('Add', mathieu@3816: 'void', mathieu@3816: [param('ns3::Ipv4InterfaceContainer', 'other')]) gjc@3731: ## ipv4-interface-container.h: uint32_t ns3::Ipv4InterfaceContainer::GetN() const [member function] gjc@3731: cls.add_method('GetN', gjc@3731: 'uint32_t', gjc@3731: [], gjc@3731: is_const=True) tomh@4382: ## ipv4-interface-container.h: ns3::Ipv4Address ns3::Ipv4InterfaceContainer::GetAddress(uint32_t i, uint32_t j=0) const [member function] gjc@3731: cls.add_method('GetAddress', gjc@3731: 'ns3::Ipv4Address', tomh@4382: [param('uint32_t', 'i'), param('uint32_t', 'j', default_value='0')], gjc@3731: is_const=True) gjc@3731: ## ipv4-interface-container.h: void ns3::Ipv4InterfaceContainer::SetMetric(uint32_t i, uint16_t metric) [member function] gjc@3731: cls.add_method('SetMetric', gjc@3731: 'void', gjc@3731: [param('uint32_t', 'i'), param('uint16_t', 'metric')]) gjc@3731: ## ipv4-interface-container.h: void ns3::Ipv4InterfaceContainer::Add(ns3::Ptr ipv4, uint32_t interface) [member function] gjc@3731: cls.add_method('Add', gjc@3731: 'void', gjc@3731: [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4'), param('uint32_t', 'interface')]) raj@4237: ## ipv4-interface-container.h: void ns3::Ipv4InterfaceContainer::Add(std::string ipv4Name, uint32_t interface) [member function] raj@4237: cls.add_method('Add', raj@4237: 'void', raj@4237: [param('std::string', 'ipv4Name'), param('uint32_t', 'interface')]) gjc@3408: return gjc@3408: tomh@4474: def register_Ns3Ipv4StaticRoutingHelper_methods(root_module, cls): tomh@4474: ## ipv4-static-routing-helper.h: ns3::Ipv4StaticRoutingHelper::Ipv4StaticRoutingHelper(ns3::Ipv4StaticRoutingHelper const & arg0) [copy constructor] tomh@4474: cls.add_constructor([param('ns3::Ipv4StaticRoutingHelper const &', 'arg0')]) tomh@4474: ## ipv4-static-routing-helper.h: ns3::Ipv4StaticRoutingHelper::Ipv4StaticRoutingHelper() [constructor] tomh@4474: cls.add_constructor([]) tomh@4474: ## ipv4-static-routing-helper.h: ns3::Ptr ns3::Ipv4StaticRoutingHelper::GetStaticRouting(ns3::Ptr ipv4) const [member function] tomh@4474: cls.add_method('GetStaticRouting', tomh@4474: 'ns3::Ptr< ns3::Ipv4StaticRouting >', tomh@4474: [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], tomh@4474: is_const=True) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::AddMulticastRoute(ns3::Ptr n, ns3::Ipv4Address source, ns3::Ipv4Address group, ns3::Ptr input, ns3::NetDeviceContainer output) [member function] tomh@4474: cls.add_method('AddMulticastRoute', tomh@4474: 'void', tomh@4474: [param('ns3::Ptr< ns3::Node >', 'n'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group'), param('ns3::Ptr< ns3::NetDevice >', 'input'), param('ns3::NetDeviceContainer', 'output')]) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::AddMulticastRoute(std::string n, ns3::Ipv4Address source, ns3::Ipv4Address group, ns3::Ptr input, ns3::NetDeviceContainer output) [member function] tomh@4474: cls.add_method('AddMulticastRoute', tomh@4474: 'void', tomh@4474: [param('std::string', 'n'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group'), param('ns3::Ptr< ns3::NetDevice >', 'input'), param('ns3::NetDeviceContainer', 'output')]) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::AddMulticastRoute(ns3::Ptr n, ns3::Ipv4Address source, ns3::Ipv4Address group, std::string inputName, ns3::NetDeviceContainer output) [member function] tomh@4474: cls.add_method('AddMulticastRoute', tomh@4474: 'void', tomh@4474: [param('ns3::Ptr< ns3::Node >', 'n'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group'), param('std::string', 'inputName'), param('ns3::NetDeviceContainer', 'output')]) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::AddMulticastRoute(std::string nName, ns3::Ipv4Address source, ns3::Ipv4Address group, std::string inputName, ns3::NetDeviceContainer output) [member function] tomh@4474: cls.add_method('AddMulticastRoute', tomh@4474: 'void', tomh@4474: [param('std::string', 'nName'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group'), param('std::string', 'inputName'), param('ns3::NetDeviceContainer', 'output')]) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::SetDefaultMulticastRoute(ns3::Ptr n, ns3::Ptr nd) [member function] tomh@4474: cls.add_method('SetDefaultMulticastRoute', tomh@4474: 'void', tomh@4474: [param('ns3::Ptr< ns3::Node >', 'n'), param('ns3::Ptr< ns3::NetDevice >', 'nd')]) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::SetDefaultMulticastRoute(ns3::Ptr n, std::string ndName) [member function] tomh@4474: cls.add_method('SetDefaultMulticastRoute', tomh@4474: 'void', tomh@4474: [param('ns3::Ptr< ns3::Node >', 'n'), param('std::string', 'ndName')]) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::SetDefaultMulticastRoute(std::string nName, ns3::Ptr nd) [member function] tomh@4474: cls.add_method('SetDefaultMulticastRoute', tomh@4474: 'void', tomh@4474: [param('std::string', 'nName'), param('ns3::Ptr< ns3::NetDevice >', 'nd')]) tomh@4474: ## ipv4-static-routing-helper.h: void ns3::Ipv4StaticRoutingHelper::SetDefaultMulticastRoute(std::string nName, std::string ndName) [member function] tomh@4474: cls.add_method('SetDefaultMulticastRoute', tomh@4474: 'void', tomh@4474: [param('std::string', 'nName'), param('std::string', 'ndName')]) tomh@4474: return tomh@4474: gjc@3408: def register_Ns3MobilityHelper_methods(root_module, cls): mathieu@4241: ## mobility-helper.h: ns3::MobilityHelper::MobilityHelper(ns3::MobilityHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::MobilityHelper const &', 'arg0')]) gjc@3408: ## mobility-helper.h: ns3::MobilityHelper::MobilityHelper() [constructor] gjc@3468: cls.add_constructor([]) gjc@3408: ## mobility-helper.h: void ns3::MobilityHelper::SetPositionAllocator(ns3::Ptr allocator) [member function] gjc@3468: cls.add_method('SetPositionAllocator', gjc@3468: 'void', gjc@3468: [param('ns3::Ptr< ns3::PositionAllocator >', 'allocator')]) gjc@3408: ## mobility-helper.h: void ns3::MobilityHelper::SetPositionAllocator(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue(), std::string n8="", ns3::AttributeValue const & v8=ns3::EmptyAttributeValue(), std::string n9="", ns3::AttributeValue const & v9=ns3::EmptyAttributeValue()) [member function] gjc@3468: cls.add_method('SetPositionAllocator', gjc@3468: 'void', gjc@3574: [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n8', default_value='""'), param('ns3::AttributeValue const &', 'v8', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n9', default_value='""'), param('ns3::AttributeValue const &', 'v9', default_value='ns3::EmptyAttributeValue()')]) gjc@3408: ## mobility-helper.h: void ns3::MobilityHelper::SetMobilityModel(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue(), std::string n8="", ns3::AttributeValue const & v8=ns3::EmptyAttributeValue(), std::string n9="", ns3::AttributeValue const & v9=ns3::EmptyAttributeValue()) [member function] gjc@3468: cls.add_method('SetMobilityModel', gjc@3468: 'void', gjc@3574: [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n8', default_value='""'), param('ns3::AttributeValue const &', 'v8', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n9', default_value='""'), param('ns3::AttributeValue const &', 'v9', default_value='ns3::EmptyAttributeValue()')]) gjc@3408: ## mobility-helper.h: void ns3::MobilityHelper::PushReferenceMobilityModel(ns3::Ptr reference) [member function] gjc@3468: cls.add_method('PushReferenceMobilityModel', gjc@3468: 'void', gjc@3468: [param('ns3::Ptr< ns3::Object >', 'reference')]) gjc@4204: ## mobility-helper.h: void ns3::MobilityHelper::PushReferenceMobilityModel(std::string referenceName) [member function] gjc@4204: cls.add_method('PushReferenceMobilityModel', gjc@4204: 'void', gjc@4204: [param('std::string', 'referenceName')]) gjc@3408: ## mobility-helper.h: void ns3::MobilityHelper::PopReferenceMobilityModel() [member function] gjc@3468: cls.add_method('PopReferenceMobilityModel', gjc@3468: 'void', gjc@3468: []) gjc@3408: ## mobility-helper.h: std::string ns3::MobilityHelper::GetMobilityModelType() const [member function] gjc@3468: cls.add_method('GetMobilityModelType', gjc@3468: 'std::string', gjc@3468: [], gjc@3468: is_const=True) gjc@3855: ## mobility-helper.h: void ns3::MobilityHelper::Install(ns3::Ptr node) const [member function] gjc@3468: cls.add_method('Install', gjc@3468: 'void', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) gjc@4204: ## mobility-helper.h: void ns3::MobilityHelper::Install(std::string nodeName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'void', gjc@4204: [param('std::string', 'nodeName')], gjc@4204: is_const=True) gjc@3855: ## mobility-helper.h: void ns3::MobilityHelper::Install(ns3::NodeContainer container) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'void', gjc@3855: [param('ns3::NodeContainer', 'container')], gjc@3855: is_const=True) gjc@3408: ## mobility-helper.h: void ns3::MobilityHelper::InstallAll() [member function] gjc@3468: cls.add_method('InstallAll', gjc@3468: 'void', gjc@3468: []) gjc@3511: ## mobility-helper.h: static void ns3::MobilityHelper::EnableAscii(std::ostream & os, uint32_t nodeid) [member function] gjc@3511: cls.add_method('EnableAscii', gjc@3511: 'void', gjc@3574: [param('std::ostream &', 'os'), param('uint32_t', 'nodeid')], gjc@3511: is_static=True) gjc@3511: ## mobility-helper.h: static void ns3::MobilityHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function] gjc@3511: cls.add_method('EnableAscii', gjc@3511: 'void', gjc@3574: [param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')], gjc@3511: is_static=True) gjc@3511: ## mobility-helper.h: static void ns3::MobilityHelper::EnableAsciiAll(std::ostream & os) [member function] gjc@3511: cls.add_method('EnableAsciiAll', gjc@3511: 'void', gjc@3574: [param('std::ostream &', 'os')], gjc@3511: is_static=True) gjc@3408: return gjc@3408: gjc@3731: def register_Ns3NetDeviceContainer_methods(root_module, cls): mathieu@4241: ## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')]) gjc@3731: ## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer() [constructor] gjc@3567: cls.add_constructor([]) gjc@3731: ## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr dev) [constructor] gjc@3731: cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')]) gjc@4204: ## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor] gjc@4204: cls.add_constructor([param('std::string', 'devName')]) gjc@3731: ## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor] gjc@3731: cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')]) gjc@3731: ## net-device-container.h: __gnu_cxx::__normal_iterator*,std::vector, std::allocator > > > ns3::NetDeviceContainer::Begin() const [member function] gjc@3731: cls.add_method('Begin', gjc@3731: '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', gjc@3731: [], gjc@3731: is_const=True) gjc@3731: ## net-device-container.h: __gnu_cxx::__normal_iterator*,std::vector, std::allocator > > > ns3::NetDeviceContainer::End() const [member function] gjc@3731: cls.add_method('End', gjc@3731: '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', gjc@3731: [], gjc@3731: is_const=True) gjc@3731: ## net-device-container.h: uint32_t ns3::NetDeviceContainer::GetN() const [member function] gjc@3731: cls.add_method('GetN', gjc@3731: 'uint32_t', gjc@3731: [], gjc@3731: is_const=True) gjc@3731: ## net-device-container.h: ns3::Ptr ns3::NetDeviceContainer::Get(uint32_t i) const [member function] gjc@3731: cls.add_method('Get', gjc@3731: 'ns3::Ptr< ns3::NetDevice >', gjc@3731: [param('uint32_t', 'i')], gjc@3731: is_const=True) gjc@3731: ## net-device-container.h: void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function] gjc@3731: cls.add_method('Add', gjc@3468: 'void', gjc@3731: [param('ns3::NetDeviceContainer', 'other')]) gjc@3731: ## net-device-container.h: void ns3::NetDeviceContainer::Add(ns3::Ptr device) [member function] gjc@3731: cls.add_method('Add', mathieu@3588: 'void', gjc@3731: [param('ns3::Ptr< ns3::NetDevice >', 'device')]) raj@4237: ## net-device-container.h: void ns3::NetDeviceContainer::Add(std::string deviceName) [member function] raj@4237: cls.add_method('Add', raj@4237: 'void', raj@4237: [param('std::string', 'deviceName')]) gjc@3408: return gjc@3408: gjc@3408: def register_Ns3NodeContainer_methods(root_module, cls): mathieu@4241: ## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')]) gjc@3408: ## node-container.h: ns3::NodeContainer::NodeContainer() [constructor] gjc@3468: cls.add_constructor([]) gjc@3408: ## node-container.h: ns3::NodeContainer::NodeContainer(ns3::Ptr node) [constructor] gjc@3468: cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')]) gjc@4204: ## node-container.h: ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor] gjc@4204: cls.add_constructor([param('std::string', 'nodeName')]) gjc@3408: ## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor] gjc@3574: cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')]) gjc@3408: ## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor] gjc@3574: cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')]) gjc@3408: ## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d) [constructor] gjc@3574: cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')]) gjc@3951: ## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d, ns3::NodeContainer const & e) [constructor] gjc@3951: cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd'), param('ns3::NodeContainer const &', 'e')]) gjc@3408: ## node-container.h: __gnu_cxx::__normal_iterator*,std::vector, std::allocator > > > ns3::NodeContainer::Begin() const [member function] gjc@3468: cls.add_method('Begin', gjc@3731: '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', gjc@3468: [], gjc@3468: is_const=True) gjc@3408: ## node-container.h: __gnu_cxx::__normal_iterator*,std::vector, std::allocator > > > ns3::NodeContainer::End() const [member function] gjc@3468: cls.add_method('End', gjc@3731: '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', gjc@3468: [], gjc@3468: is_const=True) gjc@3408: ## node-container.h: uint32_t ns3::NodeContainer::GetN() const [member function] gjc@3468: cls.add_method('GetN', gjc@3468: 'uint32_t', gjc@3468: [], gjc@3468: is_const=True) gjc@3408: ## node-container.h: ns3::Ptr ns3::NodeContainer::Get(uint32_t i) const [member function] gjc@3468: cls.add_method('Get', gjc@3468: 'ns3::Ptr< ns3::Node >', gjc@3468: [param('uint32_t', 'i')], gjc@3468: is_const=True) gjc@3408: ## node-container.h: void ns3::NodeContainer::Create(uint32_t n) [member function] gjc@3468: cls.add_method('Create', gjc@3468: 'void', gjc@3468: [param('uint32_t', 'n')]) gjc@3408: ## node-container.h: void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function] gjc@3468: cls.add_method('Add', gjc@3468: 'void', gjc@3468: [param('ns3::NodeContainer', 'other')]) gjc@3408: ## node-container.h: void ns3::NodeContainer::Add(ns3::Ptr node) [member function] gjc@3468: cls.add_method('Add', gjc@3468: 'void', gjc@3468: [param('ns3::Ptr< ns3::Node >', 'node')]) gjc@4204: ## node-container.h: void ns3::NodeContainer::Add(std::string nodeName) [member function] gjc@4204: cls.add_method('Add', gjc@4204: 'void', gjc@4204: [param('std::string', 'nodeName')]) gjc@3408: ## node-container.h: static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function] gjc@3468: cls.add_method('GetGlobal', gjc@3468: 'ns3::NodeContainer', gjc@3468: [], gjc@3468: is_static=True) gjc@3408: return gjc@3408: gjc@3731: def register_Ns3Ns2MobilityHelper_methods(root_module, cls): mathieu@4241: ## ns2-mobility-helper.h: ns3::Ns2MobilityHelper::Ns2MobilityHelper(ns3::Ns2MobilityHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::Ns2MobilityHelper const &', 'arg0')]) gjc@3731: ## ns2-mobility-helper.h: ns3::Ns2MobilityHelper::Ns2MobilityHelper(std::string filename) [constructor] gjc@3731: cls.add_constructor([param('std::string', 'filename')]) gjc@3731: ## ns2-mobility-helper.h: void ns3::Ns2MobilityHelper::Install() const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'void', gjc@3731: [], gjc@3731: is_const=True) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3OlsrHelper_methods(root_module, cls): mathieu@4241: ## olsr-helper.h: ns3::OlsrHelper::OlsrHelper(ns3::OlsrHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::OlsrHelper const &', 'arg0')]) gjc@3731: ## olsr-helper.h: ns3::OlsrHelper::OlsrHelper() [constructor] gjc@3731: cls.add_constructor([]) gjc@3731: ## olsr-helper.h: void ns3::OlsrHelper::SetAgent(std::string tid, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] gjc@3731: cls.add_method('SetAgent', gjc@3731: 'void', gjc@3731: [param('std::string', 'tid'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) gjc@3731: ## olsr-helper.h: void ns3::OlsrHelper::Install(ns3::NodeContainer container) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'void', gjc@3731: [param('ns3::NodeContainer', 'container')]) gjc@3731: ## olsr-helper.h: void ns3::OlsrHelper::Install(ns3::Ptr node) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'void', gjc@3731: [param('ns3::Ptr< ns3::Node >', 'node')]) gjc@4204: ## olsr-helper.h: void ns3::OlsrHelper::Install(std::string nodeName) [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'void', gjc@4204: [param('std::string', 'nodeName')]) gjc@3731: ## olsr-helper.h: void ns3::OlsrHelper::InstallAll() [member function] gjc@3731: cls.add_method('InstallAll', gjc@3731: 'void', gjc@3731: []) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3OnOffHelper_methods(root_module, cls): mathieu@4241: ## on-off-helper.h: ns3::OnOffHelper::OnOffHelper(ns3::OnOffHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::OnOffHelper const &', 'arg0')]) gjc@3731: ## on-off-helper.h: ns3::OnOffHelper::OnOffHelper(std::string protocol, ns3::Address address) [constructor] gjc@3731: cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')]) gjc@3731: ## on-off-helper.h: void ns3::OnOffHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] gjc@3731: cls.add_method('SetAttribute', gjc@3731: 'void', gjc@3731: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) gjc@3855: ## on-off-helper.h: ns3::ApplicationContainer ns3::OnOffHelper::Install(ns3::NodeContainer c) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::NodeContainer', 'c')], gjc@3855: is_const=True) gjc@3855: ## on-off-helper.h: ns3::ApplicationContainer ns3::OnOffHelper::Install(ns3::Ptr node) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) raj@4237: ## on-off-helper.h: ns3::ApplicationContainer ns3::OnOffHelper::Install(std::string nodeName) const [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::ApplicationContainer', raj@4237: [param('std::string', 'nodeName')], raj@4237: is_const=True) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3PacketSinkHelper_methods(root_module, cls): mathieu@4241: ## packet-sink-helper.h: ns3::PacketSinkHelper::PacketSinkHelper(ns3::PacketSinkHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::PacketSinkHelper const &', 'arg0')]) gjc@3731: ## packet-sink-helper.h: ns3::PacketSinkHelper::PacketSinkHelper(std::string protocol, ns3::Address address) [constructor] gjc@3731: cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')]) gjc@3731: ## packet-sink-helper.h: void ns3::PacketSinkHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] gjc@3731: cls.add_method('SetAttribute', gjc@3731: 'void', gjc@3731: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) gjc@3855: ## packet-sink-helper.h: ns3::ApplicationContainer ns3::PacketSinkHelper::Install(ns3::NodeContainer c) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::NodeContainer', 'c')], gjc@3855: is_const=True) gjc@3855: ## packet-sink-helper.h: ns3::ApplicationContainer ns3::PacketSinkHelper::Install(ns3::Ptr node) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) raj@4237: ## packet-sink-helper.h: ns3::ApplicationContainer ns3::PacketSinkHelper::Install(std::string nodeName) const [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::ApplicationContainer', raj@4237: [param('std::string', 'nodeName')], raj@4237: is_const=True) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3PacketSocketHelper_methods(root_module, cls): mathieu@4241: ## packet-socket-helper.h: ns3::PacketSocketHelper::PacketSocketHelper(ns3::PacketSocketHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::PacketSocketHelper const &', 'arg0')]) mathieu@4241: ## packet-socket-helper.h: ns3::PacketSocketHelper::PacketSocketHelper() [constructor] mathieu@4241: cls.add_constructor([]) gjc@3855: ## packet-socket-helper.h: void ns3::PacketSocketHelper::Install(ns3::Ptr node) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'void', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) gjc@4204: ## packet-socket-helper.h: void ns3::PacketSocketHelper::Install(std::string nodeName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'void', gjc@4204: [param('std::string', 'nodeName')], gjc@4204: is_const=True) gjc@3855: ## packet-socket-helper.h: void ns3::PacketSocketHelper::Install(ns3::NodeContainer c) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'void', gjc@3855: [param('ns3::NodeContainer', 'c')], gjc@3855: is_const=True) gjc@3731: return gjc@3731: gjc@3408: def register_Ns3PointToPointHelper_methods(root_module, cls): mathieu@4241: ## point-to-point-helper.h: ns3::PointToPointHelper::PointToPointHelper(ns3::PointToPointHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::PointToPointHelper const &', 'arg0')]) gjc@3408: ## point-to-point-helper.h: ns3::PointToPointHelper::PointToPointHelper() [constructor] gjc@3468: cls.add_constructor([]) gjc@3408: ## point-to-point-helper.h: void ns3::PointToPointHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function] gjc@3468: cls.add_method('SetQueue', gjc@3468: 'void', gjc@3574: [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')]) gjc@3408: ## point-to-point-helper.h: void ns3::PointToPointHelper::SetDeviceAttribute(std::string name, ns3::AttributeValue const & value) [member function] gjc@3468: cls.add_method('SetDeviceAttribute', gjc@3468: 'void', gjc@3574: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) gjc@3408: ## point-to-point-helper.h: void ns3::PointToPointHelper::SetChannelAttribute(std::string name, ns3::AttributeValue const & value) [member function] gjc@3468: cls.add_method('SetChannelAttribute', gjc@3468: 'void', gjc@3574: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function] gjc@3468: cls.add_method('EnablePcap', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], gjc@3468: is_static=True) craigdo@4265: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, ns3::Ptr nd) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::Ptr< ns3::NetDevice >', 'nd')], craigdo@4265: is_static=True) craigdo@4265: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, std::string ndName) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('std::string', 'ndName')], craigdo@4265: is_static=True) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function] gjc@3468: cls.add_method('EnablePcap', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')], gjc@3468: is_static=True) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function] gjc@3468: cls.add_method('EnablePcap', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename'), param('ns3::NodeContainer', 'n')], gjc@3468: is_static=True) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnablePcapAll(std::string filename) [member function] gjc@3468: cls.add_method('EnablePcapAll', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename')], gjc@3468: is_static=True) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function] gjc@3468: cls.add_method('EnableAscii', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], gjc@3468: is_static=True) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function] gjc@3468: cls.add_method('EnableAscii', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')], gjc@3468: is_static=True) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function] gjc@3468: cls.add_method('EnableAscii', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')], gjc@3468: is_static=True) gjc@3408: ## point-to-point-helper.h: static void ns3::PointToPointHelper::EnableAsciiAll(std::ostream & os) [member function] gjc@3468: cls.add_method('EnableAsciiAll', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os')], gjc@3468: is_static=True) gjc@3408: ## point-to-point-helper.h: ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::NodeContainer c) [member function] gjc@3468: cls.add_method('Install', gjc@3468: 'ns3::NetDeviceContainer', gjc@3468: [param('ns3::NodeContainer', 'c')]) gjc@3408: ## point-to-point-helper.h: ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::Ptr a, ns3::Ptr b) [member function] gjc@3468: cls.add_method('Install', gjc@3468: 'ns3::NetDeviceContainer', gjc@3468: [param('ns3::Ptr< ns3::Node >', 'a'), param('ns3::Ptr< ns3::Node >', 'b')]) gjc@4204: ## point-to-point-helper.h: ns3::NetDeviceContainer ns3::PointToPointHelper::Install(ns3::Ptr a, std::string bName) [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('ns3::Ptr< ns3::Node >', 'a'), param('std::string', 'bName')]) gjc@4204: ## point-to-point-helper.h: ns3::NetDeviceContainer ns3::PointToPointHelper::Install(std::string aName, ns3::Ptr b) [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('std::string', 'aName'), param('ns3::Ptr< ns3::Node >', 'b')]) gjc@4204: ## point-to-point-helper.h: ns3::NetDeviceContainer ns3::PointToPointHelper::Install(std::string aNode, std::string bNode) [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::NetDeviceContainer', gjc@4204: [param('std::string', 'aNode'), param('std::string', 'bNode')]) mathieu@3816: ## point-to-point-helper.h: void ns3::PointToPointHelper::InstallStar(ns3::Ptr hub, ns3::NodeContainer spokes, ns3::NetDeviceContainer & hubDevices, ns3::NetDeviceContainer & spokeDevices) [member function] mathieu@3816: cls.add_method('InstallStar', mathieu@3816: 'void', mathieu@3816: [param('ns3::Ptr< ns3::Node >', 'hub'), param('ns3::NodeContainer', 'spokes'), param('ns3::NetDeviceContainer &', 'hubDevices'), param('ns3::NetDeviceContainer &', 'spokeDevices')]) raj@4237: ## point-to-point-helper.h: void ns3::PointToPointHelper::InstallStar(std::string hubName, ns3::NodeContainer spokes, ns3::NetDeviceContainer & hubDevices, ns3::NetDeviceContainer & spokeDevices) [member function] raj@4237: cls.add_method('InstallStar', raj@4237: 'void', raj@4237: [param('std::string', 'hubName'), param('ns3::NodeContainer', 'spokes'), param('ns3::NetDeviceContainer &', 'hubDevices'), param('ns3::NetDeviceContainer &', 'spokeDevices')]) gjc@3408: return gjc@3408: raj@4237: def register_Ns3TapBridgeHelper_methods(root_module, cls): mathieu@4241: ## tap-bridge-helper.h: ns3::TapBridgeHelper::TapBridgeHelper(ns3::TapBridgeHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::TapBridgeHelper const &', 'arg0')]) craigdo@4298: ## tap-bridge-helper.h: ns3::TapBridgeHelper::TapBridgeHelper() [constructor] craigdo@4298: cls.add_constructor([]) raj@4237: ## tap-bridge-helper.h: ns3::TapBridgeHelper::TapBridgeHelper(ns3::Ipv4Address gateway) [constructor] raj@4237: cls.add_constructor([param('ns3::Ipv4Address', 'gateway')]) raj@4237: ## tap-bridge-helper.h: void ns3::TapBridgeHelper::SetAttribute(std::string n1, ns3::AttributeValue const & v1) [member function] raj@4237: cls.add_method('SetAttribute', raj@4237: 'void', raj@4237: [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')]) raj@4237: ## tap-bridge-helper.h: ns3::Ptr ns3::TapBridgeHelper::Install(ns3::Ptr node, ns3::Ptr nd) [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::Ptr< ns3::NetDevice >', raj@4237: [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice >', 'nd')]) raj@4237: ## tap-bridge-helper.h: ns3::Ptr ns3::TapBridgeHelper::Install(std::string nodeName, ns3::Ptr nd) [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::Ptr< ns3::NetDevice >', raj@4237: [param('std::string', 'nodeName'), param('ns3::Ptr< ns3::NetDevice >', 'nd')]) raj@4237: ## tap-bridge-helper.h: ns3::Ptr ns3::TapBridgeHelper::Install(ns3::Ptr node, std::string ndName) [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::Ptr< ns3::NetDevice >', raj@4237: [param('ns3::Ptr< ns3::Node >', 'node'), param('std::string', 'ndName')]) raj@4237: ## tap-bridge-helper.h: ns3::Ptr ns3::TapBridgeHelper::Install(std::string nodeName, std::string ndName) [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::Ptr< ns3::NetDevice >', raj@4237: [param('std::string', 'nodeName'), param('std::string', 'ndName')]) craigdo@4298: ## tap-bridge-helper.h: ns3::Ptr ns3::TapBridgeHelper::Install(ns3::Ptr node, ns3::Ptr nd, ns3::AttributeValue const & v1) [member function] craigdo@4298: cls.add_method('Install', craigdo@4298: 'ns3::Ptr< ns3::NetDevice >', craigdo@4298: [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('ns3::AttributeValue const &', 'v1')]) gjc@3408: return gjc@3408: gjc@3731: def register_Ns3UdpEchoClientHelper_methods(root_module, cls): mathieu@4241: ## udp-echo-helper.h: ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::UdpEchoClientHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::UdpEchoClientHelper const &', 'arg0')]) gjc@3731: ## udp-echo-helper.h: ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::Ipv4Address ip, uint16_t port) [constructor] gjc@3731: cls.add_constructor([param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')]) gjc@3731: ## udp-echo-helper.h: void ns3::UdpEchoClientHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] gjc@3731: cls.add_method('SetAttribute', gjc@3468: 'void', gjc@3731: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) gjc@3855: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(ns3::Ptr node) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) gjc@4204: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(std::string nodeName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::ApplicationContainer', gjc@4204: [param('std::string', 'nodeName')], gjc@4204: is_const=True) gjc@3855: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(ns3::NodeContainer c) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::NodeContainer', 'c')], gjc@3855: is_const=True) gjc@3408: return gjc@3408: gjc@3731: def register_Ns3UdpEchoServerHelper_methods(root_module, cls): mathieu@4241: ## udp-echo-helper.h: ns3::UdpEchoServerHelper::UdpEchoServerHelper(ns3::UdpEchoServerHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::UdpEchoServerHelper const &', 'arg0')]) gjc@3731: ## udp-echo-helper.h: ns3::UdpEchoServerHelper::UdpEchoServerHelper(uint16_t port) [constructor] gjc@3731: cls.add_constructor([param('uint16_t', 'port')]) gjc@3731: ## udp-echo-helper.h: void ns3::UdpEchoServerHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] gjc@3731: cls.add_method('SetAttribute', gjc@3468: 'void', gjc@3731: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) gjc@3855: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(ns3::Ptr node) const [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) gjc@4204: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(std::string nodeName) const [member function] gjc@4204: cls.add_method('Install', gjc@4204: 'ns3::ApplicationContainer', gjc@4204: [param('std::string', 'nodeName')], gjc@4204: is_const=True) gjc@3855: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(ns3::NodeContainer c) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::NodeContainer', 'c')], gjc@3855: is_const=True) gjc@3408: return gjc@3408: vincent@3842: def register_Ns3V4PingHelper_methods(root_module, cls): mathieu@4241: ## v4ping-helper.h: ns3::V4PingHelper::V4PingHelper(ns3::V4PingHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::V4PingHelper const &', 'arg0')]) vincent@3842: ## v4ping-helper.h: ns3::V4PingHelper::V4PingHelper(ns3::Ipv4Address remote) [constructor] vincent@3842: cls.add_constructor([param('ns3::Ipv4Address', 'remote')]) vincent@3842: ## v4ping-helper.h: void ns3::V4PingHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function] vincent@3842: cls.add_method('SetAttribute', vincent@3842: 'void', vincent@3842: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')]) gjc@3855: ## v4ping-helper.h: ns3::ApplicationContainer ns3::V4PingHelper::Install(ns3::NodeContainer nodes) const [member function] vincent@3842: cls.add_method('Install', vincent@3842: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::NodeContainer', 'nodes')], gjc@3855: is_const=True) gjc@3855: ## v4ping-helper.h: ns3::ApplicationContainer ns3::V4PingHelper::Install(ns3::Ptr node) const [member function] gjc@3855: cls.add_method('Install', gjc@3855: 'ns3::ApplicationContainer', gjc@3855: [param('ns3::Ptr< ns3::Node >', 'node')], gjc@3855: is_const=True) raj@4237: ## v4ping-helper.h: ns3::ApplicationContainer ns3::V4PingHelper::Install(std::string nodeName) const [member function] raj@4237: cls.add_method('Install', raj@4237: 'ns3::ApplicationContainer', raj@4237: [param('std::string', 'nodeName')], raj@4237: is_const=True) vincent@3842: return vincent@3842: gjc@3408: def register_Ns3WifiHelper_methods(root_module, cls): mathieu@4241: ## wifi-helper.h: ns3::WifiHelper::WifiHelper(ns3::WifiHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::WifiHelper const &', 'arg0')]) gjc@3408: ## wifi-helper.h: ns3::WifiHelper::WifiHelper() [constructor] gjc@3468: cls.add_constructor([]) mathieu@3912: ## wifi-helper.h: static ns3::WifiHelper ns3::WifiHelper::Default() [member function] mathieu@3912: cls.add_method('Default', mathieu@3912: 'ns3::WifiHelper', mathieu@3912: [], mathieu@3912: is_static=True) gjc@3408: ## wifi-helper.h: void ns3::WifiHelper::SetRemoteStationManager(std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] gjc@3468: cls.add_method('SetRemoteStationManager', gjc@3468: 'void', gjc@3574: [param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) mathieu@4407: ## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::WifiPhyHelper const & phy, ns3::WifiMacHelper const & mac, ns3::NodeContainer c) const [member function] mathieu@4407: cls.add_method('Install', mathieu@4407: 'ns3::NetDeviceContainer', mathieu@4407: [param('ns3::WifiPhyHelper const &', 'phy'), param('ns3::WifiMacHelper const &', 'mac'), param('ns3::NodeContainer', 'c')], mathieu@4407: is_const=True) mathieu@4407: ## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::WifiPhyHelper const & phy, ns3::WifiMacHelper const & mac, ns3::Ptr node) const [member function] mathieu@4407: cls.add_method('Install', mathieu@4407: 'ns3::NetDeviceContainer', mathieu@4407: [param('ns3::WifiPhyHelper const &', 'phy'), param('ns3::WifiMacHelper const &', 'mac'), param('ns3::Ptr< ns3::Node >', 'node')], mathieu@4407: is_const=True) mathieu@4407: ## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::WifiPhyHelper const & phy, ns3::WifiMacHelper const & mac, std::string nodeName) const [member function] mathieu@3912: cls.add_method('Install', mathieu@3912: 'ns3::NetDeviceContainer', mathieu@4407: [param('ns3::WifiPhyHelper const &', 'phy'), param('ns3::WifiMacHelper const &', 'mac'), param('std::string', 'nodeName')], mathieu@3912: is_const=True) mathieu@4407: return mathieu@4407: mathieu@4407: def register_Ns3WifiMacHelper_methods(root_module, cls): mathieu@4407: ## wifi-helper.h: ns3::WifiMacHelper::WifiMacHelper(ns3::WifiMacHelper const & arg0) [copy constructor] mathieu@4407: cls.add_constructor([param('ns3::WifiMacHelper const &', 'arg0')]) mathieu@4407: ## wifi-helper.h: ns3::WifiMacHelper::WifiMacHelper() [constructor] mathieu@4407: cls.add_constructor([]) mathieu@4407: ## wifi-helper.h: ns3::Ptr ns3::WifiMacHelper::Create() const [member function] mathieu@4407: cls.add_method('Create', mathieu@4407: 'ns3::Ptr< ns3::WifiMac >', mathieu@4407: [], mathieu@4407: is_pure_virtual=True, is_const=True, is_virtual=True) mathieu@3912: return mathieu@3912: mathieu@3912: def register_Ns3WifiPhyHelper_methods(root_module, cls): mathieu@4241: ## wifi-helper.h: ns3::WifiPhyHelper::WifiPhyHelper(ns3::WifiPhyHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::WifiPhyHelper const &', 'arg0')]) mathieu@4241: ## wifi-helper.h: ns3::WifiPhyHelper::WifiPhyHelper() [constructor] mathieu@4241: cls.add_constructor([]) mathieu@3912: ## wifi-helper.h: ns3::Ptr ns3::WifiPhyHelper::Create(ns3::Ptr node, ns3::Ptr device) const [member function] mathieu@3912: cls.add_method('Create', mathieu@3912: 'ns3::Ptr< ns3::WifiPhy >', mathieu@3912: [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::WifiNetDevice >', 'device')], mathieu@3912: is_pure_virtual=True, is_const=True, is_virtual=True) mathieu@3912: return mathieu@3912: mathieu@3912: def register_Ns3YansWifiChannelHelper_methods(root_module, cls): mathieu@4241: ## yans-wifi-helper.h: ns3::YansWifiChannelHelper::YansWifiChannelHelper(ns3::YansWifiChannelHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::YansWifiChannelHelper const &', 'arg0')]) mathieu@4002: ## yans-wifi-helper.h: ns3::YansWifiChannelHelper::YansWifiChannelHelper() [constructor] mathieu@3912: cls.add_constructor([]) mathieu@4002: ## yans-wifi-helper.h: static ns3::YansWifiChannelHelper ns3::YansWifiChannelHelper::Default() [member function] mathieu@3912: cls.add_method('Default', mathieu@3912: 'ns3::YansWifiChannelHelper', mathieu@3912: [], mathieu@3912: is_static=True) mathieu@4002: ## yans-wifi-helper.h: void ns3::YansWifiChannelHelper::AddPropagationLoss(std::string name, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] mathieu@3912: cls.add_method('AddPropagationLoss', mathieu@3912: 'void', mathieu@3912: [param('std::string', 'name'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) mathieu@4002: ## yans-wifi-helper.h: void ns3::YansWifiChannelHelper::SetPropagationDelay(std::string name, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] mathieu@3912: cls.add_method('SetPropagationDelay', gjc@3468: 'void', mathieu@3912: [param('std::string', 'name'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) mathieu@4002: ## yans-wifi-helper.h: ns3::Ptr ns3::YansWifiChannelHelper::Create() const [member function] mathieu@3912: cls.add_method('Create', mathieu@3912: 'ns3::Ptr< ns3::YansWifiChannel >', mathieu@3912: [], mathieu@3912: is_const=True) mathieu@3912: return mathieu@3912: mathieu@3912: def register_Ns3YansWifiPhyHelper_methods(root_module, cls): mathieu@4241: ## yans-wifi-helper.h: ns3::YansWifiPhyHelper::YansWifiPhyHelper(ns3::YansWifiPhyHelper const & arg0) [copy constructor] mathieu@4241: cls.add_constructor([param('ns3::YansWifiPhyHelper const &', 'arg0')]) mathieu@4002: ## yans-wifi-helper.h: ns3::YansWifiPhyHelper::YansWifiPhyHelper() [constructor] mathieu@3912: cls.add_constructor([]) mathieu@4002: ## yans-wifi-helper.h: static ns3::YansWifiPhyHelper ns3::YansWifiPhyHelper::Default() [member function] mathieu@3912: cls.add_method('Default', mathieu@3912: 'ns3::YansWifiPhyHelper', mathieu@3912: [], mathieu@3912: is_static=True) mathieu@4002: ## yans-wifi-helper.h: void ns3::YansWifiPhyHelper::SetChannel(ns3::Ptr channel) [member function] mathieu@3912: cls.add_method('SetChannel', mathieu@3912: 'void', mathieu@3912: [param('ns3::Ptr< ns3::YansWifiChannel >', 'channel')]) gjc@4204: ## yans-wifi-helper.h: void ns3::YansWifiPhyHelper::SetChannel(std::string channelName) [member function] gjc@4204: cls.add_method('SetChannel', gjc@4204: 'void', gjc@4204: [param('std::string', 'channelName')]) mathieu@4002: ## yans-wifi-helper.h: void ns3::YansWifiPhyHelper::Set(std::string name, ns3::AttributeValue const & v) [member function] mathieu@3912: cls.add_method('Set', mathieu@3912: 'void', mathieu@3912: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'v')]) mathieu@4002: ## yans-wifi-helper.h: void ns3::YansWifiPhyHelper::SetErrorRateModel(std::string name, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] mathieu@3912: cls.add_method('SetErrorRateModel', mathieu@3912: 'void', mathieu@3912: [param('std::string', 'name'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function] gjc@3468: cls.add_method('EnablePcap', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], gjc@3468: is_static=True) craigdo@4265: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnablePcap(std::string filename, ns3::Ptr nd) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('ns3::Ptr< ns3::NetDevice >', 'nd')], craigdo@4265: is_static=True) craigdo@4265: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnablePcap(std::string filename, std::string ndName) [member function] craigdo@4265: cls.add_method('EnablePcap', craigdo@4265: 'void', craigdo@4265: [param('std::string', 'filename'), param('std::string', 'ndName')], craigdo@4265: is_static=True) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function] gjc@3468: cls.add_method('EnablePcap', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')], gjc@3468: is_static=True) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function] gjc@3468: cls.add_method('EnablePcap', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename'), param('ns3::NodeContainer', 'n')], gjc@3468: is_static=True) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnablePcapAll(std::string filename) [member function] gjc@3468: cls.add_method('EnablePcapAll', gjc@3468: 'void', gjc@3468: [param('std::string', 'filename')], gjc@3468: is_static=True) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnableAscii(std::ostream & os, uint32_t nodeid, uint32_t deviceid) [member function] gjc@3468: cls.add_method('EnableAscii', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], gjc@3468: is_static=True) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnableAscii(std::ostream & os, ns3::NetDeviceContainer d) [member function] gjc@3468: cls.add_method('EnableAscii', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os'), param('ns3::NetDeviceContainer', 'd')], gjc@3468: is_static=True) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnableAscii(std::ostream & os, ns3::NodeContainer n) [member function] gjc@3468: cls.add_method('EnableAscii', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os'), param('ns3::NodeContainer', 'n')], gjc@3468: is_static=True) mathieu@4002: ## yans-wifi-helper.h: static void ns3::YansWifiPhyHelper::EnableAsciiAll(std::ostream & os) [member function] gjc@3468: cls.add_method('EnableAsciiAll', gjc@3468: 'void', gjc@3574: [param('std::ostream &', 'os')], gjc@3468: is_static=True) mathieu@4002: ## yans-wifi-helper.h: ns3::Ptr ns3::YansWifiPhyHelper::Create(ns3::Ptr node, ns3::Ptr device) const [member function] mathieu@4002: cls.add_method('Create', mathieu@4002: 'ns3::Ptr< ns3::WifiPhy >', mathieu@4002: [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::WifiNetDevice >', 'device')], mathieu@4002: is_const=True, visibility='private', is_virtual=True) gjc@3408: return gjc@3408: mathieu@4407: def register_Ns3NqosWifiMacHelper_methods(root_module, cls): mathieu@4407: ## nqos-wifi-mac-helper.h: ns3::NqosWifiMacHelper::NqosWifiMacHelper(ns3::NqosWifiMacHelper const & arg0) [copy constructor] mathieu@4407: cls.add_constructor([param('ns3::NqosWifiMacHelper const &', 'arg0')]) mathieu@4407: ## nqos-wifi-mac-helper.h: ns3::NqosWifiMacHelper::NqosWifiMacHelper() [constructor] mathieu@4407: cls.add_constructor([]) mathieu@4407: ## nqos-wifi-mac-helper.h: static ns3::NqosWifiMacHelper ns3::NqosWifiMacHelper::Default() [member function] mathieu@4407: cls.add_method('Default', mathieu@4407: 'ns3::NqosWifiMacHelper', mathieu@4407: [], mathieu@4407: is_static=True) mathieu@4407: ## nqos-wifi-mac-helper.h: void ns3::NqosWifiMacHelper::SetType(std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] mathieu@4407: cls.add_method('SetType', mathieu@4407: 'void', mathieu@4407: [param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) mathieu@4407: ## nqos-wifi-mac-helper.h: void ns3::NqosWifiMacHelper::SetDcaParameters(std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue()) [member function] mathieu@4407: cls.add_method('SetDcaParameters', mathieu@4407: 'void', mathieu@4407: [param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()')]) mathieu@4407: ## nqos-wifi-mac-helper.h: ns3::Ptr ns3::NqosWifiMacHelper::Create() const [member function] mathieu@4407: cls.add_method('Create', mathieu@4407: 'ns3::Ptr< ns3::WifiMac >', mathieu@4407: [], mathieu@4407: is_const=True, visibility='private', is_virtual=True) mathieu@4407: return mathieu@4407: mathieu@4422: def register_Ns3QosWifiMacHelper_methods(root_module, cls): mathieu@4422: ## qos-wifi-mac-helper.h: ns3::QosWifiMacHelper::QosWifiMacHelper(ns3::QosWifiMacHelper const & arg0) [copy constructor] mathieu@4422: cls.add_constructor([param('ns3::QosWifiMacHelper const &', 'arg0')]) mathieu@4422: ## qos-wifi-mac-helper.h: ns3::QosWifiMacHelper::QosWifiMacHelper() [constructor] mathieu@4422: cls.add_constructor([]) mathieu@4422: ## qos-wifi-mac-helper.h: static ns3::QosWifiMacHelper ns3::QosWifiMacHelper::Default() [member function] mathieu@4422: cls.add_method('Default', mathieu@4422: 'ns3::QosWifiMacHelper', mathieu@4422: [], mathieu@4422: is_static=True) mathieu@4422: ## qos-wifi-mac-helper.h: void ns3::QosWifiMacHelper::SetType(std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue(), std::string n5="", ns3::AttributeValue const & v5=ns3::EmptyAttributeValue(), std::string n6="", ns3::AttributeValue const & v6=ns3::EmptyAttributeValue(), std::string n7="", ns3::AttributeValue const & v7=ns3::EmptyAttributeValue()) [member function] mathieu@4422: cls.add_method('SetType', mathieu@4422: 'void', mathieu@4422: [param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n5', default_value='""'), param('ns3::AttributeValue const &', 'v5', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n6', default_value='""'), param('ns3::AttributeValue const &', 'v6', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n7', default_value='""'), param('ns3::AttributeValue const &', 'v7', default_value='ns3::EmptyAttributeValue()')]) mathieu@4422: ## qos-wifi-mac-helper.h: void ns3::QosWifiMacHelper::SetMsduAggregatorForAc(ns3::AccessClass accessClass, std::string type, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue()) [member function] mathieu@4422: cls.add_method('SetMsduAggregatorForAc', mathieu@4422: 'void', mathieu@4422: [param('ns3::AccessClass', 'accessClass'), param('std::string', 'type'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()')]) mathieu@4422: ## qos-wifi-mac-helper.h: void ns3::QosWifiMacHelper::SetEdcaParametersForAc(ns3::AccessClass accessClass, std::string n0="", ns3::AttributeValue const & v0=ns3::EmptyAttributeValue(), std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue()) [member function] mathieu@4422: cls.add_method('SetEdcaParametersForAc', mathieu@4422: 'void', mathieu@4422: [param('ns3::AccessClass', 'accessClass'), param('std::string', 'n0', default_value='""'), param('ns3::AttributeValue const &', 'v0', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()')]) mathieu@4422: ## qos-wifi-mac-helper.h: ns3::Ptr ns3::QosWifiMacHelper::Create() const [member function] mathieu@4422: cls.add_method('Create', mathieu@4422: 'ns3::Ptr< ns3::WifiMac >', mathieu@4422: [], mathieu@4422: is_const=True, visibility='private', is_virtual=True) mathieu@4422: return mathieu@4422: gjc@3408: def register_functions(root_module): gjc@3408: module = root_module gjc@3855: register_functions_ns3_Config(module.get_submodule('Config'), root_module) gjc@3408: register_functions_ns3_TimeStepPrecision(module.get_submodule('TimeStepPrecision'), root_module) tomh@4474: register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module) gjc@3855: register_functions_ns3_internal(module.get_submodule('internal'), root_module) gjc@3408: register_functions_ns3_olsr(module.get_submodule('olsr'), root_module) gjc@3408: return gjc@3408: gjc@3855: def register_functions_ns3_Config(module, root_module): gjc@3855: return gjc@3855: gjc@3855: def register_functions_ns3_TimeStepPrecision(module, root_module): gjc@3855: return gjc@3855: tomh@4474: def register_functions_ns3_addressUtils(module, root_module): tomh@4474: return tomh@4474: gjc@3408: def register_functions_ns3_internal(module, root_module): gjc@3408: return gjc@3408: gjc@3408: def register_functions_ns3_olsr(module, root_module): gjc@3408: return gjc@3408: