gjc@3468: from pybindgen import Module, FileCodeSink, param, retval, cppclass 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') 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@3408: ## static-multicast-route-helper.h: ns3::StaticMulticastRouteHelper [class] gjc@3408: module.add_class('StaticMulticastRouteHelper', 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) gjc@3408: gjc@3408: ## Register a nested module for the namespace internal gjc@3408: gjc@3408: nested_module = module.add_cpp_namespace('internal') gjc@3408: register_types_ns3_internal(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: gjc@3408: ## Register a nested module for the namespace Config gjc@3408: gjc@3408: nested_module = module.add_cpp_namespace('Config') gjc@3408: register_types_ns3_Config(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@3408: def register_types_ns3_internal(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: gjc@3408: def register_types_ns3_Config(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']) 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@3408: register_Ns3StaticMulticastRouteHelper_methods(root_module, root_module['ns3::StaticMulticastRouteHelper']) 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']) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3ApplicationContainer_methods(root_module, cls): gjc@3731: ## application-container.h: ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor] gjc@3731: cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')]) gjc@3731: ## application-container.h: ns3::ApplicationContainer::ApplicationContainer() [constructor] gjc@3731: cls.add_constructor([]) 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@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): gjc@3731: ## bridge-helper.h: ns3::BridgeHelper::BridgeHelper(ns3::BridgeHelper const & arg0) [copy constructor] gjc@3731: 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')]) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3CsmaHelper_methods(root_module, cls): gjc@3731: ## csma-helper.h: ns3::CsmaHelper::CsmaHelper(ns3::CsmaHelper const & arg0) [copy constructor] gjc@3731: 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')]) gjc@3731: ## csma-helper.h: void ns3::CsmaHelper::SetDeviceParameter(std::string n1, ns3::AttributeValue const & v1) [member function] gjc@3731: cls.add_method('SetDeviceParameter', gjc@3731: 'void', gjc@3731: [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')], gjc@3731: deprecated=True) gjc@3731: ## csma-helper.h: void ns3::CsmaHelper::SetChannelParameter(std::string n1, ns3::AttributeValue const & v1) [member function] gjc@3731: cls.add_method('SetChannelParameter', gjc@3731: 'void', gjc@3731: [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')], gjc@3731: deprecated=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function] gjc@3731: cls.add_method('EnablePcap', gjc@3731: 'void', gjc@3731: [param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], gjc@3731: is_static=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function] gjc@3731: cls.add_method('EnablePcap', gjc@3731: 'void', gjc@3731: [param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')], gjc@3731: is_static=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function] gjc@3731: cls.add_method('EnablePcap', gjc@3731: 'void', gjc@3731: [param('std::string', 'filename'), param('ns3::NodeContainer', 'n')], gjc@3731: is_static=True) gjc@3731: ## csma-helper.h: static void ns3::CsmaHelper::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: ## 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@3731: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::NodeContainer const & c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::NetDeviceContainer', gjc@3731: [param('ns3::NodeContainer const &', 'c')]) gjc@3731: ## csma-helper.h: ns3::NetDeviceContainer ns3::CsmaHelper::Install(ns3::NodeContainer const & c, ns3::Ptr channel) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::NetDeviceContainer', gjc@3731: [param('ns3::NodeContainer const &', 'c'), param('ns3::Ptr< ns3::CsmaChannel >', 'channel')]) 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')]) gjc@3731: return gjc@3731: vincent@3842: def register_Ns3EmuHelper_methods(root_module, cls): vincent@3842: ## emu-helper.h: ns3::EmuHelper::EmuHelper(ns3::EmuHelper const & arg0) [copy constructor] vincent@3842: 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')]) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, uint32_t nodeid, uint32_t deviceid) [member function] vincent@3842: cls.add_method('EnablePcap', vincent@3842: 'void', vincent@3842: [param('std::string', 'filename'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')], vincent@3842: is_static=True) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, ns3::NetDeviceContainer d) [member function] vincent@3842: cls.add_method('EnablePcap', vincent@3842: 'void', vincent@3842: [param('std::string', 'filename'), param('ns3::NetDeviceContainer', 'd')], vincent@3842: is_static=True) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnablePcap(std::string filename, ns3::NodeContainer n) [member function] vincent@3842: cls.add_method('EnablePcap', vincent@3842: 'void', vincent@3842: [param('std::string', 'filename'), param('ns3::NodeContainer', 'n')], vincent@3842: is_static=True) vincent@3842: ## emu-helper.h: static void ns3::EmuHelper::EnablePcapAll(std::string filename) [member function] vincent@3842: cls.add_method('EnablePcapAll', vincent@3842: 'void', vincent@3842: [param('std::string', 'filename')], 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) vincent@3842: ## emu-helper.h: ns3::NetDeviceContainer ns3::EmuHelper::Install(ns3::NodeContainer const & c) [member function] vincent@3842: cls.add_method('Install', vincent@3842: 'ns3::NetDeviceContainer', vincent@3842: [param('ns3::NodeContainer const &', 'c')]) vincent@3842: return vincent@3842: gjc@3731: def register_Ns3InternetStackHelper_methods(root_module, cls): gjc@3731: ## internet-stack-helper.h: ns3::InternetStackHelper::InternetStackHelper(ns3::InternetStackHelper const & arg0) [copy constructor] gjc@3731: cls.add_constructor([param('ns3::InternetStackHelper const &', 'arg0')]) gjc@3731: ## internet-stack-helper.h: ns3::InternetStackHelper::InternetStackHelper() [constructor] gjc@3731: cls.add_constructor([]) gjc@3731: ## internet-stack-helper.h: void ns3::InternetStackHelper::Install(ns3::NodeContainer c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'void', gjc@3731: [param('ns3::NodeContainer', 'c')]) gjc@3731: ## internet-stack-helper.h: void ns3::InternetStackHelper::SetNscStack(std::string soname) [member function] gjc@3731: cls.add_method('SetNscStack', gjc@3731: 'void', gjc@3731: [param('std::string', 'soname')]) 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): gjc@3731: ## ipv4-address-helper.h: ns3::Ipv4AddressHelper::Ipv4AddressHelper(ns3::Ipv4AddressHelper const & arg0) [copy constructor] gjc@3731: 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): gjc@3731: ## ipv4-interface-container.h: ns3::Ipv4InterfaceContainer::Ipv4InterfaceContainer(ns3::Ipv4InterfaceContainer const & arg0) [copy constructor] gjc@3731: 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) gjc@3731: ## ipv4-interface-container.h: ns3::Ipv4Address ns3::Ipv4InterfaceContainer::GetAddress(uint32_t i) const [member function] gjc@3731: cls.add_method('GetAddress', gjc@3731: 'ns3::Ipv4Address', gjc@3731: [param('uint32_t', 'i')], 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')]) gjc@3408: return gjc@3408: gjc@3408: def register_Ns3MobilityHelper_methods(root_module, cls): gjc@3567: ## mobility-helper.h: ns3::MobilityHelper::MobilityHelper(ns3::MobilityHelper const & arg0) [copy constructor] gjc@3574: 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@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@3408: ## mobility-helper.h: void ns3::MobilityHelper::Install(ns3::NodeContainer container) [member function] gjc@3468: cls.add_method('Install', gjc@3468: 'void', gjc@3468: [param('ns3::NodeContainer', 'container')]) 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): gjc@3731: ## net-device-container.h: ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor] gjc@3731: 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@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')]) gjc@3408: return gjc@3408: gjc@3408: def register_Ns3NodeContainer_methods(root_module, cls): gjc@3567: ## node-container.h: ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor] gjc@3574: 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@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@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@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): gjc@3731: ## ns2-mobility-helper.h: ns3::Ns2MobilityHelper::Ns2MobilityHelper(ns3::Ns2MobilityHelper const & arg0) [copy constructor] gjc@3731: 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): gjc@3731: ## olsr-helper.h: ns3::OlsrHelper::OlsrHelper(ns3::OlsrHelper const & arg0) [copy constructor] gjc@3731: 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@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): gjc@3731: ## on-off-helper.h: ns3::OnOffHelper::OnOffHelper(ns3::OnOffHelper const & arg0) [copy constructor] gjc@3731: 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@3731: ## on-off-helper.h: ns3::ApplicationContainer ns3::OnOffHelper::Install(ns3::NodeContainer c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3731: [param('ns3::NodeContainer', 'c')]) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3PacketSinkHelper_methods(root_module, cls): gjc@3731: ## packet-sink-helper.h: ns3::PacketSinkHelper::PacketSinkHelper(ns3::PacketSinkHelper const & arg0) [copy constructor] gjc@3731: 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@3731: ## packet-sink-helper.h: ns3::ApplicationContainer ns3::PacketSinkHelper::Install(ns3::NodeContainer c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3731: [param('ns3::NodeContainer', 'c')]) gjc@3731: return gjc@3731: gjc@3731: def register_Ns3PacketSocketHelper_methods(root_module, cls): gjc@3731: ## packet-socket-helper.h: ns3::PacketSocketHelper::PacketSocketHelper(ns3::PacketSocketHelper const & arg0) [copy constructor] gjc@3731: cls.add_constructor([param('ns3::PacketSocketHelper const &', 'arg0')]) gjc@3731: ## packet-socket-helper.h: ns3::PacketSocketHelper::PacketSocketHelper() [constructor] gjc@3731: cls.add_constructor([]) gjc@3731: ## packet-socket-helper.h: void ns3::PacketSocketHelper::Install(ns3::NodeContainer c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'void', gjc@3731: [param('ns3::NodeContainer', 'c')]) gjc@3731: return gjc@3731: gjc@3408: def register_Ns3PointToPointHelper_methods(root_module, cls): gjc@3567: ## point-to-point-helper.h: ns3::PointToPointHelper::PointToPointHelper(ns3::PointToPointHelper const & arg0) [copy constructor] gjc@3574: 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@3416: ## point-to-point-helper.h: void ns3::PointToPointHelper::SetDeviceParameter(std::string name, ns3::AttributeValue const & value) [member function] gjc@3468: cls.add_method('SetDeviceParameter', gjc@3468: 'void', gjc@3574: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')], gjc@3468: deprecated=True) gjc@3416: ## point-to-point-helper.h: void ns3::PointToPointHelper::SetChannelParameter(std::string name, ns3::AttributeValue const & value) [member function] gjc@3468: cls.add_method('SetChannelParameter', gjc@3468: 'void', gjc@3574: [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')], gjc@3468: deprecated=True) 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) 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')]) 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')]) gjc@3408: return gjc@3408: gjc@3408: def register_Ns3StaticMulticastRouteHelper_methods(root_module, cls): gjc@3567: ## static-multicast-route-helper.h: ns3::StaticMulticastRouteHelper::StaticMulticastRouteHelper(ns3::StaticMulticastRouteHelper const & arg0) [copy constructor] gjc@3574: cls.add_constructor([param('ns3::StaticMulticastRouteHelper const &', 'arg0')]) gjc@3408: ## static-multicast-route-helper.h: ns3::StaticMulticastRouteHelper::StaticMulticastRouteHelper() [constructor] gjc@3468: cls.add_constructor([]) gjc@3408: ## static-multicast-route-helper.h: void ns3::StaticMulticastRouteHelper::AddMulticastRoute(ns3::Ptr arg0, ns3::Ipv4Address source, ns3::Ipv4Address group, ns3::Ptr input, ns3::NetDeviceContainer output) [member function] gjc@3468: cls.add_method('AddMulticastRoute', gjc@3468: 'void', gjc@3468: [param('ns3::Ptr< ns3::Node >', 'arg0'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group'), param('ns3::Ptr< ns3::NetDevice >', 'input'), param('ns3::NetDeviceContainer', 'output')]) gjc@3408: ## static-multicast-route-helper.h: void ns3::StaticMulticastRouteHelper::SetDefaultMulticastRoute(ns3::Ptr n, ns3::Ptr nd) [member function] gjc@3468: cls.add_method('SetDefaultMulticastRoute', gjc@3468: 'void', gjc@3468: [param('ns3::Ptr< ns3::Node >', 'n'), param('ns3::Ptr< ns3::NetDevice >', 'nd')]) gjc@3408: ## static-multicast-route-helper.h: void ns3::StaticMulticastRouteHelper::JoinMulticastGroup(ns3::Ptr n, ns3::Ipv4Address source, ns3::Ipv4Address group) [member function] gjc@3468: cls.add_method('JoinMulticastGroup', gjc@3468: 'void', gjc@3468: [param('ns3::Ptr< ns3::Node >', 'n'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'group')]) gjc@3408: return gjc@3408: gjc@3731: def register_Ns3UdpEchoClientHelper_methods(root_module, cls): gjc@3731: ## udp-echo-helper.h: ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::UdpEchoClientHelper const & arg0) [copy constructor] gjc@3731: 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@3731: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(ns3::NodeContainer c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3731: [param('ns3::NodeContainer', 'c')]) gjc@3408: return gjc@3408: gjc@3731: def register_Ns3UdpEchoServerHelper_methods(root_module, cls): gjc@3731: ## udp-echo-helper.h: ns3::UdpEchoServerHelper::UdpEchoServerHelper(ns3::UdpEchoServerHelper const & arg0) [copy constructor] gjc@3731: 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@3731: ## udp-echo-helper.h: ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(ns3::NodeContainer c) [member function] gjc@3731: cls.add_method('Install', gjc@3731: 'ns3::ApplicationContainer', gjc@3731: [param('ns3::NodeContainer', 'c')]) gjc@3408: return gjc@3408: vincent@3842: def register_Ns3V4PingHelper_methods(root_module, cls): vincent@3842: ## v4ping-helper.h: ns3::V4PingHelper::V4PingHelper(ns3::V4PingHelper const & arg0) [copy constructor] vincent@3842: 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')]) vincent@3842: ## v4ping-helper.h: ns3::ApplicationContainer ns3::V4PingHelper::Install(ns3::NodeContainer nodes) [member function] vincent@3842: cls.add_method('Install', vincent@3842: 'ns3::ApplicationContainer', vincent@3842: [param('ns3::NodeContainer', 'nodes')]) vincent@3842: return vincent@3842: gjc@3408: def register_Ns3WifiHelper_methods(root_module, cls): gjc@3567: ## wifi-helper.h: ns3::WifiHelper::WifiHelper(ns3::WifiHelper const & arg0) [copy constructor] gjc@3574: cls.add_constructor([param('ns3::WifiHelper const &', 'arg0')]) gjc@3408: ## wifi-helper.h: ns3::WifiHelper::WifiHelper() [constructor] gjc@3468: cls.add_constructor([]) 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()')]) gjc@3408: ## wifi-helper.h: void ns3::WifiHelper::SetMac(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('SetMac', 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()')]) gjc@3408: ## wifi-helper.h: void ns3::WifiHelper::SetPhy(std::string phyType, 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('SetPhy', gjc@3468: 'void', gjc@3574: [param('std::string', 'phyType'), 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@3408: ## wifi-helper.h: static void ns3::WifiHelper::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) gjc@3408: ## wifi-helper.h: static void ns3::WifiHelper::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: ## wifi-helper.h: static void ns3::WifiHelper::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: ## wifi-helper.h: static void ns3::WifiHelper::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: ## wifi-helper.h: static void ns3::WifiHelper::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: ## wifi-helper.h: static void ns3::WifiHelper::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: ## wifi-helper.h: static void ns3::WifiHelper::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: ## wifi-helper.h: static void ns3::WifiHelper::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: ## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::NodeContainer c) const [member function] gjc@3468: cls.add_method('Install', gjc@3468: 'ns3::NetDeviceContainer', gjc@3468: [param('ns3::NodeContainer', 'c')], gjc@3468: is_const=True) gjc@3408: ## wifi-helper.h: ns3::NetDeviceContainer ns3::WifiHelper::Install(ns3::NodeContainer c, ns3::Ptr channel) const [member function] gjc@3468: cls.add_method('Install', gjc@3468: 'ns3::NetDeviceContainer', gjc@3468: [param('ns3::NodeContainer', 'c'), param('ns3::Ptr< ns3::WifiChannel >', 'channel')], gjc@3468: is_const=True) gjc@3408: return gjc@3408: gjc@3408: def register_functions(root_module): gjc@3408: module = root_module gjc@3408: register_functions_ns3_internal(module.get_submodule('internal'), root_module) gjc@3408: register_functions_ns3_TimeStepPrecision(module.get_submodule('TimeStepPrecision'), root_module) gjc@3408: register_functions_ns3_Config(module.get_submodule('Config'), root_module) gjc@3408: register_functions_ns3_olsr(module.get_submodule('olsr'), root_module) gjc@3408: return gjc@3408: gjc@3408: def register_functions_ns3_internal(module, root_module): gjc@3408: return gjc@3408: gjc@3408: def register_functions_ns3_TimeStepPrecision(module, root_module): gjc@3408: return gjc@3408: gjc@3408: def register_functions_ns3_Config(module, root_module): gjc@3408: return gjc@3408: gjc@3408: def register_functions_ns3_olsr(module, root_module): gjc@3408: return gjc@3408: