bindings/python/ns3_module_wifi.py
author Tom Henderson <tomh@tomh.org>
Thu, 28 May 2009 21:38:49 -0700
changeset 4474 19e2b7ff3482
parent 4454 f2af91ee09e7
child 4496 6f372b890919
permissions -rw-r--r--
bindings/ changes for IPv4 routing rework
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4474
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
     1
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     2
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     3
def register_types(module):
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     4
    root_module = module.get_root()
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     5
    
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
     6
    ## wifi-mac-header.h: ns3::WifiMacType [enumeration]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
     7
    module.add_enum('WifiMacType', ['WIFI_MAC_CTL_RTS', 'WIFI_MAC_CTL_CTS', 'WIFI_MAC_CTL_ACK', 'WIFI_MAC_CTL_BACKREQ', 'WIFI_MAC_CTL_BACKRESP', 'WIFI_MAC_MGT_BEACON', 'WIFI_MAC_MGT_ASSOCIATION_REQUEST', 'WIFI_MAC_MGT_ASSOCIATION_RESPONSE', 'WIFI_MAC_MGT_DISASSOCIATION', 'WIFI_MAC_MGT_REASSOCIATION_REQUEST', 'WIFI_MAC_MGT_REASSOCIATION_RESPONSE', 'WIFI_MAC_MGT_PROBE_REQUEST', 'WIFI_MAC_MGT_PROBE_RESPONSE', 'WIFI_MAC_MGT_AUTHENTICATION', 'WIFI_MAC_MGT_DEAUTHENTICATION', 'WIFI_MAC_DATA', 'WIFI_MAC_DATA_CFACK', 'WIFI_MAC_DATA_CFPOLL', 'WIFI_MAC_DATA_CFACK_CFPOLL', 'WIFI_MAC_DATA_NULL', 'WIFI_MAC_DATA_NULL_CFACK', 'WIFI_MAC_DATA_NULL_CFPOLL', 'WIFI_MAC_DATA_NULL_CFACK_CFPOLL', 'WIFI_MAC_QOSDATA', 'WIFI_MAC_QOSDATA_CFACK', 'WIFI_MAC_QOSDATA_CFPOLL', 'WIFI_MAC_QOSDATA_CFACK_CFPOLL', 'WIFI_MAC_QOSDATA_NULL', 'WIFI_MAC_QOSDATA_NULL_CFPOLL', 'WIFI_MAC_QOSDATA_NULL_CFACK_CFPOLL'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     8
    ## wifi-preamble.h: ns3::WifiPreamble [enumeration]
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     9
    module.add_enum('WifiPreamble', ['WIFI_PREAMBLE_LONG', 'WIFI_PREAMBLE_SHORT'])
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    10
    ## wifi-phy-standard.h: ns3::WifiPhyStandard [enumeration]
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    11
    module.add_enum('WifiPhyStandard', ['WIFI_PHY_STANDARD_80211a', 'WIFI_PHY_STANDARD_holland'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    12
    ## qos-utils.h: ns3::AccessClass [enumeration]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    13
    module.add_enum('AccessClass', ['AC_VO', 'AC_VI', 'AC_BE', 'AC_BK', 'AC_UNDEF'])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    14
    ## edca-txop-n.h: ns3::TypeOfStation [enumeration]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    15
    module.add_enum('TypeOfStation', ['STA', 'AP', 'ADHOC_STA'])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
    16
    ## interference-helper.h: ns3::InterferenceHelper [class]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
    17
    module.add_class('InterferenceHelper', allow_subclassing=False)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
    18
    ## interference-helper.h: ns3::InterferenceHelper::SnrPer [struct]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
    19
    module.add_class('SnrPer', outer_class=root_module['ns3::InterferenceHelper'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    20
    ## ssid.h: ns3::Ssid [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    21
    module.add_class('Ssid')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    22
    ## supported-rates.h: ns3::SupportedRates [class]
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    23
    module.add_class('SupportedRates')
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    24
    ## rraa-wifi-manager.h: ns3::ThresholdsItem [struct]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    25
    module.add_class('ThresholdsItem')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    26
    ## wifi-mode.h: ns3::WifiMode [class]
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    27
    module.add_class('WifiMode')
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    28
    ## wifi-mode.h: ns3::WifiMode::ModulationType [enumeration]
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    29
    module.add_enum('ModulationType', ['BPSK', 'QAM'], outer_class=root_module['ns3::WifiMode'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    30
    ## wifi-mode.h: ns3::WifiModeFactory [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    31
    module.add_class('WifiModeFactory')
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    32
    ## wifi-phy.h: ns3::WifiPhyListener [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    33
    module.add_class('WifiPhyListener', allow_subclassing=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    34
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    35
    module.add_class('WifiRemoteStation', allow_subclassing=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    36
    ## amrr-wifi-manager.h: ns3::AmrrWifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    37
    module.add_class('AmrrWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    38
    ## arf-wifi-manager.h: ns3::ArfWifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    39
    module.add_class('ArfWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    40
    ## constant-rate-wifi-manager.h: ns3::ConstantRateWifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    41
    module.add_class('ConstantRateWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    42
    ## ideal-wifi-manager.h: ns3::IdealWifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    43
    module.add_class('IdealWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    44
    ## onoe-wifi-manager.h: ns3::OnoeWifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    45
    module.add_class('OnoeWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    46
    ## propagation-delay-model.h: ns3::PropagationDelayModel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    47
    module.add_class('PropagationDelayModel', parent=root_module['ns3::Object'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    48
    ## propagation-loss-model.h: ns3::PropagationLossModel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    49
    module.add_class('PropagationLossModel', parent=root_module['ns3::Object'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    50
    ## qos-tag.h: ns3::QosTag [class]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    51
    module.add_class('QosTag', parent=root_module['ns3::Tag'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    52
    ## propagation-delay-model.h: ns3::RandomPropagationDelayModel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    53
    module.add_class('RandomPropagationDelayModel', parent=root_module['ns3::PropagationDelayModel'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    54
    ## propagation-loss-model.h: ns3::RandomPropagationLossModel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    55
    module.add_class('RandomPropagationLossModel', parent=root_module['ns3::PropagationLossModel'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    56
    ## rraa-wifi-manager.h: ns3::RraaWifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    57
    module.add_class('RraaWifiRemoteStation', parent=root_module['ns3::WifiRemoteStation'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    58
    ## ssid.h: ns3::SsidChecker [class]
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    59
    module.add_class('SsidChecker', parent=root_module['ns3::AttributeChecker'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    60
    ## ssid.h: ns3::SsidValue [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    61
    module.add_class('SsidValue', parent=root_module['ns3::AttributeValue'])
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
    62
    ## propagation-loss-model.h: ns3::ThreeLogDistancePropagationLossModel [class]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
    63
    module.add_class('ThreeLogDistancePropagationLossModel', parent=root_module['ns3::PropagationLossModel'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    64
    ## wifi-mac.h: ns3::WifiMac [class]
3457
2ff6f05b9467 Rescan API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3414
diff changeset
    65
    module.add_class('WifiMac', parent=root_module['ns3::Object'])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    66
    ## wifi-mac-header.h: ns3::WifiMacHeader [class]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    67
    module.add_class('WifiMacHeader', parent=root_module['ns3::Header'])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    68
    ## wifi-mac-header.h: ns3::WifiMacHeader::QosAckPolicy [enumeration]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    69
    module.add_enum('QosAckPolicy', ['NORMAL_ACK', 'NO_ACK', 'NO_EXPLICIT_ACK', 'BLOCK_ACK'], outer_class=root_module['ns3::WifiMacHeader'])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    70
    ## wifi-mac-header.h: ns3::WifiMacHeader::AddressType [enumeration]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    71
    module.add_enum('AddressType', ['ADDR1', 'ADDR2', 'ADDR3', 'ADDR4'], outer_class=root_module['ns3::WifiMacHeader'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    72
    ## wifi-mode.h: ns3::WifiModeChecker [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    73
    module.add_class('WifiModeChecker', parent=root_module['ns3::AttributeChecker'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    74
    ## wifi-mode.h: ns3::WifiModeValue [class]
3457
2ff6f05b9467 Rescan API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3414
diff changeset
    75
    module.add_class('WifiModeValue', parent=root_module['ns3::AttributeValue'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    76
    ## wifi-phy.h: ns3::WifiPhy [class]
3457
2ff6f05b9467 Rescan API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3414
diff changeset
    77
    module.add_class('WifiPhy', parent=root_module['ns3::Object'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    78
    ## wifi-phy.h: ns3::WifiPhy::State [enumeration]
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    79
    module.add_enum('State', ['SYNC', 'TX', 'CCA_BUSY', 'IDLE'], outer_class=root_module['ns3::WifiPhy'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    80
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStationManager [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    81
    module.add_class('WifiRemoteStationManager', parent=root_module['ns3::Object'])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
    82
    ## yans-wifi-phy.h: ns3::YansWifiPhy [class]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
    83
    module.add_class('YansWifiPhy', parent=root_module['ns3::WifiPhy'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    84
    ## aarf-wifi-manager.h: ns3::AarfWifiRemoteStation [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    85
    module.add_class('AarfWifiRemoteStation', parent=root_module['ns3::ArfWifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    86
    ## adhoc-wifi-mac.h: ns3::AdhocWifiMac [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    87
    module.add_class('AdhocWifiMac', parent=root_module['ns3::WifiMac'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    88
    ## amrr-wifi-manager.h: ns3::AmrrWifiManager [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    89
    module.add_class('AmrrWifiManager', parent=root_module['ns3::WifiRemoteStationManager'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    90
    ## amsdu-subframe-header.h: ns3::AmsduSubframeHeader [class]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
    91
    module.add_class('AmsduSubframeHeader', parent=root_module['ns3::Header'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    92
    ## arf-wifi-manager.h: ns3::ArfWifiManager [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    93
    module.add_class('ArfWifiManager', parent=root_module['ns3::WifiRemoteStationManager'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    94
    ## constant-rate-wifi-manager.h: ns3::ConstantRateWifiManager [class]
3457
2ff6f05b9467 Rescan API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3414
diff changeset
    95
    module.add_class('ConstantRateWifiManager', parent=root_module['ns3::WifiRemoteStationManager'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    96
    ## propagation-delay-model.h: ns3::ConstantSpeedPropagationDelayModel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
    97
    module.add_class('ConstantSpeedPropagationDelayModel', parent=root_module['ns3::PropagationDelayModel'])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    98
    ## dca-txop.h: ns3::DcaTxop [class]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
    99
    module.add_class('DcaTxop', parent=root_module['ns3::Object'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   100
    ## edca-txop-n.h: ns3::EdcaTxopN [class]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   101
    module.add_class('EdcaTxopN', parent=root_module['ns3::Object'])
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
   102
    ## error-rate-model.h: ns3::ErrorRateModel [class]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
   103
    module.add_class('ErrorRateModel', parent=root_module['ns3::Object'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   104
    ## propagation-loss-model.h: ns3::FriisPropagationLossModel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   105
    module.add_class('FriisPropagationLossModel', parent=root_module['ns3::PropagationLossModel'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   106
    ## ideal-wifi-manager.h: ns3::IdealWifiManager [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   107
    module.add_class('IdealWifiManager', parent=root_module['ns3::WifiRemoteStationManager'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   108
    ## jakes-propagation-loss-model.h: ns3::JakesPropagationLossModel [class]
3457
2ff6f05b9467 Rescan API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3414
diff changeset
   109
    module.add_class('JakesPropagationLossModel', parent=root_module['ns3::PropagationLossModel'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   110
    ## propagation-loss-model.h: ns3::LogDistancePropagationLossModel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   111
    module.add_class('LogDistancePropagationLossModel', parent=root_module['ns3::PropagationLossModel'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   112
    ## msdu-aggregator.h: ns3::MsduAggregator [class]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   113
    module.add_class('MsduAggregator', parent=root_module['ns3::Object'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   114
    ## nqap-wifi-mac.h: ns3::NqapWifiMac [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   115
    module.add_class('NqapWifiMac', parent=root_module['ns3::WifiMac'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   116
    ## nqsta-wifi-mac.h: ns3::NqstaWifiMac [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   117
    module.add_class('NqstaWifiMac', parent=root_module['ns3::WifiMac'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   118
    ## onoe-wifi-manager.h: ns3::OnoeWifiManager [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   119
    module.add_class('OnoeWifiManager', parent=root_module['ns3::WifiRemoteStationManager'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   120
    ## qadhoc-wifi-mac.h: ns3::QadhocWifiMac [class]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   121
    module.add_class('QadhocWifiMac', parent=root_module['ns3::WifiMac'])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   122
    ## qap-wifi-mac.h: ns3::QapWifiMac [class]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   123
    module.add_class('QapWifiMac', parent=root_module['ns3::WifiMac'])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   124
    ## qsta-wifi-mac.h: ns3::QstaWifiMac [class]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   125
    module.add_class('QstaWifiMac', parent=root_module['ns3::WifiMac'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   126
    ## rraa-wifi-manager.h: ns3::RraaWifiManager [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   127
    module.add_class('RraaWifiManager', parent=root_module['ns3::WifiRemoteStationManager'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   128
    ## wifi-channel.h: ns3::WifiChannel [class]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   129
    module.add_class('WifiChannel', parent=root_module['ns3::Channel'])
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
   130
    ## wifi-net-device.h: ns3::WifiNetDevice [class]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
   131
    module.add_class('WifiNetDevice', parent=root_module['ns3::NetDevice'])
4038
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
   132
    ## yans-error-rate-model.h: ns3::YansErrorRateModel [class]
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
   133
    module.add_class('YansErrorRateModel', parent=root_module['ns3::ErrorRateModel'])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   134
    ## yans-wifi-channel.h: ns3::YansWifiChannel [class]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   135
    module.add_class('YansWifiChannel', parent=root_module['ns3::WifiChannel'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   136
    ## aarf-wifi-manager.h: ns3::AarfWifiManager [class]
3457
2ff6f05b9467 Rescan API
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3414
diff changeset
   137
    module.add_class('AarfWifiManager', parent=root_module['ns3::ArfWifiManager'])
4474
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   138
    typehandlers.add_type_alias('std::vector< ns3::ThresholdsItem, std::allocator< ns3::ThresholdsItem > >', 'ns3::Thresholds')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   139
    
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   140
    ## Register a nested module for the namespace Config
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   141
    
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   142
    nested_module = module.add_cpp_namespace('Config')
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   143
    register_types_ns3_Config(nested_module)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   144
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   145
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   146
    ## Register a nested module for the namespace TimeStepPrecision
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   147
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   148
    nested_module = module.add_cpp_namespace('TimeStepPrecision')
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   149
    register_types_ns3_TimeStepPrecision(nested_module)
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   150
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   151
    
4474
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   152
    ## Register a nested module for the namespace addressUtils
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   153
    
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   154
    nested_module = module.add_cpp_namespace('addressUtils')
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   155
    register_types_ns3_addressUtils(nested_module)
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   156
    
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   157
    
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   158
    ## Register a nested module for the namespace internal
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   159
    
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   160
    nested_module = module.add_cpp_namespace('internal')
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   161
    register_types_ns3_internal(nested_module)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   162
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   163
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   164
    ## Register a nested module for the namespace olsr
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   165
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   166
    nested_module = module.add_cpp_namespace('olsr')
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   167
    register_types_ns3_olsr(nested_module)
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   168
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   169
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   170
def register_types_ns3_Config(module):
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   171
    root_module = module.get_root()
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   172
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   173
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   174
def register_types_ns3_TimeStepPrecision(module):
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   175
    root_module = module.get_root()
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   176
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   177
4474
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   178
def register_types_ns3_addressUtils(module):
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   179
    root_module = module.get_root()
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   180
    
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
   181
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
   182
def register_types_ns3_internal(module):
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   183
    root_module = module.get_root()
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   184
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   185
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   186
def register_types_ns3_olsr(module):
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   187
    root_module = module.get_root()
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   188
    
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   189
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   190
def register_methods(root_module):
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   191
    register_Ns3InterferenceHelper_methods(root_module, root_module['ns3::InterferenceHelper'])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   192
    register_Ns3InterferenceHelperSnrPer_methods(root_module, root_module['ns3::InterferenceHelper::SnrPer'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   193
    register_Ns3Ssid_methods(root_module, root_module['ns3::Ssid'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   194
    register_Ns3SupportedRates_methods(root_module, root_module['ns3::SupportedRates'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   195
    register_Ns3ThresholdsItem_methods(root_module, root_module['ns3::ThresholdsItem'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   196
    register_Ns3WifiMode_methods(root_module, root_module['ns3::WifiMode'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   197
    register_Ns3WifiModeFactory_methods(root_module, root_module['ns3::WifiModeFactory'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   198
    register_Ns3WifiPhyListener_methods(root_module, root_module['ns3::WifiPhyListener'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   199
    register_Ns3WifiRemoteStation_methods(root_module, root_module['ns3::WifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   200
    register_Ns3AmrrWifiRemoteStation_methods(root_module, root_module['ns3::AmrrWifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   201
    register_Ns3ArfWifiRemoteStation_methods(root_module, root_module['ns3::ArfWifiRemoteStation'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   202
    register_Ns3ConstantRateWifiRemoteStation_methods(root_module, root_module['ns3::ConstantRateWifiRemoteStation'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   203
    register_Ns3IdealWifiRemoteStation_methods(root_module, root_module['ns3::IdealWifiRemoteStation'])
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   204
    register_Ns3OnoeWifiRemoteStation_methods(root_module, root_module['ns3::OnoeWifiRemoteStation'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   205
    register_Ns3PropagationDelayModel_methods(root_module, root_module['ns3::PropagationDelayModel'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   206
    register_Ns3PropagationLossModel_methods(root_module, root_module['ns3::PropagationLossModel'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   207
    register_Ns3QosTag_methods(root_module, root_module['ns3::QosTag'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   208
    register_Ns3RandomPropagationDelayModel_methods(root_module, root_module['ns3::RandomPropagationDelayModel'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   209
    register_Ns3RandomPropagationLossModel_methods(root_module, root_module['ns3::RandomPropagationLossModel'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   210
    register_Ns3RraaWifiRemoteStation_methods(root_module, root_module['ns3::RraaWifiRemoteStation'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   211
    register_Ns3SsidChecker_methods(root_module, root_module['ns3::SsidChecker'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   212
    register_Ns3SsidValue_methods(root_module, root_module['ns3::SsidValue'])
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
   213
    register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, root_module['ns3::ThreeLogDistancePropagationLossModel'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   214
    register_Ns3WifiMac_methods(root_module, root_module['ns3::WifiMac'])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   215
    register_Ns3WifiMacHeader_methods(root_module, root_module['ns3::WifiMacHeader'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   216
    register_Ns3WifiModeChecker_methods(root_module, root_module['ns3::WifiModeChecker'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   217
    register_Ns3WifiModeValue_methods(root_module, root_module['ns3::WifiModeValue'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   218
    register_Ns3WifiPhy_methods(root_module, root_module['ns3::WifiPhy'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   219
    register_Ns3WifiRemoteStationManager_methods(root_module, root_module['ns3::WifiRemoteStationManager'])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   220
    register_Ns3YansWifiPhy_methods(root_module, root_module['ns3::YansWifiPhy'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   221
    register_Ns3AarfWifiRemoteStation_methods(root_module, root_module['ns3::AarfWifiRemoteStation'])
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
   222
    register_Ns3AdhocWifiMac_methods(root_module, root_module['ns3::AdhocWifiMac'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   223
    register_Ns3AmrrWifiManager_methods(root_module, root_module['ns3::AmrrWifiManager'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   224
    register_Ns3AmsduSubframeHeader_methods(root_module, root_module['ns3::AmsduSubframeHeader'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   225
    register_Ns3ArfWifiManager_methods(root_module, root_module['ns3::ArfWifiManager'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   226
    register_Ns3ConstantRateWifiManager_methods(root_module, root_module['ns3::ConstantRateWifiManager'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   227
    register_Ns3ConstantSpeedPropagationDelayModel_methods(root_module, root_module['ns3::ConstantSpeedPropagationDelayModel'])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   228
    register_Ns3DcaTxop_methods(root_module, root_module['ns3::DcaTxop'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   229
    register_Ns3EdcaTxopN_methods(root_module, root_module['ns3::EdcaTxopN'])
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
   230
    register_Ns3ErrorRateModel_methods(root_module, root_module['ns3::ErrorRateModel'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   231
    register_Ns3FriisPropagationLossModel_methods(root_module, root_module['ns3::FriisPropagationLossModel'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   232
    register_Ns3IdealWifiManager_methods(root_module, root_module['ns3::IdealWifiManager'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   233
    register_Ns3JakesPropagationLossModel_methods(root_module, root_module['ns3::JakesPropagationLossModel'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   234
    register_Ns3LogDistancePropagationLossModel_methods(root_module, root_module['ns3::LogDistancePropagationLossModel'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   235
    register_Ns3MsduAggregator_methods(root_module, root_module['ns3::MsduAggregator'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   236
    register_Ns3NqapWifiMac_methods(root_module, root_module['ns3::NqapWifiMac'])
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
   237
    register_Ns3NqstaWifiMac_methods(root_module, root_module['ns3::NqstaWifiMac'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   238
    register_Ns3OnoeWifiManager_methods(root_module, root_module['ns3::OnoeWifiManager'])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   239
    register_Ns3QadhocWifiMac_methods(root_module, root_module['ns3::QadhocWifiMac'])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   240
    register_Ns3QapWifiMac_methods(root_module, root_module['ns3::QapWifiMac'])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
   241
    register_Ns3QstaWifiMac_methods(root_module, root_module['ns3::QstaWifiMac'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   242
    register_Ns3RraaWifiManager_methods(root_module, root_module['ns3::RraaWifiManager'])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   243
    register_Ns3WifiChannel_methods(root_module, root_module['ns3::WifiChannel'])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   244
    register_Ns3WifiNetDevice_methods(root_module, root_module['ns3::WifiNetDevice'])
4038
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
   245
    register_Ns3YansErrorRateModel_methods(root_module, root_module['ns3::YansErrorRateModel'])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   246
    register_Ns3YansWifiChannel_methods(root_module, root_module['ns3::YansWifiChannel'])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   247
    register_Ns3AarfWifiManager_methods(root_module, root_module['ns3::AarfWifiManager'])
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   248
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   249
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   250
def register_Ns3InterferenceHelper_methods(root_module, cls):
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   251
    ## interference-helper.h: ns3::InterferenceHelper::InterferenceHelper() [constructor]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   252
    cls.add_constructor([])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   253
    ## interference-helper.h: ns3::Ptr<ns3::InterferenceHelper::Event> ns3::InterferenceHelper::Add(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble, ns3::Time duration, double rxPower) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   254
    cls.add_method('Add', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   255
                   'ns3::Ptr< ns3::InterferenceHelper::Event >', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   256
                   [param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble'), param('ns3::Time', 'duration'), param('double', 'rxPower')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   257
    ## interference-helper.h: ns3::InterferenceHelper::SnrPer ns3::InterferenceHelper::CalculateSnrPer(ns3::Ptr<ns3::InterferenceHelper::Event> event) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   258
    cls.add_method('CalculateSnrPer', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   259
                   'ns3::InterferenceHelper::SnrPer', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   260
                   [param('ns3::Ptr< ns3::InterferenceHelper::Event >', 'event')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   261
    ## interference-helper.h: ns3::Time ns3::InterferenceHelper::CalculateTxDuration(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   262
    cls.add_method('CalculateTxDuration', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   263
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   264
                   [param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   265
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   266
    ## interference-helper.h: void ns3::InterferenceHelper::Configure80211aParameters() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   267
    cls.add_method('Configure80211aParameters', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   268
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   269
                   [])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   270
    ## interference-helper.h: ns3::Time ns3::InterferenceHelper::GetEnergyDuration(double energyW) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   271
    cls.add_method('GetEnergyDuration', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   272
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   273
                   [param('double', 'energyW')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   274
    ## interference-helper.h: ns3::Ptr<ns3::ErrorRateModel> ns3::InterferenceHelper::GetErrorRateModel() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   275
    cls.add_method('GetErrorRateModel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   276
                   'ns3::Ptr< ns3::ErrorRateModel >', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   277
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   278
                   is_const=True)
4316
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
   279
    ## interference-helper.h: double ns3::InterferenceHelper::GetNoiseFigure() const [member function]
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
   280
    cls.add_method('GetNoiseFigure', 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   281
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   282
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   283
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   284
    ## interference-helper.h: void ns3::InterferenceHelper::SetErrorRateModel(ns3::Ptr<ns3::ErrorRateModel> rate) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   285
    cls.add_method('SetErrorRateModel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   286
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   287
                   [param('ns3::Ptr< ns3::ErrorRateModel >', 'rate')])
4316
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
   288
    ## interference-helper.h: void ns3::InterferenceHelper::SetNoiseFigure(double value) [member function]
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
   289
    cls.add_method('SetNoiseFigure', 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   290
                   'void', 
4316
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
   291
                   [param('double', 'value')])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   292
    return
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   293
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   294
def register_Ns3InterferenceHelperSnrPer_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   295
    ## interference-helper.h: ns3::InterferenceHelper::SnrPer::SnrPer() [constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   296
    cls.add_constructor([])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   297
    ## interference-helper.h: ns3::InterferenceHelper::SnrPer::SnrPer(ns3::InterferenceHelper::SnrPer const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   298
    cls.add_constructor([param('ns3::InterferenceHelper::SnrPer const &', 'arg0')])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   299
    ## interference-helper.h: ns3::InterferenceHelper::SnrPer::per [variable]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   300
    cls.add_instance_attribute('per', 'double', is_const=False)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   301
    ## interference-helper.h: ns3::InterferenceHelper::SnrPer::snr [variable]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   302
    cls.add_instance_attribute('snr', 'double', is_const=False)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   303
    return
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   304
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   305
def register_Ns3Ssid_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   306
    cls.add_output_stream_operator()
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   307
    ## ssid.h: ns3::Ssid::Ssid(ns3::Ssid const & arg0) [copy constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   308
    cls.add_constructor([param('ns3::Ssid const &', 'arg0')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   309
    ## ssid.h: ns3::Ssid::Ssid() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   310
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   311
    ## ssid.h: ns3::Ssid::Ssid(std::string s) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   312
    cls.add_constructor([param('std::string', 's')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   313
    ## ssid.h: ns3::Ssid::Ssid(char const * ssid, uint8_t length) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   314
    cls.add_constructor([param('char const *', 'ssid'), param('uint8_t', 'length')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   315
    ## ssid.h: ns3::Buffer::Iterator ns3::Ssid::Deserialize(ns3::Buffer::Iterator i) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   316
    cls.add_method('Deserialize', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   317
                   'ns3::Buffer::Iterator', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   318
                   [param('ns3::Buffer::Iterator', 'i')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   319
    ## ssid.h: uint32_t ns3::Ssid::GetLength() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   320
    cls.add_method('GetLength', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   321
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   322
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   323
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   324
    ## ssid.h: uint32_t ns3::Ssid::GetSerializedSize() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   325
    cls.add_method('GetSerializedSize', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   326
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   327
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   328
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   329
    ## ssid.h: bool ns3::Ssid::IsBroadcast() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   330
    cls.add_method('IsBroadcast', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   331
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   332
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   333
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   334
    ## ssid.h: bool ns3::Ssid::IsEqual(ns3::Ssid const & o) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   335
    cls.add_method('IsEqual', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   336
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   337
                   [param('ns3::Ssid const &', 'o')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   338
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   339
    ## ssid.h: char * ns3::Ssid::PeekString() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   340
    cls.add_method('PeekString', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   341
                   'char *', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   342
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   343
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   344
    ## ssid.h: ns3::Buffer::Iterator ns3::Ssid::Serialize(ns3::Buffer::Iterator i) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   345
    cls.add_method('Serialize', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   346
                   'ns3::Buffer::Iterator', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   347
                   [param('ns3::Buffer::Iterator', 'i')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   348
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   349
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   350
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   351
def register_Ns3SupportedRates_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   352
    cls.add_output_stream_operator()
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   353
    ## supported-rates.h: ns3::SupportedRates::SupportedRates(ns3::SupportedRates const & arg0) [copy constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   354
    cls.add_constructor([param('ns3::SupportedRates const &', 'arg0')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   355
    ## supported-rates.h: ns3::SupportedRates::SupportedRates() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   356
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   357
    ## supported-rates.h: void ns3::SupportedRates::AddSupportedRate(uint32_t bs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   358
    cls.add_method('AddSupportedRate', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   359
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   360
                   [param('uint32_t', 'bs')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   361
    ## supported-rates.h: ns3::Buffer::Iterator ns3::SupportedRates::Deserialize(ns3::Buffer::Iterator start) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   362
    cls.add_method('Deserialize', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   363
                   'ns3::Buffer::Iterator', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   364
                   [param('ns3::Buffer::Iterator', 'start')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   365
    ## supported-rates.h: uint8_t ns3::SupportedRates::GetNRates() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   366
    cls.add_method('GetNRates', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   367
                   'uint8_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   368
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   369
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   370
    ## supported-rates.h: uint32_t ns3::SupportedRates::GetRate(uint8_t i) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   371
    cls.add_method('GetRate', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   372
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   373
                   [param('uint8_t', 'i')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   374
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   375
    ## supported-rates.h: uint32_t ns3::SupportedRates::GetSerializedSize() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   376
    cls.add_method('GetSerializedSize', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   377
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   378
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   379
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   380
    ## supported-rates.h: bool ns3::SupportedRates::IsBasicRate(uint32_t bs) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   381
    cls.add_method('IsBasicRate', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   382
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   383
                   [param('uint32_t', 'bs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   384
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   385
    ## supported-rates.h: bool ns3::SupportedRates::IsSupportedRate(uint32_t bs) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   386
    cls.add_method('IsSupportedRate', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   387
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   388
                   [param('uint32_t', 'bs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   389
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   390
    ## supported-rates.h: ns3::Buffer::Iterator ns3::SupportedRates::Serialize(ns3::Buffer::Iterator start) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   391
    cls.add_method('Serialize', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   392
                   'ns3::Buffer::Iterator', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   393
                   [param('ns3::Buffer::Iterator', 'start')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   394
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   395
    ## supported-rates.h: void ns3::SupportedRates::SetBasicRate(uint32_t bs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   396
    cls.add_method('SetBasicRate', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   397
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   398
                   [param('uint32_t', 'bs')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   399
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   400
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   401
def register_Ns3ThresholdsItem_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   402
    ## rraa-wifi-manager.h: ns3::ThresholdsItem::datarate [variable]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   403
    cls.add_instance_attribute('datarate', 'uint32_t', is_const=False)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   404
    ## rraa-wifi-manager.h: ns3::ThresholdsItem::pori [variable]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   405
    cls.add_instance_attribute('pori', 'double', is_const=False)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   406
    ## rraa-wifi-manager.h: ns3::ThresholdsItem::pmtl [variable]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   407
    cls.add_instance_attribute('pmtl', 'double', is_const=False)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   408
    ## rraa-wifi-manager.h: ns3::ThresholdsItem::ewnd [variable]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   409
    cls.add_instance_attribute('ewnd', 'uint32_t', is_const=False)
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   410
    ## rraa-wifi-manager.h: ns3::ThresholdsItem::ThresholdsItem(ns3::ThresholdsItem const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   411
    cls.add_constructor([param('ns3::ThresholdsItem const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   412
    ## rraa-wifi-manager.h: ns3::ThresholdsItem::ThresholdsItem() [constructor]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   413
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   414
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   415
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   416
def register_Ns3WifiMode_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   417
    cls.add_output_stream_operator()
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   418
    cls.add_binary_comparison_operator('==')
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   419
    ## wifi-mode.h: ns3::WifiMode::WifiMode(ns3::WifiMode const & arg0) [copy constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   420
    cls.add_constructor([param('ns3::WifiMode const &', 'arg0')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   421
    ## wifi-mode.h: ns3::WifiMode::WifiMode() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   422
    cls.add_constructor([])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   423
    ## wifi-mode.h: ns3::WifiMode::WifiMode(std::string name) [constructor]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   424
    cls.add_constructor([param('std::string', 'name')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   425
    ## wifi-mode.h: uint32_t ns3::WifiMode::GetBandwidth() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   426
    cls.add_method('GetBandwidth', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   427
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   428
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   429
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   430
    ## wifi-mode.h: uint8_t ns3::WifiMode::GetConstellationSize() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   431
    cls.add_method('GetConstellationSize', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   432
                   'uint8_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   433
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   434
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   435
    ## wifi-mode.h: uint32_t ns3::WifiMode::GetDataRate() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   436
    cls.add_method('GetDataRate', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   437
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   438
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   439
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   440
    ## wifi-mode.h: ns3::WifiMode::ModulationType ns3::WifiMode::GetModulationType() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   441
    cls.add_method('GetModulationType', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   442
                   'ns3::WifiMode::ModulationType', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   443
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   444
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   445
    ## wifi-mode.h: uint32_t ns3::WifiMode::GetPhyRate() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   446
    cls.add_method('GetPhyRate', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   447
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   448
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   449
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   450
    ## wifi-mode.h: uint32_t ns3::WifiMode::GetUid() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   451
    cls.add_method('GetUid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   452
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   453
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   454
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   455
    ## wifi-mode.h: std::string ns3::WifiMode::GetUniqueName() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   456
    cls.add_method('GetUniqueName', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   457
                   'std::string', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   458
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   459
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   460
    ## wifi-mode.h: bool ns3::WifiMode::IsMandatory() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   461
    cls.add_method('IsMandatory', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   462
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   463
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   464
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   465
    ## wifi-mode.h: bool ns3::WifiMode::IsModulationBpsk() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   466
    cls.add_method('IsModulationBpsk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   467
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   468
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   469
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   470
    ## wifi-mode.h: bool ns3::WifiMode::IsModulationQam() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   471
    cls.add_method('IsModulationQam', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   472
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   473
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   474
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   475
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   476
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   477
def register_Ns3WifiModeFactory_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   478
    ## wifi-mode.h: ns3::WifiModeFactory::WifiModeFactory(ns3::WifiModeFactory const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   479
    cls.add_constructor([param('ns3::WifiModeFactory const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   480
    ## wifi-mode.h: static ns3::WifiMode ns3::WifiModeFactory::CreateBpsk(std::string uniqueName, bool isMandatory, uint32_t bandwidth, uint32_t dataRate, uint32_t phyRate) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   481
    cls.add_method('CreateBpsk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   482
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   483
                   [param('std::string', 'uniqueName'), param('bool', 'isMandatory'), param('uint32_t', 'bandwidth'), param('uint32_t', 'dataRate'), param('uint32_t', 'phyRate')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   484
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   485
    ## wifi-mode.h: static ns3::WifiMode ns3::WifiModeFactory::CreateQam(std::string uniqueName, bool isMandatory, uint32_t bandwidth, uint32_t dataRate, uint32_t phyRate, uint8_t constellationSize) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   486
    cls.add_method('CreateQam', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   487
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   488
                   [param('std::string', 'uniqueName'), param('bool', 'isMandatory'), param('uint32_t', 'bandwidth'), param('uint32_t', 'dataRate'), param('uint32_t', 'phyRate'), param('uint8_t', 'constellationSize')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   489
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   490
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   491
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   492
def register_Ns3WifiPhyListener_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   493
    ## wifi-phy.h: ns3::WifiPhyListener::WifiPhyListener(ns3::WifiPhyListener const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   494
    cls.add_constructor([param('ns3::WifiPhyListener const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   495
    ## wifi-phy.h: ns3::WifiPhyListener::WifiPhyListener() [constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   496
    cls.add_constructor([])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   497
    ## wifi-phy.h: void ns3::WifiPhyListener::NotifyRxStart(ns3::Time duration) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   498
    cls.add_method('NotifyRxStart', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   499
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   500
                   [param('ns3::Time', 'duration')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   501
                   is_pure_virtual=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   502
    ## wifi-phy.h: void ns3::WifiPhyListener::NotifyRxEndOk() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   503
    cls.add_method('NotifyRxEndOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   504
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   505
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   506
                   is_pure_virtual=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   507
    ## wifi-phy.h: void ns3::WifiPhyListener::NotifyRxEndError() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   508
    cls.add_method('NotifyRxEndError', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   509
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   510
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   511
                   is_pure_virtual=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   512
    ## wifi-phy.h: void ns3::WifiPhyListener::NotifyTxStart(ns3::Time duration) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   513
    cls.add_method('NotifyTxStart', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   514
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   515
                   [param('ns3::Time', 'duration')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   516
                   is_pure_virtual=True, is_virtual=True)
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   517
    ## wifi-phy.h: void ns3::WifiPhyListener::NotifyMaybeCcaBusyStart(ns3::Time duration) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
   518
    cls.add_method('NotifyMaybeCcaBusyStart', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   519
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   520
                   [param('ns3::Time', 'duration')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   521
                   is_pure_virtual=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   522
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   523
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   524
def register_Ns3WifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   525
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStation::WifiRemoteStation(ns3::WifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   526
    cls.add_constructor([param('ns3::WifiRemoteStation const &', 'arg0')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   527
    ## wifi-remote-station-manager.h: static ns3::TypeId ns3::WifiRemoteStation::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   528
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   529
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   530
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   531
                   is_static=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   532
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStation::WifiRemoteStation() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   533
    cls.add_constructor([])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   534
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::Reset() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   535
    cls.add_method('Reset', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   536
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   537
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   538
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::AddSupportedMode(ns3::WifiMode mode) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   539
    cls.add_method('AddSupportedMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   540
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   541
                   [param('ns3::WifiMode', 'mode')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   542
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsBrandNew() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   543
    cls.add_method('IsBrandNew', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   544
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   545
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   546
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   547
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsAssociated() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   548
    cls.add_method('IsAssociated', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   549
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   550
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   551
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   552
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsWaitAssocTxOk() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   553
    cls.add_method('IsWaitAssocTxOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   554
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   555
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   556
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   557
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordWaitAssocTxOk() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   558
    cls.add_method('RecordWaitAssocTxOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   559
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   560
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   561
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordGotAssocTxOk() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   562
    cls.add_method('RecordGotAssocTxOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   563
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   564
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   565
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordGotAssocTxFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   566
    cls.add_method('RecordGotAssocTxFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   567
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   568
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   569
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::RecordDisassociated() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   570
    cls.add_method('RecordDisassociated', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   571
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   572
                   [])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   573
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::PrepareForQueue(ns3::Ptr<ns3::Packet const> packet, uint32_t fullPacketSize) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   574
    cls.add_method('PrepareForQueue', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   575
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   576
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fullPacketSize')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   577
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetDataMode(ns3::Ptr<ns3::Packet const> packet, uint32_t fullPacketSize) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   578
    cls.add_method('GetDataMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   579
                   'ns3::WifiMode', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   580
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fullPacketSize')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   581
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetRtsMode(ns3::Ptr<ns3::Packet const> packet) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   582
    cls.add_method('GetRtsMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   583
                   'ns3::WifiMode', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   584
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   585
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportRtsFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   586
    cls.add_method('ReportRtsFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   587
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   588
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   589
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportDataFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   590
    cls.add_method('ReportDataFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   591
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   592
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   593
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   594
    cls.add_method('ReportRtsOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   595
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   596
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   597
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   598
    cls.add_method('ReportDataOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   599
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   600
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   601
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportFinalRtsFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   602
    cls.add_method('ReportFinalRtsFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   603
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   604
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   605
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportFinalDataFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   606
    cls.add_method('ReportFinalDataFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   607
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   608
                   [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   609
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::ReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   610
    cls.add_method('ReportRxOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   611
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   612
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   613
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedRts(ns3::Ptr<ns3::Packet const> packet) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   614
    cls.add_method('NeedRts', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   615
                   'bool', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   616
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   617
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   618
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedRtsRetransmission(ns3::Ptr<ns3::Packet const> packet) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   619
    cls.add_method('NeedRtsRetransmission', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   620
                   'bool', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   621
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   622
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   623
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedDataRetransmission(ns3::Ptr<ns3::Packet const> packet) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   624
    cls.add_method('NeedDataRetransmission', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   625
                   'bool', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   626
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   627
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   628
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::NeedFragmentation(ns3::Ptr<ns3::Packet const> packet) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   629
    cls.add_method('NeedFragmentation', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   630
                   'bool', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   631
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   632
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   633
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStation::GetFragmentSize(ns3::Ptr<ns3::Packet const> packet, uint32_t fragmentNumber) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   634
    cls.add_method('GetFragmentSize', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   635
                   'uint32_t', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   636
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fragmentNumber')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   637
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   638
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStation::GetFragmentOffset(ns3::Ptr<ns3::Packet const> packet, uint32_t fragmentNumber) [member function]
3745
73e7bb607014 bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3743
diff changeset
   639
    cls.add_method('GetFragmentOffset', 
73e7bb607014 bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3743
diff changeset
   640
                   'uint32_t', 
73e7bb607014 bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3743
diff changeset
   641
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fragmentNumber')], 
73e7bb607014 bug 372: fragmentation is broken
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3743
diff changeset
   642
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
   643
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStation::IsLastFragment(ns3::Ptr<ns3::Packet const> packet, uint32_t fragmentNumber) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   644
    cls.add_method('IsLastFragment', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   645
                   'bool', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   646
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('uint32_t', 'fragmentNumber')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   647
                   is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   648
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetCtsMode(ns3::WifiMode rtsMode) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   649
    cls.add_method('GetCtsMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   650
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   651
                   [param('ns3::WifiMode', 'rtsMode')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   652
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetAckMode(ns3::WifiMode dataMode) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   653
    cls.add_method('GetAckMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   654
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   655
                   [param('ns3::WifiMode', 'dataMode')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   656
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStation::GetNSupportedModes() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   657
    cls.add_method('GetNSupportedModes', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   658
                   'uint32_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   659
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   660
                   is_const=True, visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   661
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::GetSupportedMode(uint32_t i) const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   662
    cls.add_method('GetSupportedMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   663
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   664
                   [param('uint32_t', 'i')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   665
                   is_const=True, visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   666
    ## wifi-remote-station-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::WifiRemoteStation::GetManager() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   667
    cls.add_method('GetManager', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   668
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   669
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   670
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   671
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::DoGetDataMode(uint32_t size) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   672
    cls.add_method('DoGetDataMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   673
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   674
                   [param('uint32_t', 'size')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   675
                   is_pure_virtual=True, visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   676
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStation::DoGetRtsMode() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   677
    cls.add_method('DoGetRtsMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   678
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   679
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   680
                   is_pure_virtual=True, visibility='private', is_virtual=True)
4382
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   681
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportRtsFailed() [member function]
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   682
    cls.add_method('DoReportRtsFailed', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   683
                   'void', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   684
                   [], 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   685
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   686
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportDataFailed() [member function]
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   687
    cls.add_method('DoReportDataFailed', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   688
                   'void', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   689
                   [], 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   690
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   691
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   692
    cls.add_method('DoReportRtsOk', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   693
                   'void', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   694
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   695
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   696
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   697
    cls.add_method('DoReportDataOk', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   698
                   'void', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   699
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   700
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   701
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportFinalRtsFailed() [member function]
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   702
    cls.add_method('DoReportFinalRtsFailed', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   703
                   'void', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   704
                   [], 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   705
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   706
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportFinalDataFailed() [member function]
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   707
    cls.add_method('DoReportFinalDataFailed', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   708
                   'void', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   709
                   [], 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   710
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   711
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   712
    cls.add_method('DoReportRxOk', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   713
                   'void', 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   714
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], 
e63da65e8fb9 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 4341
diff changeset
   715
                   is_pure_virtual=True, visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   716
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   717
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   718
def register_Ns3AmrrWifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   719
    ## amrr-wifi-manager.h: ns3::AmrrWifiRemoteStation::AmrrWifiRemoteStation(ns3::AmrrWifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   720
    cls.add_constructor([param('ns3::AmrrWifiRemoteStation const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   721
    ## amrr-wifi-manager.h: ns3::AmrrWifiRemoteStation::AmrrWifiRemoteStation(ns3::Ptr<ns3::AmrrWifiManager> stations) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   722
    cls.add_constructor([param('ns3::Ptr< ns3::AmrrWifiManager >', 'stations')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   723
    ## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   724
    cls.add_method('DoReportRxOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   725
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   726
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   727
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   728
    ## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportRtsFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   729
    cls.add_method('DoReportRtsFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   730
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   731
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   732
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   733
    ## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportDataFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   734
    cls.add_method('DoReportDataFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   735
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   736
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   737
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   738
    ## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   739
    cls.add_method('DoReportRtsOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   740
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   741
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   742
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   743
    ## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   744
    cls.add_method('DoReportDataOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   745
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   746
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   747
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   748
    ## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportFinalRtsFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   749
    cls.add_method('DoReportFinalRtsFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   750
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   751
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   752
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   753
    ## amrr-wifi-manager.h: void ns3::AmrrWifiRemoteStation::DoReportFinalDataFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   754
    cls.add_method('DoReportFinalDataFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   755
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   756
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   757
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   758
    ## amrr-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::AmrrWifiRemoteStation::GetManager() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   759
    cls.add_method('GetManager', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   760
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   761
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   762
                   is_const=True, visibility='private', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   763
    ## amrr-wifi-manager.h: ns3::WifiMode ns3::AmrrWifiRemoteStation::DoGetDataMode(uint32_t size) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   764
    cls.add_method('DoGetDataMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   765
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   766
                   [param('uint32_t', 'size')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   767
                   visibility='private', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   768
    ## amrr-wifi-manager.h: ns3::WifiMode ns3::AmrrWifiRemoteStation::DoGetRtsMode() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   769
    cls.add_method('DoGetRtsMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   770
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   771
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   772
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   773
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   775
def register_Ns3ArfWifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   776
    ## arf-wifi-manager.h: ns3::ArfWifiRemoteStation::ArfWifiRemoteStation(ns3::ArfWifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   777
    cls.add_constructor([param('ns3::ArfWifiRemoteStation const &', 'arg0')])
4341
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
   778
    ## arf-wifi-manager.h: ns3::ArfWifiRemoteStation::ArfWifiRemoteStation(ns3::Ptr<ns3::ArfWifiManager> manager) [constructor]
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
   779
    cls.add_constructor([param('ns3::Ptr< ns3::ArfWifiManager >', 'manager')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   780
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   781
    cls.add_method('DoReportRxOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   782
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   783
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   784
                   visibility='protected', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   785
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportRtsFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   786
    cls.add_method('DoReportRtsFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   787
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   788
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   789
                   visibility='protected', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   790
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportDataFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   791
    cls.add_method('DoReportDataFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   792
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   793
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   794
                   visibility='protected', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   795
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   796
    cls.add_method('DoReportRtsOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   797
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   798
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   799
                   visibility='protected', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   800
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   801
    cls.add_method('DoReportDataOk', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   802
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   803
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   804
                   visibility='protected', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   805
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportFinalRtsFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   806
    cls.add_method('DoReportFinalRtsFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   807
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   808
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   809
                   visibility='protected', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   810
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::DoReportFinalDataFailed() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   811
    cls.add_method('DoReportFinalDataFailed', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   812
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   813
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   814
                   visibility='protected', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   815
    ## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetMinTimerTimeout() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   816
    cls.add_method('GetMinTimerTimeout', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   817
                   'uint32_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   818
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   819
                   visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   820
    ## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetMinSuccessThreshold() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   821
    cls.add_method('GetMinSuccessThreshold', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   822
                   'uint32_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   823
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   824
                   visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   825
    ## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetTimerTimeout() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   826
    cls.add_method('GetTimerTimeout', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   827
                   'uint32_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   828
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   829
                   visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   830
    ## arf-wifi-manager.h: uint32_t ns3::ArfWifiRemoteStation::GetSuccessThreshold() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   831
    cls.add_method('GetSuccessThreshold', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   832
                   'uint32_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   833
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   834
                   visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   835
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::SetTimerTimeout(uint32_t timerTimeout) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   836
    cls.add_method('SetTimerTimeout', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   837
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   838
                   [param('uint32_t', 'timerTimeout')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   839
                   visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   840
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::SetSuccessThreshold(uint32_t successThreshold) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   841
    cls.add_method('SetSuccessThreshold', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   842
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   843
                   [param('uint32_t', 'successThreshold')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   844
                   visibility='protected')
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   845
    ## arf-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::ArfWifiRemoteStation::GetManager() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   846
    cls.add_method('GetManager', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   847
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   848
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   849
                   is_const=True, visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   850
    ## arf-wifi-manager.h: ns3::WifiMode ns3::ArfWifiRemoteStation::DoGetDataMode(uint32_t size) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   851
    cls.add_method('DoGetDataMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   852
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   853
                   [param('uint32_t', 'size')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   854
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   855
    ## arf-wifi-manager.h: ns3::WifiMode ns3::ArfWifiRemoteStation::DoGetRtsMode() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   856
    cls.add_method('DoGetRtsMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   857
                   'ns3::WifiMode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   858
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   859
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   860
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::ReportRecoveryFailure() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   861
    cls.add_method('ReportRecoveryFailure', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   862
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   863
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   864
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   865
    ## arf-wifi-manager.h: void ns3::ArfWifiRemoteStation::ReportFailure() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   866
    cls.add_method('ReportFailure', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   867
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   868
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
   869
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   870
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   871
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   872
def register_Ns3ConstantRateWifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   873
    ## constant-rate-wifi-manager.h: ns3::ConstantRateWifiRemoteStation::ConstantRateWifiRemoteStation(ns3::ConstantRateWifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   874
    cls.add_constructor([param('ns3::ConstantRateWifiRemoteStation const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   875
    ## constant-rate-wifi-manager.h: ns3::ConstantRateWifiRemoteStation::ConstantRateWifiRemoteStation(ns3::Ptr<ns3::ConstantRateWifiManager> stations) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   876
    cls.add_constructor([param('ns3::Ptr< ns3::ConstantRateWifiManager >', 'stations')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   877
    ## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   878
    cls.add_method('DoReportRxOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   879
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   880
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   881
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   882
    ## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   883
    cls.add_method('DoReportRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   884
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   885
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   886
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   887
    ## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   888
    cls.add_method('DoReportDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   889
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   890
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   891
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   892
    ## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   893
    cls.add_method('DoReportRtsOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   894
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   895
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   896
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   897
    ## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   898
    cls.add_method('DoReportDataOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   899
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   900
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   901
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   902
    ## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportFinalRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   903
    cls.add_method('DoReportFinalRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   904
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   905
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   906
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   907
    ## constant-rate-wifi-manager.h: void ns3::ConstantRateWifiRemoteStation::DoReportFinalDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   908
    cls.add_method('DoReportFinalDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   909
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   910
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   911
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   912
    ## constant-rate-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::ConstantRateWifiRemoteStation::GetManager() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   913
    cls.add_method('GetManager', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   914
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   915
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   916
                   is_const=True, visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   917
    ## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiRemoteStation::DoGetDataMode(uint32_t size) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   918
    cls.add_method('DoGetDataMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   919
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   920
                   [param('uint32_t', 'size')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   921
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   922
    ## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiRemoteStation::DoGetRtsMode() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   923
    cls.add_method('DoGetRtsMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   924
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   925
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   926
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   927
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   928
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   929
def register_Ns3IdealWifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   930
    ## ideal-wifi-manager.h: ns3::IdealWifiRemoteStation::IdealWifiRemoteStation(ns3::IdealWifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   931
    cls.add_constructor([param('ns3::IdealWifiRemoteStation const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   932
    ## ideal-wifi-manager.h: ns3::IdealWifiRemoteStation::IdealWifiRemoteStation(ns3::Ptr<ns3::IdealWifiManager> stations) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   933
    cls.add_constructor([param('ns3::Ptr< ns3::IdealWifiManager >', 'stations')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   934
    ## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   935
    cls.add_method('DoReportRxOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   936
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   937
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   938
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   939
    ## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   940
    cls.add_method('DoReportRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   941
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   942
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   943
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   944
    ## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   945
    cls.add_method('DoReportDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   946
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   947
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   948
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   949
    ## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   950
    cls.add_method('DoReportRtsOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   951
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   952
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   953
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   954
    ## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   955
    cls.add_method('DoReportDataOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   956
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   957
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   958
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   959
    ## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportFinalRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   960
    cls.add_method('DoReportFinalRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   961
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   962
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   963
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   964
    ## ideal-wifi-manager.h: void ns3::IdealWifiRemoteStation::DoReportFinalDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   965
    cls.add_method('DoReportFinalDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   966
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   967
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   968
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   969
    ## ideal-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::IdealWifiRemoteStation::GetManager() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   970
    cls.add_method('GetManager', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   971
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   972
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   973
                   is_const=True, visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   974
    ## ideal-wifi-manager.h: ns3::WifiMode ns3::IdealWifiRemoteStation::DoGetDataMode(uint32_t size) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   975
    cls.add_method('DoGetDataMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   976
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   977
                   [param('uint32_t', 'size')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   978
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   979
    ## ideal-wifi-manager.h: ns3::WifiMode ns3::IdealWifiRemoteStation::DoGetRtsMode() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   980
    cls.add_method('DoGetRtsMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   981
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   982
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   983
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   984
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   985
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   986
def register_Ns3OnoeWifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   987
    ## onoe-wifi-manager.h: ns3::OnoeWifiRemoteStation::OnoeWifiRemoteStation(ns3::OnoeWifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
   988
    cls.add_constructor([param('ns3::OnoeWifiRemoteStation const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   989
    ## onoe-wifi-manager.h: ns3::OnoeWifiRemoteStation::OnoeWifiRemoteStation(ns3::Ptr<ns3::OnoeWifiManager> stations) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   990
    cls.add_constructor([param('ns3::Ptr< ns3::OnoeWifiManager >', 'stations')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   991
    ## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   992
    cls.add_method('DoReportRxOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   993
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   994
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   995
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   996
    ## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   997
    cls.add_method('DoReportRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   998
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
   999
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1000
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1001
    ## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1002
    cls.add_method('DoReportDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1003
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1004
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1005
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1006
    ## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1007
    cls.add_method('DoReportRtsOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1008
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1009
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1010
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1011
    ## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1012
    cls.add_method('DoReportDataOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1013
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1014
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1015
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1016
    ## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportFinalRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1017
    cls.add_method('DoReportFinalRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1018
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1019
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1020
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1021
    ## onoe-wifi-manager.h: void ns3::OnoeWifiRemoteStation::DoReportFinalDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1022
    cls.add_method('DoReportFinalDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1023
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1024
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1025
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1026
    ## onoe-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::OnoeWifiRemoteStation::GetManager() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1027
    cls.add_method('GetManager', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1028
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1029
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1030
                   is_const=True, visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1031
    ## onoe-wifi-manager.h: ns3::WifiMode ns3::OnoeWifiRemoteStation::DoGetDataMode(uint32_t size) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1032
    cls.add_method('DoGetDataMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1033
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1034
                   [param('uint32_t', 'size')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1035
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1036
    ## onoe-wifi-manager.h: ns3::WifiMode ns3::OnoeWifiRemoteStation::DoGetRtsMode() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1037
    cls.add_method('DoGetRtsMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1038
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1039
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1040
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1041
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1042
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1043
def register_Ns3PropagationDelayModel_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1044
    ## propagation-delay-model.h: ns3::PropagationDelayModel::PropagationDelayModel(ns3::PropagationDelayModel const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1045
    cls.add_constructor([param('ns3::PropagationDelayModel const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1046
    ## propagation-delay-model.h: ns3::PropagationDelayModel::PropagationDelayModel() [constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1047
    cls.add_constructor([])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1048
    ## propagation-delay-model.h: static ns3::TypeId ns3::PropagationDelayModel::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1049
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1050
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1051
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1052
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1053
    ## propagation-delay-model.h: ns3::Time ns3::PropagationDelayModel::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1054
    cls.add_method('GetDelay', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1055
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1056
                   [param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1057
                   is_pure_virtual=True, is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1058
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1059
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1060
def register_Ns3PropagationLossModel_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1061
    ## propagation-loss-model.h: static ns3::TypeId ns3::PropagationLossModel::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1062
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1063
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1064
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1065
                   is_static=True)
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1066
    ## propagation-loss-model.h: ns3::PropagationLossModel::PropagationLossModel() [constructor]
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1067
    cls.add_constructor([])
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1068
    ## propagation-loss-model.h: void ns3::PropagationLossModel::SetNext(ns3::Ptr<ns3::PropagationLossModel> next) [member function]
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1069
    cls.add_method('SetNext', 
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1070
                   'void', 
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1071
                   [param('ns3::Ptr< ns3::PropagationLossModel >', 'next')])
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1072
    ## propagation-loss-model.h: double ns3::PropagationLossModel::CalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1073
    cls.add_method('CalcRxPower', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1074
                   'double', 
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1075
                   [param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1076
                   is_const=True)
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1077
    ## propagation-loss-model.h: double ns3::PropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1078
    cls.add_method('DoCalcRxPower', 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1079
                   'double', 
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1080
                   [param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1081
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1082
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1083
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1084
def register_Ns3QosTag_methods(root_module, cls):
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1085
    ## qos-tag.h: ns3::QosTag::QosTag(ns3::QosTag const & arg0) [copy constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1086
    cls.add_constructor([param('ns3::QosTag const &', 'arg0')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1087
    ## qos-tag.h: static ns3::TypeId ns3::QosTag::GetTypeId() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1088
    cls.add_method('GetTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1089
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1090
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1091
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1092
    ## qos-tag.h: ns3::TypeId ns3::QosTag::GetInstanceTypeId() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1093
    cls.add_method('GetInstanceTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1094
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1095
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1096
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1097
    ## qos-tag.h: ns3::QosTag::QosTag() [constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1098
    cls.add_constructor([])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1099
    ## qos-tag.h: void ns3::QosTag::Serialize(ns3::TagBuffer i) const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1100
    cls.add_method('Serialize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1101
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1102
                   [param('ns3::TagBuffer', 'i')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1103
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1104
    ## qos-tag.h: void ns3::QosTag::Deserialize(ns3::TagBuffer i) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1105
    cls.add_method('Deserialize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1106
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1107
                   [param('ns3::TagBuffer', 'i')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1108
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1109
    ## qos-tag.h: uint32_t ns3::QosTag::GetSerializedSize() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1110
    cls.add_method('GetSerializedSize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1111
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1112
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1113
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1114
    ## qos-tag.h: void ns3::QosTag::Print(std::ostream & os) const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1115
    cls.add_method('Print', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1116
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1117
                   [param('std::ostream &', 'os')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1118
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1119
    ## qos-tag.h: uint8_t ns3::QosTag::Get() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1120
    cls.add_method('Get', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1121
                   'uint8_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1122
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1123
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1124
    ## qos-tag.h: void ns3::QosTag::Set(uint8_t tid) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1125
    cls.add_method('Set', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1126
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1127
                   [param('uint8_t', 'tid')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1128
    return
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  1129
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1130
def register_Ns3RandomPropagationDelayModel_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1131
    ## propagation-delay-model.h: ns3::RandomPropagationDelayModel::RandomPropagationDelayModel(ns3::RandomPropagationDelayModel const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1132
    cls.add_constructor([param('ns3::RandomPropagationDelayModel const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1133
    ## propagation-delay-model.h: static ns3::TypeId ns3::RandomPropagationDelayModel::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1134
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1135
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1136
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1137
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1138
    ## propagation-delay-model.h: ns3::RandomPropagationDelayModel::RandomPropagationDelayModel() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1139
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1140
    ## propagation-delay-model.h: ns3::Time ns3::RandomPropagationDelayModel::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1141
    cls.add_method('GetDelay', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1142
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1143
                   [param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1144
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1145
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1146
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1147
def register_Ns3RandomPropagationLossModel_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1148
    ## propagation-loss-model.h: static ns3::TypeId ns3::RandomPropagationLossModel::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1149
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1150
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1151
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1152
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1153
    ## propagation-loss-model.h: ns3::RandomPropagationLossModel::RandomPropagationLossModel() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1154
    cls.add_constructor([])
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1155
    ## propagation-loss-model.h: double ns3::RandomPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1156
    cls.add_method('DoCalcRxPower', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1157
                   'double', 
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1158
                   [param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  1159
                   is_const=True, visibility='private', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1160
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1161
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1162
def register_Ns3RraaWifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1163
    ## rraa-wifi-manager.h: ns3::RraaWifiRemoteStation::RraaWifiRemoteStation(ns3::RraaWifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1164
    cls.add_constructor([param('ns3::RraaWifiRemoteStation const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1165
    ## rraa-wifi-manager.h: ns3::RraaWifiRemoteStation::RraaWifiRemoteStation(ns3::Ptr<ns3::RraaWifiManager> stations) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1166
    cls.add_constructor([param('ns3::Ptr< ns3::RraaWifiManager >', 'stations')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1167
    ## rraa-wifi-manager.h: bool ns3::RraaWifiRemoteStation::NeedRts(ns3::Ptr<ns3::Packet const> packet) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1168
    cls.add_method('NeedRts', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1169
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1170
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1171
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1172
    ## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportRxOk(double rxSnr, ns3::WifiMode txMode) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1173
    cls.add_method('DoReportRxOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1174
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1175
                   [param('double', 'rxSnr'), param('ns3::WifiMode', 'txMode')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1176
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1177
    ## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1178
    cls.add_method('DoReportRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1179
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1180
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1181
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1182
    ## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1183
    cls.add_method('DoReportDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1184
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1185
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1186
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1187
    ## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportRtsOk(double ctsSnr, ns3::WifiMode ctsMode, double rtsSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1188
    cls.add_method('DoReportRtsOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1189
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1190
                   [param('double', 'ctsSnr'), param('ns3::WifiMode', 'ctsMode'), param('double', 'rtsSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1191
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1192
    ## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportDataOk(double ackSnr, ns3::WifiMode ackMode, double dataSnr) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1193
    cls.add_method('DoReportDataOk', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1194
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1195
                   [param('double', 'ackSnr'), param('ns3::WifiMode', 'ackMode'), param('double', 'dataSnr')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1196
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1197
    ## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportFinalRtsFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1198
    cls.add_method('DoReportFinalRtsFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1199
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1200
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1201
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1202
    ## rraa-wifi-manager.h: void ns3::RraaWifiRemoteStation::DoReportFinalDataFailed() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1203
    cls.add_method('DoReportFinalDataFailed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1204
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1205
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1206
                   visibility='protected', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1207
    ## rraa-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::RraaWifiRemoteStation::GetManager() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1208
    cls.add_method('GetManager', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1209
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1210
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1211
                   is_const=True, visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1212
    ## rraa-wifi-manager.h: ns3::WifiMode ns3::RraaWifiRemoteStation::DoGetDataMode(uint32_t size) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1213
    cls.add_method('DoGetDataMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1214
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1215
                   [param('uint32_t', 'size')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1216
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1217
    ## rraa-wifi-manager.h: ns3::WifiMode ns3::RraaWifiRemoteStation::DoGetRtsMode() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1218
    cls.add_method('DoGetRtsMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1219
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1220
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1221
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1222
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1223
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1224
def register_Ns3SsidChecker_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1225
    ## ssid.h: ns3::SsidChecker::SsidChecker(ns3::SsidChecker const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1226
    cls.add_constructor([param('ns3::SsidChecker const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1227
    ## ssid.h: ns3::SsidChecker::SsidChecker() [constructor]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1228
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1229
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1230
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1231
def register_Ns3SsidValue_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1232
    ## ssid.h: ns3::SsidValue::SsidValue(ns3::SsidValue const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1233
    cls.add_constructor([param('ns3::SsidValue const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1234
    ## ssid.h: ns3::SsidValue::SsidValue() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1235
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1236
    ## ssid.h: ns3::SsidValue::SsidValue(ns3::Ssid const & value) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1237
    cls.add_constructor([param('ns3::Ssid const &', 'value')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1238
    ## ssid.h: void ns3::SsidValue::Set(ns3::Ssid const & value) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1239
    cls.add_method('Set', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1240
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1241
                   [param('ns3::Ssid const &', 'value')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1242
    ## ssid.h: ns3::Ssid ns3::SsidValue::Get() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1243
    cls.add_method('Get', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1244
                   'ns3::Ssid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1245
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1246
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1247
    ## ssid.h: ns3::Ptr<ns3::AttributeValue> ns3::SsidValue::Copy() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1248
    cls.add_method('Copy', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1249
                   'ns3::Ptr< ns3::AttributeValue >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1250
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1251
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1252
    ## ssid.h: std::string ns3::SsidValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1253
    cls.add_method('SerializeToString', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1254
                   'std::string', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1255
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1256
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1257
    ## ssid.h: bool ns3::SsidValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1258
    cls.add_method('DeserializeFromString', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1259
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1260
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1261
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1262
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1263
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1264
def register_Ns3ThreeLogDistancePropagationLossModel_methods(root_module, cls):
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1265
    ## propagation-loss-model.h: static ns3::TypeId ns3::ThreeLogDistancePropagationLossModel::GetTypeId() [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1266
    cls.add_method('GetTypeId', 
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1267
                   'ns3::TypeId', 
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1268
                   [], 
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1269
                   is_static=True)
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1270
    ## propagation-loss-model.h: ns3::ThreeLogDistancePropagationLossModel::ThreeLogDistancePropagationLossModel() [constructor]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1271
    cls.add_constructor([])
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1272
    ## propagation-loss-model.h: double ns3::ThreeLogDistancePropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1273
    cls.add_method('DoCalcRxPower', 
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1274
                   'double', 
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1275
                   [param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1276
                   is_const=True, visibility='private', is_virtual=True)
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1277
    return
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  1278
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1279
def register_Ns3WifiMac_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1280
    ## wifi-mac.h: ns3::WifiMac::WifiMac(ns3::WifiMac const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1281
    cls.add_constructor([param('ns3::WifiMac const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1282
    ## wifi-mac.h: ns3::WifiMac::WifiMac() [constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1283
    cls.add_constructor([])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1284
    ## wifi-mac.h: static ns3::TypeId ns3::WifiMac::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1285
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1286
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1287
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1288
                   is_static=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1289
    ## wifi-mac.h: void ns3::WifiMac::SetSlot(ns3::Time slotTime) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1290
    cls.add_method('SetSlot', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1291
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1292
                   [param('ns3::Time', 'slotTime')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1293
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1294
    ## wifi-mac.h: void ns3::WifiMac::SetSifs(ns3::Time sifs) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1295
    cls.add_method('SetSifs', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1296
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1297
                   [param('ns3::Time', 'sifs')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1298
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1299
    ## wifi-mac.h: void ns3::WifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1300
    cls.add_method('SetEifsNoDifs', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1301
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1302
                   [param('ns3::Time', 'eifsNoDifs')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1303
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1304
    ## wifi-mac.h: void ns3::WifiMac::SetPifs(ns3::Time pifs) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1305
    cls.add_method('SetPifs', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1306
                   'void', 
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1307
                   [param('ns3::Time', 'pifs')], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1308
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1309
    ## wifi-mac.h: void ns3::WifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1310
    cls.add_method('SetCtsTimeout', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1311
                   'void', 
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1312
                   [param('ns3::Time', 'ctsTimeout')], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1313
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1314
    ## wifi-mac.h: void ns3::WifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1315
    cls.add_method('SetAckTimeout', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1316
                   'void', 
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1317
                   [param('ns3::Time', 'ackTimeout')], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1318
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1319
    ## wifi-mac.h: void ns3::WifiMac::SetMaxPropagationDelay(ns3::Time delay) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1320
    cls.add_method('SetMaxPropagationDelay', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1321
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1322
                   [param('ns3::Time', 'delay')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1323
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetPifs() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1324
    cls.add_method('GetPifs', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1325
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1326
                   [], 
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1327
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1328
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetSifs() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1329
    cls.add_method('GetSifs', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1330
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1331
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1332
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1333
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetSlot() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1334
    cls.add_method('GetSlot', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1335
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1336
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1337
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1338
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetEifsNoDifs() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1339
    cls.add_method('GetEifsNoDifs', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1340
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1341
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1342
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1343
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetCtsTimeout() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1344
    cls.add_method('GetCtsTimeout', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1345
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1346
                   [], 
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1347
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1348
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetAckTimeout() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1349
    cls.add_method('GetAckTimeout', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1350
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1351
                   [], 
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1352
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1353
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetMsduLifetime() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1354
    cls.add_method('GetMsduLifetime', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1355
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1356
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1357
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1358
    ## wifi-mac.h: ns3::Time ns3::WifiMac::GetMaxPropagationDelay() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1359
    cls.add_method('GetMaxPropagationDelay', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1360
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1361
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1362
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1363
    ## wifi-mac.h: uint32_t ns3::WifiMac::GetMaxMsduSize() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1364
    cls.add_method('GetMaxMsduSize', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1365
                   'uint32_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1366
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1367
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1368
    ## wifi-mac.h: ns3::Mac48Address ns3::WifiMac::GetAddress() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1369
    cls.add_method('GetAddress', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1370
                   'ns3::Mac48Address', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1371
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1372
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1373
    ## wifi-mac.h: ns3::Ssid ns3::WifiMac::GetSsid() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1374
    cls.add_method('GetSsid', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1375
                   'ns3::Ssid', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1376
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1377
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1378
    ## wifi-mac.h: void ns3::WifiMac::SetAddress(ns3::Mac48Address address) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1379
    cls.add_method('SetAddress', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1380
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1381
                   [param('ns3::Mac48Address', 'address')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1382
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1383
    ## wifi-mac.h: void ns3::WifiMac::SetSsid(ns3::Ssid ssid) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1384
    cls.add_method('SetSsid', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1385
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1386
                   [param('ns3::Ssid', 'ssid')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1387
                   is_pure_virtual=True, is_virtual=True)
3743
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  1388
    ## wifi-mac.h: ns3::Mac48Address ns3::WifiMac::GetBssid() const [member function]
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  1389
    cls.add_method('GetBssid', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  1390
                   'ns3::Mac48Address', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  1391
                   [], 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  1392
                   is_pure_virtual=True, is_const=True, is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1393
    ## wifi-mac.h: void ns3::WifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1394
    cls.add_method('Enqueue', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1395
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1396
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1397
                   is_pure_virtual=True, is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1398
    ## wifi-mac.h: void ns3::WifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
3604
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  1399
    cls.add_method('Enqueue', 
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  1400
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1401
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1402
                   is_pure_virtual=True, is_virtual=True)
3604
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  1403
    ## wifi-mac.h: bool ns3::WifiMac::SupportsSendFrom() const [member function]
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  1404
    cls.add_method('SupportsSendFrom', 
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  1405
                   'bool', 
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  1406
                   [], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1407
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1408
    ## wifi-mac.h: void ns3::WifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1409
    cls.add_method('SetWifiPhy', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1410
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1411
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1412
                   is_pure_virtual=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1413
    ## wifi-mac.h: void ns3::WifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1414
    cls.add_method('SetWifiRemoteStationManager', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1415
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1416
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1417
                   is_pure_virtual=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1418
    ## wifi-mac.h: void ns3::WifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1419
    cls.add_method('SetForwardUpCallback', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1420
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1421
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1422
                   is_pure_virtual=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1423
    ## wifi-mac.h: void ns3::WifiMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1424
    cls.add_method('SetLinkUpCallback', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1425
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1426
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1427
                   is_pure_virtual=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1428
    ## wifi-mac.h: void ns3::WifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1429
    cls.add_method('SetLinkDownCallback', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1430
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1431
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1432
                   is_pure_virtual=True, is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1433
    ## wifi-mac.h: void ns3::WifiMac::NotifyTx(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1434
    cls.add_method('NotifyTx', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1435
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1436
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1437
    ## wifi-mac.h: void ns3::WifiMac::NotifyTxDrop(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1438
    cls.add_method('NotifyTxDrop', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1439
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1440
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1441
    ## wifi-mac.h: void ns3::WifiMac::NotifyRx(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1442
    cls.add_method('NotifyRx', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1443
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1444
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1445
    ## wifi-mac.h: void ns3::WifiMac::NotifyPromiscRx(ns3::Ptr<ns3::Packet const> packet) [member function]
4279
7cb2938928d4 Update the python bindings
Raj Bhattacharjea <raj.b@gatech.edu>
parents: 4265
diff changeset
  1446
    cls.add_method('NotifyPromiscRx', 
7cb2938928d4 Update the python bindings
Raj Bhattacharjea <raj.b@gatech.edu>
parents: 4265
diff changeset
  1447
                   'void', 
7cb2938928d4 Update the python bindings
Raj Bhattacharjea <raj.b@gatech.edu>
parents: 4265
diff changeset
  1448
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1449
    ## wifi-mac.h: void ns3::WifiMac::NotifyRxDrop(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1450
    cls.add_method('NotifyRxDrop', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1451
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  1452
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1453
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1454
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1455
def register_Ns3WifiMacHeader_methods(root_module, cls):
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1456
    ## wifi-mac-header.h: ns3::WifiMacHeader::WifiMacHeader(ns3::WifiMacHeader const & arg0) [copy constructor]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1457
    cls.add_constructor([param('ns3::WifiMacHeader const &', 'arg0')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1458
    ## wifi-mac-header.h: ns3::WifiMacHeader::WifiMacHeader() [constructor]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1459
    cls.add_constructor([])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1460
    ## wifi-mac-header.h: static ns3::TypeId ns3::WifiMacHeader::GetTypeId() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1461
    cls.add_method('GetTypeId', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1462
                   'ns3::TypeId', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1463
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1464
                   is_static=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1465
    ## wifi-mac-header.h: ns3::TypeId ns3::WifiMacHeader::GetInstanceTypeId() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1466
    cls.add_method('GetInstanceTypeId', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1467
                   'ns3::TypeId', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1468
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1469
                   is_const=True, is_virtual=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1470
    ## wifi-mac-header.h: void ns3::WifiMacHeader::Print(std::ostream & os) const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1471
    cls.add_method('Print', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1472
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1473
                   [param('std::ostream &', 'os')], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1474
                   is_const=True, is_virtual=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1475
    ## wifi-mac-header.h: uint32_t ns3::WifiMacHeader::GetSerializedSize() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1476
    cls.add_method('GetSerializedSize', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1477
                   'uint32_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1478
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1479
                   is_const=True, is_virtual=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1480
    ## wifi-mac-header.h: void ns3::WifiMacHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1481
    cls.add_method('Serialize', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1482
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1483
                   [param('ns3::Buffer::Iterator', 'start')], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1484
                   is_const=True, is_virtual=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1485
    ## wifi-mac-header.h: uint32_t ns3::WifiMacHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1486
    cls.add_method('Deserialize', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1487
                   'uint32_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1488
                   [param('ns3::Buffer::Iterator', 'start')], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1489
                   is_virtual=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1490
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetAssocReq() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1491
    cls.add_method('SetAssocReq', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1492
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1493
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1494
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetAssocResp() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1495
    cls.add_method('SetAssocResp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1496
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1497
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1498
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetProbeReq() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1499
    cls.add_method('SetProbeReq', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1500
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1501
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1502
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetProbeResp() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1503
    cls.add_method('SetProbeResp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1504
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1505
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1506
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetBeacon() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1507
    cls.add_method('SetBeacon', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1508
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1509
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1510
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetTypeData() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1511
    cls.add_method('SetTypeData', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1512
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1513
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1514
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsFrom() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1515
    cls.add_method('SetDsFrom', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1516
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1517
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1518
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsNotFrom() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1519
    cls.add_method('SetDsNotFrom', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1520
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1521
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1522
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsTo() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1523
    cls.add_method('SetDsTo', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1524
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1525
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1526
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetDsNotTo() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1527
    cls.add_method('SetDsNotTo', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1528
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1529
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1530
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr1(ns3::Mac48Address address) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1531
    cls.add_method('SetAddr1', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1532
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1533
                   [param('ns3::Mac48Address', 'address')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1534
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr2(ns3::Mac48Address address) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1535
    cls.add_method('SetAddr2', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1536
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1537
                   [param('ns3::Mac48Address', 'address')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1538
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr3(ns3::Mac48Address address) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1539
    cls.add_method('SetAddr3', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1540
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1541
                   [param('ns3::Mac48Address', 'address')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1542
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetAddr4(ns3::Mac48Address address) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1543
    cls.add_method('SetAddr4', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1544
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1545
                   [param('ns3::Mac48Address', 'address')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1546
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetType(ns3::WifiMacType type) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1547
    cls.add_method('SetType', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1548
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1549
                   [param('ns3::WifiMacType', 'type')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1550
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetRawDuration(uint16_t duration) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1551
    cls.add_method('SetRawDuration', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1552
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1553
                   [param('uint16_t', 'duration')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1554
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetDuration(ns3::Time duration) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1555
    cls.add_method('SetDuration', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1556
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1557
                   [param('ns3::Time', 'duration')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1558
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetId(uint16_t id) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1559
    cls.add_method('SetId', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1560
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1561
                   [param('uint16_t', 'id')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1562
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetSequenceNumber(uint16_t seq) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1563
    cls.add_method('SetSequenceNumber', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1564
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1565
                   [param('uint16_t', 'seq')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1566
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetFragmentNumber(uint8_t frag) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1567
    cls.add_method('SetFragmentNumber', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1568
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1569
                   [param('uint8_t', 'frag')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1570
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetNoMoreFragments() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1571
    cls.add_method('SetNoMoreFragments', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1572
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1573
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1574
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetMoreFragments() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1575
    cls.add_method('SetMoreFragments', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1576
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1577
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1578
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetRetry() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1579
    cls.add_method('SetRetry', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1580
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1581
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1582
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetNoRetry() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1583
    cls.add_method('SetNoRetry', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1584
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1585
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1586
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosTid(uint8_t tid) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1587
    cls.add_method('SetQosTid', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1588
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1589
                   [param('uint8_t', 'tid')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1590
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosEosp() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1591
    cls.add_method('SetQosEosp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1592
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1593
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1594
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosNoEosp() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1595
    cls.add_method('SetQosNoEosp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1596
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1597
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1598
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosAckPolicy(ns3::WifiMacHeader::QosAckPolicy arg0) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1599
    cls.add_method('SetQosAckPolicy', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1600
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1601
                   [param('ns3::WifiMacHeader::QosAckPolicy', 'arg0')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1602
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosAmsdu() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1603
    cls.add_method('SetQosAmsdu', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1604
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1605
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1606
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosNoAmsdu() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1607
    cls.add_method('SetQosNoAmsdu', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1608
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1609
                   [])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1610
    ## wifi-mac-header.h: void ns3::WifiMacHeader::SetQosTxopLimit(uint8_t txop) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1611
    cls.add_method('SetQosTxopLimit', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1612
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1613
                   [param('uint8_t', 'txop')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1614
    ## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr1() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1615
    cls.add_method('GetAddr1', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1616
                   'ns3::Mac48Address', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1617
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1618
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1619
    ## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr2() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1620
    cls.add_method('GetAddr2', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1621
                   'ns3::Mac48Address', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1622
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1623
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1624
    ## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr3() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1625
    cls.add_method('GetAddr3', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1626
                   'ns3::Mac48Address', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1627
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1628
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1629
    ## wifi-mac-header.h: ns3::Mac48Address ns3::WifiMacHeader::GetAddr4() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1630
    cls.add_method('GetAddr4', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1631
                   'ns3::Mac48Address', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1632
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1633
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1634
    ## wifi-mac-header.h: ns3::WifiMacType ns3::WifiMacHeader::GetType() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1635
    cls.add_method('GetType', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1636
                   'ns3::WifiMacType', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1637
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1638
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1639
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsFromDs() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1640
    cls.add_method('IsFromDs', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1641
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1642
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1643
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1644
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsToDs() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1645
    cls.add_method('IsToDs', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1646
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1647
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1648
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1649
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsData() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1650
    cls.add_method('IsData', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1651
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1652
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1653
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1654
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosData() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1655
    cls.add_method('IsQosData', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1656
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1657
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1658
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1659
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsCtl() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1660
    cls.add_method('IsCtl', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1661
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1662
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1663
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1664
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsMgt() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1665
    cls.add_method('IsMgt', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1666
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1667
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1668
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1669
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsCfpoll() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1670
    cls.add_method('IsCfpoll', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1671
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1672
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1673
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1674
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsRts() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1675
    cls.add_method('IsRts', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1676
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1677
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1678
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1679
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsCts() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1680
    cls.add_method('IsCts', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1681
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1682
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1683
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1684
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAck() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1685
    cls.add_method('IsAck', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1686
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1687
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1688
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1689
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAssocReq() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1690
    cls.add_method('IsAssocReq', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1691
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1692
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1693
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1694
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAssocResp() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1695
    cls.add_method('IsAssocResp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1696
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1697
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1698
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1699
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsReassocReq() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1700
    cls.add_method('IsReassocReq', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1701
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1702
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1703
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1704
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsReassocResp() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1705
    cls.add_method('IsReassocResp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1706
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1707
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1708
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1709
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsProbeReq() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1710
    cls.add_method('IsProbeReq', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1711
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1712
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1713
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1714
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsProbeResp() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1715
    cls.add_method('IsProbeResp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1716
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1717
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1718
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1719
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsBeacon() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1720
    cls.add_method('IsBeacon', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1721
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1722
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1723
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1724
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsDisassociation() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1725
    cls.add_method('IsDisassociation', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1726
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1727
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1728
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1729
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsAuthentication() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1730
    cls.add_method('IsAuthentication', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1731
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1732
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1733
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1734
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsDeauthentication() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1735
    cls.add_method('IsDeauthentication', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1736
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1737
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1738
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1739
    ## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetRawDuration() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1740
    cls.add_method('GetRawDuration', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1741
                   'uint16_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1742
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1743
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1744
    ## wifi-mac-header.h: ns3::Time ns3::WifiMacHeader::GetDuration() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1745
    cls.add_method('GetDuration', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1746
                   'ns3::Time', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1747
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1748
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1749
    ## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetSequenceControl() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1750
    cls.add_method('GetSequenceControl', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1751
                   'uint16_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1752
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1753
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1754
    ## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetSequenceNumber() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1755
    cls.add_method('GetSequenceNumber', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1756
                   'uint16_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1757
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1758
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1759
    ## wifi-mac-header.h: uint16_t ns3::WifiMacHeader::GetFragmentNumber() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1760
    cls.add_method('GetFragmentNumber', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1761
                   'uint16_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1762
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1763
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1764
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsRetry() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1765
    cls.add_method('IsRetry', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1766
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1767
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1768
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1769
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsMoreFragments() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1770
    cls.add_method('IsMoreFragments', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1771
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1772
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1773
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1774
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosBlockAck() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1775
    cls.add_method('IsQosBlockAck', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1776
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1777
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1778
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1779
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosNoAck() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1780
    cls.add_method('IsQosNoAck', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1781
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1782
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1783
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1784
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosAck() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1785
    cls.add_method('IsQosAck', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1786
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1787
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1788
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1789
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosEosp() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1790
    cls.add_method('IsQosEosp', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1791
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1792
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1793
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1794
    ## wifi-mac-header.h: bool ns3::WifiMacHeader::IsQosAmsdu() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1795
    cls.add_method('IsQosAmsdu', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1796
                   'bool', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1797
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1798
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1799
    ## wifi-mac-header.h: uint8_t ns3::WifiMacHeader::GetQosTid() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1800
    cls.add_method('GetQosTid', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1801
                   'uint8_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1802
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1803
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1804
    ## wifi-mac-header.h: ns3::WifiMacHeader::QosAckPolicy ns3::WifiMacHeader::GetQosAckPolicy() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1805
    cls.add_method('GetQosAckPolicy', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1806
                   'ns3::WifiMacHeader::QosAckPolicy', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1807
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1808
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1809
    ## wifi-mac-header.h: uint8_t ns3::WifiMacHeader::GetQosTxopLimit() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1810
    cls.add_method('GetQosTxopLimit', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1811
                   'uint8_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1812
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1813
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1814
    ## wifi-mac-header.h: uint32_t ns3::WifiMacHeader::GetSize() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1815
    cls.add_method('GetSize', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1816
                   'uint32_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1817
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1818
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1819
    ## wifi-mac-header.h: char const * ns3::WifiMacHeader::GetTypeString() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1820
    cls.add_method('GetTypeString', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1821
                   'char const *', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1822
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1823
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1824
    return
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1825
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1826
def register_Ns3WifiModeChecker_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1827
    ## wifi-mode.h: ns3::WifiModeChecker::WifiModeChecker(ns3::WifiModeChecker const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1828
    cls.add_constructor([param('ns3::WifiModeChecker const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1829
    ## wifi-mode.h: ns3::WifiModeChecker::WifiModeChecker() [constructor]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1830
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1831
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1832
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1833
def register_Ns3WifiModeValue_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1834
    ## wifi-mode.h: ns3::WifiModeValue::WifiModeValue(ns3::WifiModeValue const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1835
    cls.add_constructor([param('ns3::WifiModeValue const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1836
    ## wifi-mode.h: ns3::WifiModeValue::WifiModeValue() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1837
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1838
    ## wifi-mode.h: ns3::WifiModeValue::WifiModeValue(ns3::WifiMode const & value) [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1839
    cls.add_constructor([param('ns3::WifiMode const &', 'value')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1840
    ## wifi-mode.h: void ns3::WifiModeValue::Set(ns3::WifiMode const & value) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1841
    cls.add_method('Set', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1842
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1843
                   [param('ns3::WifiMode const &', 'value')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1844
    ## wifi-mode.h: ns3::WifiMode ns3::WifiModeValue::Get() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1845
    cls.add_method('Get', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1846
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1847
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1848
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1849
    ## wifi-mode.h: ns3::Ptr<ns3::AttributeValue> ns3::WifiModeValue::Copy() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1850
    cls.add_method('Copy', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1851
                   'ns3::Ptr< ns3::AttributeValue >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1852
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1853
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1854
    ## wifi-mode.h: std::string ns3::WifiModeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1855
    cls.add_method('SerializeToString', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1856
                   'std::string', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1857
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1858
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1859
    ## wifi-mode.h: bool ns3::WifiModeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1860
    cls.add_method('DeserializeFromString', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1861
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1862
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1863
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1864
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1865
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1866
def register_Ns3WifiPhy_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1867
    ## wifi-phy.h: ns3::WifiPhy::WifiPhy(ns3::WifiPhy const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  1868
    cls.add_constructor([param('ns3::WifiPhy const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1869
    ## wifi-phy.h: static ns3::TypeId ns3::WifiPhy::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1870
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1871
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1872
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1873
                   is_static=True)
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1874
    ## wifi-phy.h: ns3::WifiPhy::WifiPhy() [constructor]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1875
    cls.add_constructor([])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1876
    ## wifi-phy.h: double ns3::WifiPhy::GetTxPowerStart() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1877
    cls.add_method('GetTxPowerStart', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1878
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1879
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1880
                   is_pure_virtual=True, is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1881
    ## wifi-phy.h: double ns3::WifiPhy::GetTxPowerEnd() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1882
    cls.add_method('GetTxPowerEnd', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1883
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1884
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1885
                   is_pure_virtual=True, is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1886
    ## wifi-phy.h: uint32_t ns3::WifiPhy::GetNTxPower() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1887
    cls.add_method('GetNTxPower', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1888
                   'uint32_t', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1889
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1890
                   is_pure_virtual=True, is_const=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1891
    ## wifi-phy.h: void ns3::WifiPhy::SetReceiveOkCallback(ns3::Callback<void,ns3::Ptr<ns3::Packet>,double,ns3::WifiMode,ns3::WifiPreamble,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1892
    cls.add_method('SetReceiveOkCallback', 
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  1893
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1894
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::WifiMode, ns3::WifiPreamble, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1895
                   is_pure_virtual=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1896
    ## wifi-phy.h: void ns3::WifiPhy::SetReceiveErrorCallback(ns3::Callback<void,ns3::Ptr<const ns3::Packet>,double,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1897
    cls.add_method('SetReceiveErrorCallback', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1898
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  1899
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1900
                   is_pure_virtual=True, is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  1901
    ## wifi-phy.h: void ns3::WifiPhy::SendPacket(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMode mode, ns3::WifiPreamble preamble, uint8_t txPowerLevel) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1902
    cls.add_method('SendPacket', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  1903
                   'void', 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1904
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMode', 'mode'), param('ns3::WifiPreamble', 'preamble'), param('uint8_t', 'txPowerLevel')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1905
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1906
    ## wifi-phy.h: void ns3::WifiPhy::RegisterListener(ns3::WifiPhyListener * listener) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1907
    cls.add_method('RegisterListener', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1908
                   'void', 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1909
                   [param('ns3::WifiPhyListener *', 'listener')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1910
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1911
    ## wifi-phy.h: bool ns3::WifiPhy::IsStateCcaBusy() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1912
    cls.add_method('IsStateCcaBusy', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1913
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1914
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1915
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1916
    ## wifi-phy.h: bool ns3::WifiPhy::IsStateIdle() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1917
    cls.add_method('IsStateIdle', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1918
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1919
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1920
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1921
    ## wifi-phy.h: bool ns3::WifiPhy::IsStateBusy() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1922
    cls.add_method('IsStateBusy', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1923
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1924
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1925
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1926
    ## wifi-phy.h: bool ns3::WifiPhy::IsStateSync() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1927
    cls.add_method('IsStateSync', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1928
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1929
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1930
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1931
    ## wifi-phy.h: bool ns3::WifiPhy::IsStateTx() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1932
    cls.add_method('IsStateTx', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1933
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1934
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1935
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1936
    ## wifi-phy.h: ns3::Time ns3::WifiPhy::GetStateDuration() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1937
    cls.add_method('GetStateDuration', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1938
                   'ns3::Time', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  1939
                   [], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1940
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1941
    ## wifi-phy.h: ns3::Time ns3::WifiPhy::GetDelayUntilIdle() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1942
    cls.add_method('GetDelayUntilIdle', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1943
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1944
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1945
                   is_pure_virtual=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1946
    ## wifi-phy.h: ns3::Time ns3::WifiPhy::GetLastRxStartTime() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1947
    cls.add_method('GetLastRxStartTime', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1948
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1949
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1950
                   is_pure_virtual=True, is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1951
    ## wifi-phy.h: ns3::Time ns3::WifiPhy::CalculateTxDuration(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1952
    cls.add_method('CalculateTxDuration', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1953
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1954
                   [param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1955
                   is_pure_virtual=True, is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1956
    ## wifi-phy.h: uint32_t ns3::WifiPhy::GetNModes() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1957
    cls.add_method('GetNModes', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1958
                   'uint32_t', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1959
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1960
                   is_pure_virtual=True, is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1961
    ## wifi-phy.h: ns3::WifiMode ns3::WifiPhy::GetMode(uint32_t mode) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1962
    cls.add_method('GetMode', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1963
                   'ns3::WifiMode', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1964
                   [param('uint32_t', 'mode')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1965
                   is_pure_virtual=True, is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1966
    ## wifi-phy.h: double ns3::WifiPhy::CalculateSnr(ns3::WifiMode txMode, double ber) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1967
    cls.add_method('CalculateSnr', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1968
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1969
                   [param('ns3::WifiMode', 'txMode'), param('double', 'ber')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1970
                   is_pure_virtual=True, is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1971
    ## wifi-phy.h: ns3::Ptr<ns3::WifiChannel> ns3::WifiPhy::GetChannel() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1972
    cls.add_method('GetChannel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1973
                   'ns3::Ptr< ns3::WifiChannel >', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1974
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  1975
                   is_pure_virtual=True, is_const=True, is_virtual=True)
4044
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1976
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get6mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1977
    cls.add_method('Get6mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1978
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1979
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1980
                   is_static=True)
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1981
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get9mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1982
    cls.add_method('Get9mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1983
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1984
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1985
                   is_static=True)
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1986
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get12mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1987
    cls.add_method('Get12mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1988
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1989
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1990
                   is_static=True)
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1991
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get18mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1992
    cls.add_method('Get18mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1993
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1994
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1995
                   is_static=True)
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1996
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get24mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1997
    cls.add_method('Get24mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1998
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  1999
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2000
                   is_static=True)
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2001
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get36mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2002
    cls.add_method('Get36mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2003
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2004
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2005
                   is_static=True)
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2006
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get48mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2007
    cls.add_method('Get48mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2008
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2009
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2010
                   is_static=True)
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2011
    ## wifi-phy.h: static ns3::WifiMode ns3::WifiPhy::Get54mba() [member function]
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2012
    cls.add_method('Get54mba', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2013
                   'ns3::WifiMode', 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2014
                   [], 
1c47d32e8503 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4038
diff changeset
  2015
                   is_static=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2016
    ## wifi-phy.h: void ns3::WifiPhy::NotifyTxBegin(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2017
    cls.add_method('NotifyTxBegin', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2018
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2019
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2020
    ## wifi-phy.h: void ns3::WifiPhy::NotifyTxEnd(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2021
    cls.add_method('NotifyTxEnd', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2022
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2023
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2024
    ## wifi-phy.h: void ns3::WifiPhy::NotifyTxDrop(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2025
    cls.add_method('NotifyTxDrop', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2026
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2027
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2028
    ## wifi-phy.h: void ns3::WifiPhy::NotifyRxBegin(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2029
    cls.add_method('NotifyRxBegin', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2030
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2031
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2032
    ## wifi-phy.h: void ns3::WifiPhy::NotifyRxEnd(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2033
    cls.add_method('NotifyRxEnd', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2034
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2035
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2036
    ## wifi-phy.h: void ns3::WifiPhy::NotifyRxDrop(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2037
    cls.add_method('NotifyRxDrop', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2038
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2039
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2040
    ## wifi-phy.h: void ns3::WifiPhy::NotifyPromiscSniff(ns3::Ptr<ns3::Packet const> packet) [member function]
4265
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2041
    cls.add_method('NotifyPromiscSniff', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2042
                   'void', 
5f837915710a remove unneeded packet copies, includes. Rescan
Craig Dowell <craigdo@ee.washington.edu>
parents: 4241
diff changeset
  2043
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2044
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2045
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2046
def register_Ns3WifiRemoteStationManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2047
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStationManager::WifiRemoteStationManager(ns3::WifiRemoteStationManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2048
    cls.add_constructor([param('ns3::WifiRemoteStationManager const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2049
    ## wifi-remote-station-manager.h: static ns3::TypeId ns3::WifiRemoteStationManager::GetTypeId() [member function]
3474
dac9146297c8 Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3468
diff changeset
  2050
    cls.add_method('GetTypeId', 
dac9146297c8 Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3468
diff changeset
  2051
                   'ns3::TypeId', 
dac9146297c8 Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3468
diff changeset
  2052
                   [], 
dac9146297c8 Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3468
diff changeset
  2053
                   is_static=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2054
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStationManager::WifiRemoteStationManager() [constructor]
3474
dac9146297c8 Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3468
diff changeset
  2055
    cls.add_constructor([])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2056
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetupPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2057
    cls.add_method('SetupPhy', 
3474
dac9146297c8 Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3468
diff changeset
  2058
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2059
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2060
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2061
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetMaxSsrc() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2062
    cls.add_method('GetMaxSsrc', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2063
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2064
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2065
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2066
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetMaxSlrc() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2067
    cls.add_method('GetMaxSlrc', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2068
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2069
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2070
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2071
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetRtsCtsThreshold() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2072
    cls.add_method('GetRtsCtsThreshold', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2073
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2074
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2075
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2076
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetFragmentationThreshold() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2077
    cls.add_method('GetFragmentationThreshold', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2078
                   'uint32_t', 
3474
dac9146297c8 Define NS3_ASSERT_ENABLE and NS3_LOG_ENABLE, to make sure we pick up all definitions (such as the logging APIs)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3468
diff changeset
  2079
                   [], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2080
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2081
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetMaxSsrc(uint32_t maxSsrc) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2082
    cls.add_method('SetMaxSsrc', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2083
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2084
                   [param('uint32_t', 'maxSsrc')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2085
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetMaxSlrc(uint32_t maxSlrc) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2086
    cls.add_method('SetMaxSlrc', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2087
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2088
                   [param('uint32_t', 'maxSlrc')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2089
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetRtsCtsThreshold(uint32_t threshold) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2090
    cls.add_method('SetRtsCtsThreshold', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2091
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2092
                   [param('uint32_t', 'threshold')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2093
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::SetFragmentationThreshold(uint32_t threshold) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2094
    cls.add_method('SetFragmentationThreshold', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2095
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2096
                   [param('uint32_t', 'threshold')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2097
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::Reset() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2098
    cls.add_method('Reset', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2099
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2100
                   [])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2101
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::AddBasicMode(ns3::WifiMode mode) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2102
    cls.add_method('AddBasicMode', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2103
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2104
                   [param('ns3::WifiMode', 'mode')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2105
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStationManager::GetDefaultMode() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2106
    cls.add_method('GetDefaultMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2107
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2108
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2109
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2110
    ## wifi-remote-station-manager.h: uint32_t ns3::WifiRemoteStationManager::GetNBasicModes() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2111
    cls.add_method('GetNBasicModes', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2112
                   'uint32_t', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2113
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2114
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2115
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStationManager::GetBasicMode(uint32_t i) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2116
    cls.add_method('GetBasicMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2117
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2118
                   [param('uint32_t', 'i')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2119
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2120
    ## wifi-remote-station-manager.h: __gnu_cxx::__normal_iterator<const ns3::WifiMode*,std::vector<ns3::WifiMode, std::allocator<ns3::WifiMode> > > ns3::WifiRemoteStationManager::BeginBasicModes() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2121
    cls.add_method('BeginBasicModes', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2122
                   '__gnu_cxx::__normal_iterator< ns3::WifiMode const *, std::vector< ns3::WifiMode > >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2123
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2124
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2125
    ## wifi-remote-station-manager.h: __gnu_cxx::__normal_iterator<const ns3::WifiMode*,std::vector<ns3::WifiMode, std::allocator<ns3::WifiMode> > > ns3::WifiRemoteStationManager::EndBasicModes() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2126
    cls.add_method('EndBasicModes', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2127
                   '__gnu_cxx::__normal_iterator< ns3::WifiMode const *, std::vector< ns3::WifiMode > >', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2128
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2129
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2130
    ## wifi-remote-station-manager.h: bool ns3::WifiRemoteStationManager::IsLowLatency() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2131
    cls.add_method('IsLowLatency', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2132
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2133
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2134
                   is_const=True)
4341
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2135
    ## wifi-remote-station-manager.h: ns3::WifiMode ns3::WifiRemoteStationManager::GetNonUnicastMode() const [member function]
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2136
    cls.add_method('GetNonUnicastMode', 
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2137
                   'ns3::WifiMode', 
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2138
                   [], 
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2139
                   is_const=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2140
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStation * ns3::WifiRemoteStationManager::Lookup(ns3::Mac48Address address) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2141
    cls.add_method('Lookup', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2142
                   'ns3::WifiRemoteStation *', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2143
                   [param('ns3::Mac48Address', 'address')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2144
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStation * ns3::WifiRemoteStationManager::LookupNonUnicast() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2145
    cls.add_method('LookupNonUnicast', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2146
                   'ns3::WifiRemoteStation *', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2147
                   [])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2148
    ## wifi-remote-station-manager.h: void ns3::WifiRemoteStationManager::DoDispose() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2149
    cls.add_method('DoDispose', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2150
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2151
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2152
                   visibility='protected', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2153
    ## wifi-remote-station-manager.h: ns3::WifiRemoteStation * ns3::WifiRemoteStationManager::CreateStation() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2154
    cls.add_method('CreateStation', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2155
                   'ns3::WifiRemoteStation *', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2156
                   [], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2157
                   is_pure_virtual=True, visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2158
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2159
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2160
def register_Ns3YansWifiPhy_methods(root_module, cls):
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2161
    ## yans-wifi-phy.h: static ns3::TypeId ns3::YansWifiPhy::GetTypeId() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2162
    cls.add_method('GetTypeId', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2163
                   'ns3::TypeId', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2164
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2165
                   is_static=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2166
    ## yans-wifi-phy.h: ns3::YansWifiPhy::YansWifiPhy() [constructor]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2167
    cls.add_constructor([])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2168
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetChannel(ns3::Ptr<ns3::YansWifiChannel> channel) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2169
    cls.add_method('SetChannel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2170
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2171
                   [param('ns3::Ptr< ns3::YansWifiChannel >', 'channel')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2172
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::StartReceivePacket(ns3::Ptr<ns3::Packet> packet, double rxPowerDbm, ns3::WifiMode mode, ns3::WifiPreamble preamble) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2173
    cls.add_method('StartReceivePacket', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2174
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2175
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('double', 'rxPowerDbm'), param('ns3::WifiMode', 'mode'), param('ns3::WifiPreamble', 'preamble')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2176
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetStandard(ns3::WifiPhyStandard standard) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2177
    cls.add_method('SetStandard', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2178
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2179
                   [param('ns3::WifiPhyStandard', 'standard')])
4316
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
  2180
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetRxNoiseFigure(double noiseFigureDb) [member function]
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
  2181
    cls.add_method('SetRxNoiseFigure', 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2182
                   'void', 
4316
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
  2183
                   [param('double', 'noiseFigureDb')])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2184
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetTxPowerStart(double start) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2185
    cls.add_method('SetTxPowerStart', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2186
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2187
                   [param('double', 'start')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2188
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetTxPowerEnd(double end) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2189
    cls.add_method('SetTxPowerEnd', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2190
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2191
                   [param('double', 'end')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2192
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetNTxPower(uint32_t n) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2193
    cls.add_method('SetNTxPower', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2194
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2195
                   [param('uint32_t', 'n')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2196
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetTxGain(double gain) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2197
    cls.add_method('SetTxGain', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2198
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2199
                   [param('double', 'gain')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2200
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetRxGain(double gain) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2201
    cls.add_method('SetRxGain', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2202
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2203
                   [param('double', 'gain')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2204
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetEdThreshold(double threshold) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2205
    cls.add_method('SetEdThreshold', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2206
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2207
                   [param('double', 'threshold')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2208
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetCcaMode1Threshold(double threshold) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2209
    cls.add_method('SetCcaMode1Threshold', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2210
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2211
                   [param('double', 'threshold')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2212
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetErrorRateModel(ns3::Ptr<ns3::ErrorRateModel> rate) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2213
    cls.add_method('SetErrorRateModel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2214
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2215
                   [param('ns3::Ptr< ns3::ErrorRateModel >', 'rate')])
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2216
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetDevice(ns3::Ptr<ns3::Object> device) [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2217
    cls.add_method('SetDevice', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2218
                   'void', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2219
                   [param('ns3::Ptr< ns3::Object >', 'device')])
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2220
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetMobility(ns3::Ptr<ns3::Object> mobility) [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2221
    cls.add_method('SetMobility', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2222
                   'void', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2223
                   [param('ns3::Ptr< ns3::Object >', 'mobility')])
4316
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
  2224
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::GetRxNoiseFigure() const [member function]
6fb63a0725a8 scan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4279
diff changeset
  2225
    cls.add_method('GetRxNoiseFigure', 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2226
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2227
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2228
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2229
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::GetTxGain() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2230
    cls.add_method('GetTxGain', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2231
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2232
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2233
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2234
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::GetRxGain() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2235
    cls.add_method('GetRxGain', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2236
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2237
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2238
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2239
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::GetEdThreshold() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2240
    cls.add_method('GetEdThreshold', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2241
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2242
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2243
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2244
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::GetCcaMode1Threshold() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2245
    cls.add_method('GetCcaMode1Threshold', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2246
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2247
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2248
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2249
    ## yans-wifi-phy.h: ns3::Ptr<ns3::ErrorRateModel> ns3::YansWifiPhy::GetErrorRateModel() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2250
    cls.add_method('GetErrorRateModel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2251
                   'ns3::Ptr< ns3::ErrorRateModel >', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2252
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2253
                   is_const=True)
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2254
    ## yans-wifi-phy.h: ns3::Ptr<ns3::Object> ns3::YansWifiPhy::GetDevice() const [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2255
    cls.add_method('GetDevice', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2256
                   'ns3::Ptr< ns3::Object >', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2257
                   [], 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2258
                   is_const=True)
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2259
    ## yans-wifi-phy.h: ns3::Ptr<ns3::Object> ns3::YansWifiPhy::GetMobility() [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2260
    cls.add_method('GetMobility', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2261
                   'ns3::Ptr< ns3::Object >', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2262
                   [])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2263
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::GetTxPowerStart() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2264
    cls.add_method('GetTxPowerStart', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2265
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2266
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2267
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2268
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::GetTxPowerEnd() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2269
    cls.add_method('GetTxPowerEnd', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2270
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2271
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2272
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2273
    ## yans-wifi-phy.h: uint32_t ns3::YansWifiPhy::GetNTxPower() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2274
    cls.add_method('GetNTxPower', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2275
                   'uint32_t', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2276
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2277
                   is_const=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2278
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetReceiveOkCallback(ns3::Callback<void,ns3::Ptr<ns3::Packet>,double,ns3::WifiMode,ns3::WifiPreamble,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2279
    cls.add_method('SetReceiveOkCallback', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2280
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2281
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, double, ns3::WifiMode, ns3::WifiPreamble, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2282
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2283
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SetReceiveErrorCallback(ns3::Callback<void,ns3::Ptr<const ns3::Packet>,double,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2284
    cls.add_method('SetReceiveErrorCallback', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2285
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2286
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, double, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2287
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2288
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::SendPacket(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMode mode, ns3::WifiPreamble preamble, uint8_t txPowerLevel) [member function]
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2289
    cls.add_method('SendPacket', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2290
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2291
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMode', 'mode'), param('ns3::WifiPreamble', 'preamble'), param('uint8_t', 'txPowerLevel')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2292
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2293
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::RegisterListener(ns3::WifiPhyListener * listener) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2294
    cls.add_method('RegisterListener', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2295
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2296
                   [param('ns3::WifiPhyListener *', 'listener')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2297
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2298
    ## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateCcaBusy() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2299
    cls.add_method('IsStateCcaBusy', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2300
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2301
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2302
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2303
    ## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateIdle() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2304
    cls.add_method('IsStateIdle', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2305
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2306
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2307
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2308
    ## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateBusy() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2309
    cls.add_method('IsStateBusy', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2310
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2311
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2312
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2313
    ## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateSync() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2314
    cls.add_method('IsStateSync', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2315
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2316
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2317
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2318
    ## yans-wifi-phy.h: bool ns3::YansWifiPhy::IsStateTx() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2319
    cls.add_method('IsStateTx', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2320
                   'bool', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2321
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2322
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2323
    ## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::GetStateDuration() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2324
    cls.add_method('GetStateDuration', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2325
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2326
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2327
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2328
    ## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::GetDelayUntilIdle() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2329
    cls.add_method('GetDelayUntilIdle', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2330
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2331
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2332
                   is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2333
    ## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::GetLastRxStartTime() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2334
    cls.add_method('GetLastRxStartTime', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2335
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2336
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2337
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2338
    ## yans-wifi-phy.h: ns3::Time ns3::YansWifiPhy::CalculateTxDuration(uint32_t size, ns3::WifiMode payloadMode, ns3::WifiPreamble preamble) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2339
    cls.add_method('CalculateTxDuration', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2340
                   'ns3::Time', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2341
                   [param('uint32_t', 'size'), param('ns3::WifiMode', 'payloadMode'), param('ns3::WifiPreamble', 'preamble')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2342
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2343
    ## yans-wifi-phy.h: uint32_t ns3::YansWifiPhy::GetNModes() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2344
    cls.add_method('GetNModes', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2345
                   'uint32_t', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2346
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2347
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2348
    ## yans-wifi-phy.h: ns3::WifiMode ns3::YansWifiPhy::GetMode(uint32_t mode) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2349
    cls.add_method('GetMode', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2350
                   'ns3::WifiMode', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2351
                   [param('uint32_t', 'mode')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2352
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2353
    ## yans-wifi-phy.h: double ns3::YansWifiPhy::CalculateSnr(ns3::WifiMode txMode, double ber) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2354
    cls.add_method('CalculateSnr', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2355
                   'double', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2356
                   [param('ns3::WifiMode', 'txMode'), param('double', 'ber')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2357
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2358
    ## yans-wifi-phy.h: ns3::Ptr<ns3::WifiChannel> ns3::YansWifiPhy::GetChannel() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2359
    cls.add_method('GetChannel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2360
                   'ns3::Ptr< ns3::WifiChannel >', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2361
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2362
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2363
    ## yans-wifi-phy.h: void ns3::YansWifiPhy::DoDispose() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2364
    cls.add_method('DoDispose', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2365
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2366
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2367
                   visibility='private', is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2368
    return
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  2369
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2370
def register_Ns3AarfWifiRemoteStation_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2371
    ## aarf-wifi-manager.h: ns3::AarfWifiRemoteStation::AarfWifiRemoteStation(ns3::AarfWifiRemoteStation const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2372
    cls.add_constructor([param('ns3::AarfWifiRemoteStation const &', 'arg0')])
4341
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2373
    ## aarf-wifi-manager.h: ns3::AarfWifiRemoteStation::AarfWifiRemoteStation(ns3::Ptr<ns3::AarfWifiManager> stations) [constructor]
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2374
    cls.add_constructor([param('ns3::Ptr< ns3::AarfWifiManager >', 'stations')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2375
    ## aarf-wifi-manager.h: void ns3::AarfWifiRemoteStation::ReportRecoveryFailure() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2376
    cls.add_method('ReportRecoveryFailure', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2377
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2378
                   [], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2379
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2380
    ## aarf-wifi-manager.h: void ns3::AarfWifiRemoteStation::ReportFailure() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2381
    cls.add_method('ReportFailure', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2382
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2383
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2384
                   visibility='private', is_virtual=True)
4341
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2385
    ## aarf-wifi-manager.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::AarfWifiRemoteStation::GetManager() const [member function]
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2386
    cls.add_method('GetManager', 
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2387
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2388
                   [], 
4593d476d627 rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4323
diff changeset
  2389
                   is_const=True, visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2390
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2391
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2392
def register_Ns3AdhocWifiMac_methods(root_module, cls):
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2393
    ## adhoc-wifi-mac.h: static ns3::TypeId ns3::AdhocWifiMac::GetTypeId() [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2394
    cls.add_method('GetTypeId', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2395
                   'ns3::TypeId', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2396
                   [], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2397
                   is_static=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2398
    ## adhoc-wifi-mac.h: ns3::AdhocWifiMac::AdhocWifiMac() [constructor]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2399
    cls.add_constructor([])
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2400
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetSlot(ns3::Time slotTime) [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2401
    cls.add_method('SetSlot', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2402
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2403
                   [param('ns3::Time', 'slotTime')], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2404
                   is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2405
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetSifs(ns3::Time sifs) [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2406
    cls.add_method('SetSifs', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2407
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2408
                   [param('ns3::Time', 'sifs')], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2409
                   is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2410
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2411
    cls.add_method('SetEifsNoDifs', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2412
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2413
                   [param('ns3::Time', 'eifsNoDifs')], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2414
                   is_virtual=True)
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2415
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function]
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2416
    cls.add_method('SetAckTimeout', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2417
                   'void', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2418
                   [param('ns3::Time', 'ackTimeout')], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2419
                   is_virtual=True)
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2420
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function]
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2421
    cls.add_method('SetCtsTimeout', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2422
                   'void', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2423
                   [param('ns3::Time', 'ctsTimeout')], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2424
                   is_virtual=True)
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2425
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetPifs(ns3::Time pifs) [member function]
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2426
    cls.add_method('SetPifs', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2427
                   'void', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2428
                   [param('ns3::Time', 'pifs')], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2429
                   is_virtual=True)
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2430
    ## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetSlot() const [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2431
    cls.add_method('GetSlot', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2432
                   'ns3::Time', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2433
                   [], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2434
                   is_const=True, is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2435
    ## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetSifs() const [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2436
    cls.add_method('GetSifs', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2437
                   'ns3::Time', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2438
                   [], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2439
                   is_const=True, is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2440
    ## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetEifsNoDifs() const [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2441
    cls.add_method('GetEifsNoDifs', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2442
                   'ns3::Time', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2443
                   [], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2444
                   is_const=True, is_virtual=True)
3600
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2445
    ## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetAckTimeout() const [member function]
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2446
    cls.add_method('GetAckTimeout', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2447
                   'ns3::Time', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2448
                   [], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2449
                   is_const=True, is_virtual=True)
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2450
    ## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetCtsTimeout() const [member function]
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2451
    cls.add_method('GetCtsTimeout', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2452
                   'ns3::Time', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2453
                   [], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2454
                   is_const=True, is_virtual=True)
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2455
    ## adhoc-wifi-mac.h: ns3::Time ns3::AdhocWifiMac::GetPifs() const [member function]
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2456
    cls.add_method('GetPifs', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2457
                   'ns3::Time', 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2458
                   [], 
5888dfe3f245 move GetBssid down to MacLow
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3584
diff changeset
  2459
                   is_const=True, is_virtual=True)
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2460
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2461
    cls.add_method('SetWifiPhy', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2462
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2463
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2464
                   is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2465
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2466
    cls.add_method('SetWifiRemoteStationManager', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2467
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2468
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2469
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2470
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2471
    cls.add_method('Enqueue', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2472
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2473
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], 
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2474
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2475
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
3604
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2476
    cls.add_method('Enqueue', 
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2477
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2478
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], 
3604
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2479
                   is_virtual=True)
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2480
    ## adhoc-wifi-mac.h: bool ns3::AdhocWifiMac::SupportsSendFrom() const [member function]
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2481
    cls.add_method('SupportsSendFrom', 
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2482
                   'bool', 
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2483
                   [], 
a84d99890289 implement promisc mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3600
diff changeset
  2484
                   is_const=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2485
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function]
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2486
    cls.add_method('SetForwardUpCallback', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2487
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2488
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], 
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2489
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2490
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2491
    cls.add_method('SetLinkUpCallback', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2492
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2493
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], 
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2494
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2495
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function]
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2496
    cls.add_method('SetLinkDownCallback', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2497
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  2498
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], 
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2499
                   is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2500
    ## adhoc-wifi-mac.h: ns3::Mac48Address ns3::AdhocWifiMac::GetAddress() const [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2501
    cls.add_method('GetAddress', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2502
                   'ns3::Mac48Address', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2503
                   [], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2504
                   is_const=True, is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2505
    ## adhoc-wifi-mac.h: ns3::Ssid ns3::AdhocWifiMac::GetSsid() const [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2506
    cls.add_method('GetSsid', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2507
                   'ns3::Ssid', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2508
                   [], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2509
                   is_const=True, is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2510
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetAddress(ns3::Mac48Address address) [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2511
    cls.add_method('SetAddress', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2512
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2513
                   [param('ns3::Mac48Address', 'address')], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2514
                   is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2515
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::SetSsid(ns3::Ssid ssid) [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2516
    cls.add_method('SetSsid', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2517
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2518
                   [param('ns3::Ssid', 'ssid')], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2519
                   is_virtual=True)
3743
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  2520
    ## adhoc-wifi-mac.h: ns3::Mac48Address ns3::AdhocWifiMac::GetBssid() const [member function]
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  2521
    cls.add_method('GetBssid', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  2522
                   'ns3::Mac48Address', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  2523
                   [], 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  2524
                   is_const=True, is_virtual=True)
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2525
    ## adhoc-wifi-mac.h: void ns3::AdhocWifiMac::DoDispose() [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2526
    cls.add_method('DoDispose', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2527
                   'void', 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2528
                   [], 
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2529
                   visibility='private', is_virtual=True)
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2530
    return
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  2531
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2532
def register_Ns3AmrrWifiManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2533
    ## amrr-wifi-manager.h: ns3::AmrrWifiManager::AmrrWifiManager(ns3::AmrrWifiManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2534
    cls.add_constructor([param('ns3::AmrrWifiManager const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2535
    ## amrr-wifi-manager.h: static ns3::TypeId ns3::AmrrWifiManager::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2536
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2537
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2538
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2539
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2540
    ## amrr-wifi-manager.h: ns3::AmrrWifiManager::AmrrWifiManager() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2541
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2542
    ## amrr-wifi-manager.h: ns3::WifiRemoteStation * ns3::AmrrWifiManager::CreateStation() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2543
    cls.add_method('CreateStation', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2544
                   'ns3::WifiRemoteStation *', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2545
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2546
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2547
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2548
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2549
def register_Ns3AmsduSubframeHeader_methods(root_module, cls):
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2550
    ## amsdu-subframe-header.h: ns3::AmsduSubframeHeader::AmsduSubframeHeader(ns3::AmsduSubframeHeader const & arg0) [copy constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2551
    cls.add_constructor([param('ns3::AmsduSubframeHeader const &', 'arg0')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2552
    ## amsdu-subframe-header.h: ns3::AmsduSubframeHeader::AmsduSubframeHeader() [constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2553
    cls.add_constructor([])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2554
    ## amsdu-subframe-header.h: static ns3::TypeId ns3::AmsduSubframeHeader::GetTypeId() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2555
    cls.add_method('GetTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2556
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2557
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2558
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2559
    ## amsdu-subframe-header.h: ns3::TypeId ns3::AmsduSubframeHeader::GetInstanceTypeId() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2560
    cls.add_method('GetInstanceTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2561
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2562
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2563
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2564
    ## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::Print(std::ostream & os) const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2565
    cls.add_method('Print', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2566
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2567
                   [param('std::ostream &', 'os')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2568
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2569
    ## amsdu-subframe-header.h: uint32_t ns3::AmsduSubframeHeader::GetSerializedSize() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2570
    cls.add_method('GetSerializedSize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2571
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2572
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2573
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2574
    ## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2575
    cls.add_method('Serialize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2576
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2577
                   [param('ns3::Buffer::Iterator', 'start')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2578
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2579
    ## amsdu-subframe-header.h: uint32_t ns3::AmsduSubframeHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2580
    cls.add_method('Deserialize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2581
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2582
                   [param('ns3::Buffer::Iterator', 'start')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2583
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2584
    ## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::SetDestinationAddr(ns3::Mac48Address to) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2585
    cls.add_method('SetDestinationAddr', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2586
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2587
                   [param('ns3::Mac48Address', 'to')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2588
    ## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::SetSourceAddr(ns3::Mac48Address to) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2589
    cls.add_method('SetSourceAddr', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2590
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2591
                   [param('ns3::Mac48Address', 'to')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2592
    ## amsdu-subframe-header.h: void ns3::AmsduSubframeHeader::SetLength(uint16_t arg0) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2593
    cls.add_method('SetLength', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2594
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2595
                   [param('uint16_t', 'arg0')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2596
    ## amsdu-subframe-header.h: ns3::Mac48Address ns3::AmsduSubframeHeader::GetDestinationAddr() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2597
    cls.add_method('GetDestinationAddr', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2598
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2599
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2600
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2601
    ## amsdu-subframe-header.h: ns3::Mac48Address ns3::AmsduSubframeHeader::GetSourceAddr() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2602
    cls.add_method('GetSourceAddr', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2603
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2604
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2605
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2606
    ## amsdu-subframe-header.h: uint16_t ns3::AmsduSubframeHeader::GetLength() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2607
    cls.add_method('GetLength', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2608
                   'uint16_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2609
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2610
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2611
    return
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2612
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2613
def register_Ns3ArfWifiManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2614
    ## arf-wifi-manager.h: ns3::ArfWifiManager::ArfWifiManager(ns3::ArfWifiManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2615
    cls.add_constructor([param('ns3::ArfWifiManager const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2616
    ## arf-wifi-manager.h: static ns3::TypeId ns3::ArfWifiManager::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2617
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2618
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2619
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2620
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2621
    ## arf-wifi-manager.h: ns3::ArfWifiManager::ArfWifiManager() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2622
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2623
    ## arf-wifi-manager.h: ns3::WifiRemoteStation * ns3::ArfWifiManager::CreateStation() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2624
    cls.add_method('CreateStation', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2625
                   'ns3::WifiRemoteStation *', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2626
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2627
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2628
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2629
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2630
def register_Ns3ConstantRateWifiManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2631
    ## constant-rate-wifi-manager.h: ns3::ConstantRateWifiManager::ConstantRateWifiManager(ns3::ConstantRateWifiManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2632
    cls.add_constructor([param('ns3::ConstantRateWifiManager const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2633
    ## constant-rate-wifi-manager.h: static ns3::TypeId ns3::ConstantRateWifiManager::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2634
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2635
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2636
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2637
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2638
    ## constant-rate-wifi-manager.h: ns3::ConstantRateWifiManager::ConstantRateWifiManager() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2639
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2640
    ## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiManager::GetDataMode() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2641
    cls.add_method('GetDataMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2642
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2643
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2644
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2645
    ## constant-rate-wifi-manager.h: ns3::WifiMode ns3::ConstantRateWifiManager::GetCtlMode() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2646
    cls.add_method('GetCtlMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2647
                   'ns3::WifiMode', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2648
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2649
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2650
    ## constant-rate-wifi-manager.h: ns3::WifiRemoteStation * ns3::ConstantRateWifiManager::CreateStation() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2651
    cls.add_method('CreateStation', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2652
                   'ns3::WifiRemoteStation *', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2653
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2654
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2655
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2656
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2657
def register_Ns3ConstantSpeedPropagationDelayModel_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2658
    ## propagation-delay-model.h: ns3::ConstantSpeedPropagationDelayModel::ConstantSpeedPropagationDelayModel(ns3::ConstantSpeedPropagationDelayModel const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2659
    cls.add_constructor([param('ns3::ConstantSpeedPropagationDelayModel const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2660
    ## propagation-delay-model.h: static ns3::TypeId ns3::ConstantSpeedPropagationDelayModel::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2661
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2662
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2663
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2664
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2665
    ## propagation-delay-model.h: ns3::ConstantSpeedPropagationDelayModel::ConstantSpeedPropagationDelayModel() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2666
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2667
    ## propagation-delay-model.h: ns3::Time ns3::ConstantSpeedPropagationDelayModel::GetDelay(ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2668
    cls.add_method('GetDelay', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2669
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2670
                   [param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2671
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2672
    ## propagation-delay-model.h: void ns3::ConstantSpeedPropagationDelayModel::SetSpeed(double speed) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2673
    cls.add_method('SetSpeed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2674
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2675
                   [param('double', 'speed')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2676
    ## propagation-delay-model.h: double ns3::ConstantSpeedPropagationDelayModel::GetSpeed() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2677
    cls.add_method('GetSpeed', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2678
                   'double', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2679
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2680
                   is_const=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2681
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  2682
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2683
def register_Ns3DcaTxop_methods(root_module, cls):
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2684
    ## dca-txop.h: static ns3::TypeId ns3::DcaTxop::GetTypeId() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2685
    cls.add_method('GetTypeId', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2686
                   'ns3::TypeId', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2687
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2688
                   is_static=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2689
    ## dca-txop.h: ns3::DcaTxop::DcaTxop() [constructor]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2690
    cls.add_constructor([])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2691
    ## dca-txop.h: void ns3::DcaTxop::SetLow(ns3::Ptr<ns3::MacLow> low) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2692
    cls.add_method('SetLow', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2693
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2694
                   [param('ns3::Ptr< ns3::MacLow >', 'low')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2695
    ## dca-txop.h: void ns3::DcaTxop::SetManager(ns3::DcfManager * manager) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2696
    cls.add_method('SetManager', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2697
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2698
                   [param('ns3::DcfManager *', 'manager')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2699
    ## dca-txop.h: void ns3::DcaTxop::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> remoteManager) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2700
    cls.add_method('SetWifiRemoteStationManager', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2701
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2702
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'remoteManager')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2703
    ## dca-txop.h: void ns3::DcaTxop::SetTxOkCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2704
    cls.add_method('SetTxOkCallback', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2705
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2706
                   [param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2707
    ## dca-txop.h: void ns3::DcaTxop::SetTxFailedCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2708
    cls.add_method('SetTxFailedCallback', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2709
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2710
                   [param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2711
    ## dca-txop.h: void ns3::DcaTxop::SetMaxQueueSize(uint32_t size) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2712
    cls.add_method('SetMaxQueueSize', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2713
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2714
                   [param('uint32_t', 'size')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2715
    ## dca-txop.h: void ns3::DcaTxop::SetMaxQueueDelay(ns3::Time delay) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2716
    cls.add_method('SetMaxQueueDelay', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2717
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2718
                   [param('ns3::Time', 'delay')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2719
    ## dca-txop.h: void ns3::DcaTxop::SetMinCw(uint32_t minCw) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2720
    cls.add_method('SetMinCw', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2721
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2722
                   [param('uint32_t', 'minCw')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2723
    ## dca-txop.h: void ns3::DcaTxop::SetMaxCw(uint32_t maxCw) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2724
    cls.add_method('SetMaxCw', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2725
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2726
                   [param('uint32_t', 'maxCw')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2727
    ## dca-txop.h: void ns3::DcaTxop::SetAifsn(uint32_t aifsn) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2728
    cls.add_method('SetAifsn', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2729
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2730
                   [param('uint32_t', 'aifsn')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2731
    ## dca-txop.h: uint32_t ns3::DcaTxop::GetMinCw() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2732
    cls.add_method('GetMinCw', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2733
                   'uint32_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2734
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2735
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2736
    ## dca-txop.h: uint32_t ns3::DcaTxop::GetMaxCw() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2737
    cls.add_method('GetMaxCw', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2738
                   'uint32_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2739
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2740
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2741
    ## dca-txop.h: uint32_t ns3::DcaTxop::GetAifsn() const [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2742
    cls.add_method('GetAifsn', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2743
                   'uint32_t', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2744
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2745
                   is_const=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2746
    ## dca-txop.h: void ns3::DcaTxop::Queue(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMacHeader const & hdr) [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2747
    cls.add_method('Queue', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2748
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2749
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMacHeader const &', 'hdr')])
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2750
    ## dca-txop.h: void ns3::DcaTxop::DoDispose() [member function]
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2751
    cls.add_method('DoDispose', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2752
                   'void', 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2753
                   [], 
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2754
                   visibility='private', is_virtual=True)
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2755
    return
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  2756
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2757
def register_Ns3EdcaTxopN_methods(root_module, cls):
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2758
    ## edca-txop-n.h: static ns3::TypeId ns3::EdcaTxopN::GetTypeId() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2759
    cls.add_method('GetTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2760
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2761
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2762
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2763
    ## edca-txop-n.h: ns3::EdcaTxopN::EdcaTxopN() [constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2764
    cls.add_constructor([])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2765
    ## edca-txop-n.h: void ns3::EdcaTxopN::DoDispose() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2766
    cls.add_method('DoDispose', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2767
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2768
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2769
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2770
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetLow(ns3::Ptr<ns3::MacLow> low) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2771
    cls.add_method('SetLow', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2772
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2773
                   [param('ns3::Ptr< ns3::MacLow >', 'low')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2774
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetTxMiddle(ns3::MacTxMiddle * txMiddle) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2775
    cls.add_method('SetTxMiddle', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2776
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2777
                   [param('ns3::MacTxMiddle *', 'txMiddle')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2778
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetManager(ns3::DcfManager * manager) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2779
    cls.add_method('SetManager', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2780
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2781
                   [param('ns3::DcfManager *', 'manager')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2782
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetTxOkCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2783
    cls.add_method('SetTxOkCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2784
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2785
                   [param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2786
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetTxFailedCallback(ns3::Callback<void, ns3::WifiMacHeader const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2787
    cls.add_method('SetTxFailedCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2788
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2789
                   [param('ns3::Callback< void, ns3::WifiMacHeader const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2790
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> remoteManager) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2791
    cls.add_method('SetWifiRemoteStationManager', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2792
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2793
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'remoteManager')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2794
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetTypeOfStation(ns3::TypeOfStation type) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2795
    cls.add_method('SetTypeOfStation', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2796
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2797
                   [param('ns3::TypeOfStation', 'type')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2798
    ## edca-txop-n.h: ns3::TypeOfStation ns3::EdcaTxopN::GetTypeOfStation() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2799
    cls.add_method('GetTypeOfStation', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2800
                   'ns3::TypeOfStation', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2801
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2802
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2803
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetMaxQueueSize(uint32_t size) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2804
    cls.add_method('SetMaxQueueSize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2805
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2806
                   [param('uint32_t', 'size')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2807
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetMaxQueueDelay(ns3::Time delay) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2808
    cls.add_method('SetMaxQueueDelay', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2809
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2810
                   [param('ns3::Time', 'delay')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2811
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetMinCw(uint32_t minCw) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2812
    cls.add_method('SetMinCw', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2813
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2814
                   [param('uint32_t', 'minCw')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2815
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetMaxCw(uint32_t maxCw) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2816
    cls.add_method('SetMaxCw', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2817
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2818
                   [param('uint32_t', 'maxCw')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2819
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetAifsn(uint32_t aifsn) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2820
    cls.add_method('SetAifsn', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2821
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2822
                   [param('uint32_t', 'aifsn')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2823
    ## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetMinCw() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2824
    cls.add_method('GetMinCw', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2825
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2826
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2827
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2828
    ## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetMaxCw() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2829
    cls.add_method('GetMaxCw', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2830
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2831
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2832
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2833
    ## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetAifsn() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2834
    cls.add_method('GetAifsn', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2835
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2836
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2837
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2838
    ## edca-txop-n.h: ns3::Ptr<ns3::MacLow> ns3::EdcaTxopN::Low() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2839
    cls.add_method('Low', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2840
                   'ns3::Ptr< ns3::MacLow >', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2841
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2842
    ## edca-txop-n.h: ns3::Ptr<ns3::MsduAggregator> ns3::EdcaTxopN::GetMsduAggregator() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2843
    cls.add_method('GetMsduAggregator', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2844
                   'ns3::Ptr< ns3::MsduAggregator >', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2845
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2846
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2847
    ## edca-txop-n.h: bool ns3::EdcaTxopN::NeedsAccess() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2848
    cls.add_method('NeedsAccess', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2849
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2850
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2851
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2852
    ## edca-txop-n.h: void ns3::EdcaTxopN::NotifyAccessGranted() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2853
    cls.add_method('NotifyAccessGranted', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2854
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2855
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2856
    ## edca-txop-n.h: void ns3::EdcaTxopN::NotifyInternalCollision() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2857
    cls.add_method('NotifyInternalCollision', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2858
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2859
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2860
    ## edca-txop-n.h: void ns3::EdcaTxopN::NotifyCollision() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2861
    cls.add_method('NotifyCollision', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2862
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2863
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2864
    ## edca-txop-n.h: void ns3::EdcaTxopN::GotCts(double snr, ns3::WifiMode txMode) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2865
    cls.add_method('GotCts', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2866
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2867
                   [param('double', 'snr'), param('ns3::WifiMode', 'txMode')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2868
    ## edca-txop-n.h: void ns3::EdcaTxopN::MissedCts() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2869
    cls.add_method('MissedCts', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2870
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2871
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2872
    ## edca-txop-n.h: void ns3::EdcaTxopN::GotAck(double snr, ns3::WifiMode txMode) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2873
    cls.add_method('GotAck', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2874
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2875
                   [param('double', 'snr'), param('ns3::WifiMode', 'txMode')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2876
    ## edca-txop-n.h: void ns3::EdcaTxopN::MissedAck() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2877
    cls.add_method('MissedAck', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2878
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2879
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2880
    ## edca-txop-n.h: void ns3::EdcaTxopN::StartNext() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2881
    cls.add_method('StartNext', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2882
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2883
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2884
    ## edca-txop-n.h: void ns3::EdcaTxopN::Cancel() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2885
    cls.add_method('Cancel', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2886
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2887
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2888
    ## edca-txop-n.h: void ns3::EdcaTxopN::RestartAccessIfNeeded() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2889
    cls.add_method('RestartAccessIfNeeded', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2890
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2891
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2892
    ## edca-txop-n.h: void ns3::EdcaTxopN::StartAccessIfNeeded() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2893
    cls.add_method('StartAccessIfNeeded', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2894
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2895
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2896
    ## edca-txop-n.h: bool ns3::EdcaTxopN::NeedRts() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2897
    cls.add_method('NeedRts', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2898
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2899
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2900
    ## edca-txop-n.h: bool ns3::EdcaTxopN::NeedRtsRetransmission() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2901
    cls.add_method('NeedRtsRetransmission', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2902
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2903
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2904
    ## edca-txop-n.h: bool ns3::EdcaTxopN::NeedDataRetransmission() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2905
    cls.add_method('NeedDataRetransmission', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2906
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2907
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2908
    ## edca-txop-n.h: bool ns3::EdcaTxopN::NeedFragmentation() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2909
    cls.add_method('NeedFragmentation', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2910
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2911
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2912
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2913
    ## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetNextFragmentSize() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2914
    cls.add_method('GetNextFragmentSize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2915
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2916
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2917
    ## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetFragmentSize() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2918
    cls.add_method('GetFragmentSize', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2919
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2920
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2921
    ## edca-txop-n.h: uint32_t ns3::EdcaTxopN::GetFragmentOffset() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2922
    cls.add_method('GetFragmentOffset', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2923
                   'uint32_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2924
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2925
    ## edca-txop-n.h: ns3::WifiRemoteStation * ns3::EdcaTxopN::GetStation(ns3::Mac48Address to) const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2926
    cls.add_method('GetStation', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2927
                   'ns3::WifiRemoteStation *', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2928
                   [param('ns3::Mac48Address', 'to')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2929
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2930
    ## edca-txop-n.h: bool ns3::EdcaTxopN::IsLastFragment() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2931
    cls.add_method('IsLastFragment', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2932
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2933
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2934
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2935
    ## edca-txop-n.h: void ns3::EdcaTxopN::NextFragment() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2936
    cls.add_method('NextFragment', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2937
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2938
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2939
    ## edca-txop-n.h: ns3::Ptr<ns3::Packet> ns3::EdcaTxopN::GetFragmentPacket(ns3::WifiMacHeader * hdr) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2940
    cls.add_method('GetFragmentPacket', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2941
                   'ns3::Ptr< ns3::Packet >', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2942
                   [param('ns3::WifiMacHeader *', 'hdr')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2943
    ## edca-txop-n.h: void ns3::EdcaTxopN::Queue(ns3::Ptr<ns3::Packet const> packet, ns3::WifiMacHeader const & hdr) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2944
    cls.add_method('Queue', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2945
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2946
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::WifiMacHeader const &', 'hdr')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2947
    ## edca-txop-n.h: void ns3::EdcaTxopN::SetMsduAggregator(ns3::Ptr<ns3::MsduAggregator> aggr) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2948
    cls.add_method('SetMsduAggregator', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2949
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2950
                   [param('ns3::Ptr< ns3::MsduAggregator >', 'aggr')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2951
    return
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  2952
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2953
def register_Ns3ErrorRateModel_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2954
    ## error-rate-model.h: ns3::ErrorRateModel::ErrorRateModel(ns3::ErrorRateModel const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2955
    cls.add_constructor([param('ns3::ErrorRateModel const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2956
    ## error-rate-model.h: ns3::ErrorRateModel::ErrorRateModel() [constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  2957
    cls.add_constructor([])
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2958
    ## error-rate-model.h: static ns3::TypeId ns3::ErrorRateModel::GetTypeId() [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2959
    cls.add_method('GetTypeId', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2960
                   'ns3::TypeId', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2961
                   [], 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2962
                   is_static=True)
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2963
    ## error-rate-model.h: double ns3::ErrorRateModel::CalculateSnr(ns3::WifiMode txMode, double ber) const [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2964
    cls.add_method('CalculateSnr', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2965
                   'double', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2966
                   [param('ns3::WifiMode', 'txMode'), param('double', 'ber')], 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2967
                   is_const=True)
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2968
    ## error-rate-model.h: double ns3::ErrorRateModel::GetChunkSuccessRate(ns3::WifiMode mode, double snr, uint32_t nbits) const [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2969
    cls.add_method('GetChunkSuccessRate', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2970
                   'double', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2971
                   [param('ns3::WifiMode', 'mode'), param('double', 'snr'), param('uint32_t', 'nbits')], 
4038
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  2972
                   is_pure_virtual=True, is_const=True, is_virtual=True)
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2973
    return
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  2974
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2975
def register_Ns3FriisPropagationLossModel_methods(root_module, cls):
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2976
    ## propagation-loss-model.h: static ns3::TypeId ns3::FriisPropagationLossModel::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2977
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2978
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2979
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2980
                   is_static=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2981
    ## propagation-loss-model.h: ns3::FriisPropagationLossModel::FriisPropagationLossModel() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2982
    cls.add_constructor([])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2983
    ## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetLambda(double frequency, double speed) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2984
    cls.add_method('SetLambda', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2985
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2986
                   [param('double', 'frequency'), param('double', 'speed')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2987
    ## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetLambda(double lambda) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2988
    cls.add_method('SetLambda', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2989
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2990
                   [param('double', 'lambda')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2991
    ## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetSystemLoss(double systemLoss) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2992
    cls.add_method('SetSystemLoss', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2993
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2994
                   [param('double', 'systemLoss')])
3414
48d69d8eac38 Rescan API; fix and enable the socket unit test, as it now works.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3408
diff changeset
  2995
    ## propagation-loss-model.h: void ns3::FriisPropagationLossModel::SetMinDistance(double minDistance) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2996
    cls.add_method('SetMinDistance', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2997
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  2998
                   [param('double', 'minDistance')])
3414
48d69d8eac38 Rescan API; fix and enable the socket unit test, as it now works.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3408
diff changeset
  2999
    ## propagation-loss-model.h: double ns3::FriisPropagationLossModel::GetMinDistance() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3000
    cls.add_method('GetMinDistance', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3001
                   'double', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3002
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3003
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3004
    ## propagation-loss-model.h: double ns3::FriisPropagationLossModel::GetLambda() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3005
    cls.add_method('GetLambda', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3006
                   'double', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3007
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3008
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3009
    ## propagation-loss-model.h: double ns3::FriisPropagationLossModel::GetSystemLoss() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3010
    cls.add_method('GetSystemLoss', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3011
                   'double', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3012
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3013
                   is_const=True)
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3014
    ## propagation-loss-model.h: double ns3::FriisPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3015
    cls.add_method('DoCalcRxPower', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3016
                   'double', 
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3017
                   [param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  3018
                   is_const=True, visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3019
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3020
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3021
def register_Ns3IdealWifiManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3022
    ## ideal-wifi-manager.h: ns3::IdealWifiManager::IdealWifiManager(ns3::IdealWifiManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3023
    cls.add_constructor([param('ns3::IdealWifiManager const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3024
    ## ideal-wifi-manager.h: static ns3::TypeId ns3::IdealWifiManager::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3025
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3026
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3027
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3028
                   is_static=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3029
    ## ideal-wifi-manager.h: ns3::IdealWifiManager::IdealWifiManager() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3030
    cls.add_constructor([])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3031
    ## ideal-wifi-manager.h: void ns3::IdealWifiManager::SetupPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3032
    cls.add_method('SetupPhy', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3033
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3034
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3035
                   is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3036
    ## ideal-wifi-manager.h: double ns3::IdealWifiManager::GetSnrThreshold(ns3::WifiMode mode) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3037
    cls.add_method('GetSnrThreshold', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3038
                   'double', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3039
                   [param('ns3::WifiMode', 'mode')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3040
                   is_const=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3041
    ## ideal-wifi-manager.h: void ns3::IdealWifiManager::AddModeSnrThreshold(ns3::WifiMode mode, double ber) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3042
    cls.add_method('AddModeSnrThreshold', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3043
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3044
                   [param('ns3::WifiMode', 'mode'), param('double', 'ber')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3045
    ## ideal-wifi-manager.h: ns3::WifiRemoteStation * ns3::IdealWifiManager::CreateStation() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3046
    cls.add_method('CreateStation', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3047
                   'ns3::WifiRemoteStation *', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3048
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3049
                   visibility='private', is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3050
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3051
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3052
def register_Ns3JakesPropagationLossModel_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3053
    ## jakes-propagation-loss-model.h: static ns3::TypeId ns3::JakesPropagationLossModel::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3054
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3055
                   'ns3::TypeId', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3056
                   [], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3057
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3058
    ## jakes-propagation-loss-model.h: ns3::JakesPropagationLossModel::JakesPropagationLossModel() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3059
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3060
    ## jakes-propagation-loss-model.h: void ns3::JakesPropagationLossModel::SetNRays(uint8_t nRays) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3061
    cls.add_method('SetNRays', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3062
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3063
                   [param('uint8_t', 'nRays')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3064
    ## jakes-propagation-loss-model.h: void ns3::JakesPropagationLossModel::SetNOscillators(uint8_t nOscillators) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3065
    cls.add_method('SetNOscillators', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3066
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3067
                   [param('uint8_t', 'nOscillators')])
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3068
    ## jakes-propagation-loss-model.h: double ns3::JakesPropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3069
    cls.add_method('DoCalcRxPower', 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  3070
                   'double', 
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3071
                   [param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  3072
                   is_const=True, visibility='private', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3073
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3074
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3075
def register_Ns3LogDistancePropagationLossModel_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3076
    ## propagation-loss-model.h: static ns3::TypeId ns3::LogDistancePropagationLossModel::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3077
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3078
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3079
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3080
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3081
    ## propagation-loss-model.h: ns3::LogDistancePropagationLossModel::LogDistancePropagationLossModel() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3082
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3083
    ## propagation-loss-model.h: void ns3::LogDistancePropagationLossModel::SetPathLossExponent(double n) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3084
    cls.add_method('SetPathLossExponent', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3085
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3086
                   [param('double', 'n')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3087
    ## propagation-loss-model.h: double ns3::LogDistancePropagationLossModel::GetPathLossExponent() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3088
    cls.add_method('GetPathLossExponent', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3089
                   'double', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3090
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3091
                   is_const=True)
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  3092
    ## propagation-loss-model.h: void ns3::LogDistancePropagationLossModel::SetReference(double referenceDistance, double referenceLoss) [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  3093
    cls.add_method('SetReference', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3094
                   'void', 
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  3095
                   [param('double', 'referenceDistance'), param('double', 'referenceLoss')])
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3096
    ## propagation-loss-model.h: double ns3::LogDistancePropagationLossModel::DoCalcRxPower(double txPowerDbm, ns3::Ptr<ns3::MobilityModel> a, ns3::Ptr<ns3::MobilityModel> b) const [member function]
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3097
    cls.add_method('DoCalcRxPower', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3098
                   'double', 
4060
200676be351f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4044
diff changeset
  3099
                   [param('double', 'txPowerDbm'), param('ns3::Ptr< ns3::MobilityModel >', 'a'), param('ns3::Ptr< ns3::MobilityModel >', 'b')], 
3907
56e477db65b2 add composite capability to PropagationLossModel base class.
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3906
diff changeset
  3100
                   is_const=True, visibility='private', is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3101
    return
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3102
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3103
def register_Ns3MsduAggregator_methods(root_module, cls):
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3104
    ## msdu-aggregator.h: ns3::MsduAggregator::MsduAggregator(ns3::MsduAggregator const & arg0) [copy constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3105
    cls.add_constructor([param('ns3::MsduAggregator const &', 'arg0')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3106
    ## msdu-aggregator.h: ns3::MsduAggregator::MsduAggregator() [constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3107
    cls.add_constructor([])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3108
    ## msdu-aggregator.h: static ns3::TypeId ns3::MsduAggregator::GetTypeId() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3109
    cls.add_method('GetTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3110
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3111
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3112
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3113
    ## msdu-aggregator.h: bool ns3::MsduAggregator::Aggregate(ns3::Ptr<ns3::Packet const> packet, ns3::Ptr<ns3::Packet> aggregatedPacket, ns3::Mac48Address src, ns3::Mac48Address dest) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3114
    cls.add_method('Aggregate', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3115
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3116
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Ptr< ns3::Packet >', 'aggregatedPacket'), param('ns3::Mac48Address', 'src'), param('ns3::Mac48Address', 'dest')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3117
                   is_pure_virtual=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3118
    ## msdu-aggregator.h: static std::list<std::pair<ns3::Ptr<ns3::Packet>, ns3::AmsduSubframeHeader>, std::allocator<std::pair<ns3::Ptr<ns3::Packet>, ns3::AmsduSubframeHeader> > > ns3::MsduAggregator::Deaggregate(ns3::Ptr<ns3::Packet> aggregatedPacket) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3119
    cls.add_method('Deaggregate', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3120
                   'std::list< std::pair< ns3::Ptr< ns3::Packet >, ns3::AmsduSubframeHeader > >', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3121
                   [param('ns3::Ptr< ns3::Packet >', 'aggregatedPacket')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3122
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3123
    return
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3124
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3125
def register_Ns3NqapWifiMac_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3126
    ## nqap-wifi-mac.h: static ns3::TypeId ns3::NqapWifiMac::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3127
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3128
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3129
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3130
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3131
    ## nqap-wifi-mac.h: ns3::NqapWifiMac::NqapWifiMac() [constructor]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3132
    cls.add_constructor([])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3133
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetSlot(ns3::Time slotTime) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3134
    cls.add_method('SetSlot', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3135
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3136
                   [param('ns3::Time', 'slotTime')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3137
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3138
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetSifs(ns3::Time sifs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3139
    cls.add_method('SetSifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3140
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3141
                   [param('ns3::Time', 'sifs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3142
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3143
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3144
    cls.add_method('SetEifsNoDifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3145
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3146
                   [param('ns3::Time', 'eifsNoDifs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3147
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3148
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3149
    cls.add_method('SetAckTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3150
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3151
                   [param('ns3::Time', 'ackTimeout')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3152
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3153
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3154
    cls.add_method('SetCtsTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3155
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3156
                   [param('ns3::Time', 'ctsTimeout')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3157
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3158
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetPifs(ns3::Time pifs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3159
    cls.add_method('SetPifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3160
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3161
                   [param('ns3::Time', 'pifs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3162
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3163
    ## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetSlot() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3164
    cls.add_method('GetSlot', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3165
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3166
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3167
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3168
    ## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetSifs() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3169
    cls.add_method('GetSifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3170
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3171
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3172
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3173
    ## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetEifsNoDifs() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3174
    cls.add_method('GetEifsNoDifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3175
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3176
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3177
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3178
    ## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetAckTimeout() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3179
    cls.add_method('GetAckTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3180
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3181
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3182
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3183
    ## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetCtsTimeout() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3184
    cls.add_method('GetCtsTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3185
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3186
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3187
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3188
    ## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetPifs() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3189
    cls.add_method('GetPifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3190
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3191
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3192
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3193
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3194
    cls.add_method('SetWifiPhy', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3195
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3196
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3197
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3198
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3199
    cls.add_method('SetWifiRemoteStationManager', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3200
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3201
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3202
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  3203
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3204
    cls.add_method('Enqueue', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3205
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3206
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3207
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  3208
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3209
    cls.add_method('Enqueue', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3210
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3211
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3212
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3213
    ## nqap-wifi-mac.h: bool ns3::NqapWifiMac::SupportsSendFrom() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3214
    cls.add_method('SupportsSendFrom', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3215
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3216
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3217
                   is_const=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3218
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3219
    cls.add_method('SetForwardUpCallback', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3220
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3221
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3222
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3223
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3224
    cls.add_method('SetLinkUpCallback', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3225
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3226
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3227
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3228
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3229
    cls.add_method('SetLinkDownCallback', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3230
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3231
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3232
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3233
    ## nqap-wifi-mac.h: ns3::Mac48Address ns3::NqapWifiMac::GetAddress() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3234
    cls.add_method('GetAddress', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3235
                   'ns3::Mac48Address', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3236
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3237
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3238
    ## nqap-wifi-mac.h: ns3::Ssid ns3::NqapWifiMac::GetSsid() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3239
    cls.add_method('GetSsid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3240
                   'ns3::Ssid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3241
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3242
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3243
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetAddress(ns3::Mac48Address address) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3244
    cls.add_method('SetAddress', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3245
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3246
                   [param('ns3::Mac48Address', 'address')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3247
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3248
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetSsid(ns3::Ssid ssid) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3249
    cls.add_method('SetSsid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3250
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3251
                   [param('ns3::Ssid', 'ssid')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3252
                   is_virtual=True)
3743
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3253
    ## nqap-wifi-mac.h: ns3::Mac48Address ns3::NqapWifiMac::GetBssid() const [member function]
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3254
    cls.add_method('GetBssid', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3255
                   'ns3::Mac48Address', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3256
                   [], 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3257
                   is_const=True, is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3258
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::SetBeaconInterval(ns3::Time interval) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3259
    cls.add_method('SetBeaconInterval', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3260
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3261
                   [param('ns3::Time', 'interval')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3262
    ## nqap-wifi-mac.h: ns3::Time ns3::NqapWifiMac::GetBeaconInterval() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3263
    cls.add_method('GetBeaconInterval', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3264
                   'ns3::Time', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3265
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3266
                   is_const=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3267
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::StartBeaconing() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3268
    cls.add_method('StartBeaconing', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3269
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3270
                   [])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3271
    ## nqap-wifi-mac.h: void ns3::NqapWifiMac::DoDispose() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3272
    cls.add_method('DoDispose', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3273
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3274
                   [], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3275
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3276
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3277
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3278
def register_Ns3NqstaWifiMac_methods(root_module, cls):
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3279
    ## nqsta-wifi-mac.h: static ns3::TypeId ns3::NqstaWifiMac::GetTypeId() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3280
    cls.add_method('GetTypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3281
                   'ns3::TypeId', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3282
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3283
                   is_static=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3284
    ## nqsta-wifi-mac.h: ns3::NqstaWifiMac::NqstaWifiMac() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3285
    cls.add_constructor([])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3286
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetSlot(ns3::Time slotTime) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3287
    cls.add_method('SetSlot', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3288
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3289
                   [param('ns3::Time', 'slotTime')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3290
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3291
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetSifs(ns3::Time sifs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3292
    cls.add_method('SetSifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3293
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3294
                   [param('ns3::Time', 'sifs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3295
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3296
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3297
    cls.add_method('SetEifsNoDifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3298
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3299
                   [param('ns3::Time', 'eifsNoDifs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3300
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3301
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3302
    cls.add_method('SetAckTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3303
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3304
                   [param('ns3::Time', 'ackTimeout')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3305
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3306
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3307
    cls.add_method('SetCtsTimeout', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3308
                   'void', 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3309
                   [param('ns3::Time', 'ctsTimeout')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3310
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3311
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetPifs(ns3::Time pifs) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3312
    cls.add_method('SetPifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3313
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3314
                   [param('ns3::Time', 'pifs')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3315
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3316
    ## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetSlot() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3317
    cls.add_method('GetSlot', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3318
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3319
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3320
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3321
    ## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetSifs() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3322
    cls.add_method('GetSifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3323
                   'ns3::Time', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3324
                   [], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3325
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3326
    ## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetEifsNoDifs() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3327
    cls.add_method('GetEifsNoDifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3328
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3329
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3330
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3331
    ## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetAckTimeout() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3332
    cls.add_method('GetAckTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3333
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3334
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3335
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3336
    ## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetCtsTimeout() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3337
    cls.add_method('GetCtsTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3338
                   'ns3::Time', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3339
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3340
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3341
    ## nqsta-wifi-mac.h: ns3::Time ns3::NqstaWifiMac::GetPifs() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3342
    cls.add_method('GetPifs', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3343
                   'ns3::Time', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3344
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3345
                   is_const=True, is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3346
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3347
    cls.add_method('SetWifiPhy', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3348
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3349
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3350
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3351
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3352
    cls.add_method('SetWifiRemoteStationManager', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3353
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3354
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3355
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  3356
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3357
    cls.add_method('Enqueue', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3358
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3359
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3360
                   is_virtual=True)
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  3361
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3362
    cls.add_method('Enqueue', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3363
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3364
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3365
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3366
    ## nqsta-wifi-mac.h: bool ns3::NqstaWifiMac::SupportsSendFrom() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3367
    cls.add_method('SupportsSendFrom', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3368
                   'bool', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3369
                   [], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3370
                   is_const=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3371
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3372
    cls.add_method('SetForwardUpCallback', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3373
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3374
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3375
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3376
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3377
    cls.add_method('SetLinkUpCallback', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3378
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3379
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], 
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3380
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3381
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function]
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3382
    cls.add_method('SetLinkDownCallback', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3383
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  3384
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3385
                   is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3386
    ## nqsta-wifi-mac.h: ns3::Mac48Address ns3::NqstaWifiMac::GetAddress() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3387
    cls.add_method('GetAddress', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3388
                   'ns3::Mac48Address', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3389
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3390
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3391
    ## nqsta-wifi-mac.h: ns3::Ssid ns3::NqstaWifiMac::GetSsid() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3392
    cls.add_method('GetSsid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3393
                   'ns3::Ssid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3394
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3395
                   is_const=True, is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3396
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetAddress(ns3::Mac48Address address) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3397
    cls.add_method('SetAddress', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3398
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3399
                   [param('ns3::Mac48Address', 'address')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3400
                   is_virtual=True)
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3401
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetSsid(ns3::Ssid ssid) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3402
    cls.add_method('SetSsid', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3403
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3404
                   [param('ns3::Ssid', 'ssid')], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3405
                   is_virtual=True)
3743
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3406
    ## nqsta-wifi-mac.h: ns3::Mac48Address ns3::NqstaWifiMac::GetBssid() const [member function]
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3407
    cls.add_method('GetBssid', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3408
                   'ns3::Mac48Address', 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3409
                   [], 
d0cf214d050c Rescan API for Python.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3731
diff changeset
  3410
                   is_const=True, is_virtual=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3411
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetMaxMissedBeacons(uint32_t missed) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3412
    cls.add_method('SetMaxMissedBeacons', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3413
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3414
                   [param('uint32_t', 'missed')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3415
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetProbeRequestTimeout(ns3::Time timeout) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3416
    cls.add_method('SetProbeRequestTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3417
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3418
                   [param('ns3::Time', 'timeout')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3419
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::SetAssocRequestTimeout(ns3::Time timeout) [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3420
    cls.add_method('SetAssocRequestTimeout', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3421
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3422
                   [param('ns3::Time', 'timeout')])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3423
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::StartActiveAssociation() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3424
    cls.add_method('StartActiveAssociation', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3425
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3426
                   [])
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3427
    ## nqsta-wifi-mac.h: void ns3::NqstaWifiMac::DoDispose() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3428
    cls.add_method('DoDispose', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3429
                   'void', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3430
                   [], 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3431
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3432
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3433
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3434
def register_Ns3OnoeWifiManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3435
    ## onoe-wifi-manager.h: ns3::OnoeWifiManager::OnoeWifiManager(ns3::OnoeWifiManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3436
    cls.add_constructor([param('ns3::OnoeWifiManager const &', 'arg0')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3437
    ## onoe-wifi-manager.h: static ns3::TypeId ns3::OnoeWifiManager::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3438
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3439
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3440
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3441
                   is_static=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3442
    ## onoe-wifi-manager.h: ns3::OnoeWifiManager::OnoeWifiManager() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3443
    cls.add_constructor([])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3444
    ## onoe-wifi-manager.h: ns3::WifiRemoteStation * ns3::OnoeWifiManager::CreateStation() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3445
    cls.add_method('CreateStation', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3446
                   'ns3::WifiRemoteStation *', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3447
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3448
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3449
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3450
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3451
def register_Ns3QadhocWifiMac_methods(root_module, cls):
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3452
    ## qadhoc-wifi-mac.h: static ns3::TypeId ns3::QadhocWifiMac::GetTypeId() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3453
    cls.add_method('GetTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3454
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3455
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3456
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3457
    ## qadhoc-wifi-mac.h: ns3::QadhocWifiMac::QadhocWifiMac() [constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3458
    cls.add_constructor([])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3459
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetSlot(ns3::Time slotTime) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3460
    cls.add_method('SetSlot', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3461
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3462
                   [param('ns3::Time', 'slotTime')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3463
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3464
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetSifs(ns3::Time sifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3465
    cls.add_method('SetSifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3466
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3467
                   [param('ns3::Time', 'sifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3468
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3469
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3470
    cls.add_method('SetEifsNoDifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3471
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3472
                   [param('ns3::Time', 'eifsNoDifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3473
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3474
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3475
    cls.add_method('SetAckTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3476
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3477
                   [param('ns3::Time', 'ackTimeout')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3478
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3479
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3480
    cls.add_method('SetCtsTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3481
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3482
                   [param('ns3::Time', 'ctsTimeout')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3483
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3484
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetPifs(ns3::Time pifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3485
    cls.add_method('SetPifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3486
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3487
                   [param('ns3::Time', 'pifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3488
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3489
    ## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetSlot() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3490
    cls.add_method('GetSlot', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3491
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3492
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3493
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3494
    ## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetSifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3495
    cls.add_method('GetSifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3496
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3497
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3498
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3499
    ## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetEifsNoDifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3500
    cls.add_method('GetEifsNoDifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3501
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3502
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3503
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3504
    ## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetAckTimeout() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3505
    cls.add_method('GetAckTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3506
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3507
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3508
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3509
    ## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetCtsTimeout() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3510
    cls.add_method('GetCtsTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3511
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3512
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3513
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3514
    ## qadhoc-wifi-mac.h: ns3::Time ns3::QadhocWifiMac::GetPifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3515
    cls.add_method('GetPifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3516
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3517
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3518
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3519
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3520
    cls.add_method('SetWifiPhy', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3521
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3522
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3523
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3524
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3525
    cls.add_method('SetWifiRemoteStationManager', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3526
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3527
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3528
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3529
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3530
    cls.add_method('Enqueue', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3531
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3532
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3533
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3534
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3535
    cls.add_method('Enqueue', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3536
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3537
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3538
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3539
    ## qadhoc-wifi-mac.h: bool ns3::QadhocWifiMac::SupportsSendFrom() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3540
    cls.add_method('SupportsSendFrom', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3541
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3542
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3543
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3544
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3545
    cls.add_method('SetForwardUpCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3546
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3547
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3548
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3549
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3550
    cls.add_method('SetLinkUpCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3551
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3552
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3553
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3554
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3555
    cls.add_method('SetLinkDownCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3556
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3557
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3558
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3559
    ## qadhoc-wifi-mac.h: ns3::Mac48Address ns3::QadhocWifiMac::GetAddress() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3560
    cls.add_method('GetAddress', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3561
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3562
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3563
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3564
    ## qadhoc-wifi-mac.h: ns3::Ssid ns3::QadhocWifiMac::GetSsid() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3565
    cls.add_method('GetSsid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3566
                   'ns3::Ssid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3567
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3568
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3569
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetAddress(ns3::Mac48Address address) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3570
    cls.add_method('SetAddress', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3571
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3572
                   [param('ns3::Mac48Address', 'address')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3573
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3574
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::SetSsid(ns3::Ssid ssid) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3575
    cls.add_method('SetSsid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3576
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3577
                   [param('ns3::Ssid', 'ssid')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3578
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3579
    ## qadhoc-wifi-mac.h: ns3::Mac48Address ns3::QadhocWifiMac::GetBssid() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3580
    cls.add_method('GetBssid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3581
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3582
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3583
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3584
    ## qadhoc-wifi-mac.h: void ns3::QadhocWifiMac::DoDispose() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3585
    cls.add_method('DoDispose', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3586
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3587
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3588
                   visibility='private', is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3589
    return
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3590
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3591
def register_Ns3QapWifiMac_methods(root_module, cls):
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3592
    ## qap-wifi-mac.h: static ns3::TypeId ns3::QapWifiMac::GetTypeId() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3593
    cls.add_method('GetTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3594
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3595
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3596
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3597
    ## qap-wifi-mac.h: ns3::QapWifiMac::QapWifiMac() [constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3598
    cls.add_constructor([])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3599
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetSlot(ns3::Time slotTime) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3600
    cls.add_method('SetSlot', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3601
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3602
                   [param('ns3::Time', 'slotTime')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3603
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3604
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetSifs(ns3::Time sifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3605
    cls.add_method('SetSifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3606
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3607
                   [param('ns3::Time', 'sifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3608
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3609
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3610
    cls.add_method('SetEifsNoDifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3611
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3612
                   [param('ns3::Time', 'eifsNoDifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3613
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3614
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3615
    cls.add_method('SetAckTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3616
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3617
                   [param('ns3::Time', 'ackTimeout')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3618
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3619
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3620
    cls.add_method('SetCtsTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3621
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3622
                   [param('ns3::Time', 'ctsTimeout')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3623
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3624
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetPifs(ns3::Time pifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3625
    cls.add_method('SetPifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3626
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3627
                   [param('ns3::Time', 'pifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3628
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3629
    ## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetSlot() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3630
    cls.add_method('GetSlot', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3631
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3632
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3633
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3634
    ## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetSifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3635
    cls.add_method('GetSifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3636
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3637
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3638
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3639
    ## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetEifsNoDifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3640
    cls.add_method('GetEifsNoDifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3641
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3642
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3643
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3644
    ## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetAckTimeout() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3645
    cls.add_method('GetAckTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3646
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3647
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3648
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3649
    ## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetCtsTimeout() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3650
    cls.add_method('GetCtsTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3651
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3652
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3653
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3654
    ## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetPifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3655
    cls.add_method('GetPifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3656
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3657
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3658
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3659
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3660
    cls.add_method('SetWifiPhy', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3661
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3662
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3663
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3664
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3665
    cls.add_method('SetWifiRemoteStationManager', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3666
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3667
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3668
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3669
    ## qap-wifi-mac.h: void ns3::QapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3670
    cls.add_method('Enqueue', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3671
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3672
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3673
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3674
    ## qap-wifi-mac.h: void ns3::QapWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3675
    cls.add_method('Enqueue', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3676
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3677
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3678
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3679
    ## qap-wifi-mac.h: bool ns3::QapWifiMac::SupportsSendFrom() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3680
    cls.add_method('SupportsSendFrom', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3681
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3682
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3683
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3684
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3685
    cls.add_method('SetForwardUpCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3686
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3687
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3688
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3689
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3690
    cls.add_method('SetLinkUpCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3691
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3692
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3693
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3694
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3695
    cls.add_method('SetLinkDownCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3696
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3697
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3698
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3699
    ## qap-wifi-mac.h: ns3::Mac48Address ns3::QapWifiMac::GetAddress() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3700
    cls.add_method('GetAddress', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3701
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3702
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3703
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3704
    ## qap-wifi-mac.h: ns3::Ssid ns3::QapWifiMac::GetSsid() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3705
    cls.add_method('GetSsid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3706
                   'ns3::Ssid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3707
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3708
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3709
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetAddress(ns3::Mac48Address address) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3710
    cls.add_method('SetAddress', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3711
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3712
                   [param('ns3::Mac48Address', 'address')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3713
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3714
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetSsid(ns3::Ssid ssid) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3715
    cls.add_method('SetSsid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3716
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3717
                   [param('ns3::Ssid', 'ssid')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3718
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3719
    ## qap-wifi-mac.h: ns3::Mac48Address ns3::QapWifiMac::GetBssid() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3720
    cls.add_method('GetBssid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3721
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3722
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3723
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3724
    ## qap-wifi-mac.h: void ns3::QapWifiMac::SetBeaconInterval(ns3::Time interval) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3725
    cls.add_method('SetBeaconInterval', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3726
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3727
                   [param('ns3::Time', 'interval')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3728
    ## qap-wifi-mac.h: ns3::Time ns3::QapWifiMac::GetBeaconInterval() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3729
    cls.add_method('GetBeaconInterval', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3730
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3731
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3732
                   is_const=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3733
    ## qap-wifi-mac.h: void ns3::QapWifiMac::StartBeaconing() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3734
    cls.add_method('StartBeaconing', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3735
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3736
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3737
    ## qap-wifi-mac.h: void ns3::QapWifiMac::DoDispose() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3738
    cls.add_method('DoDispose', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3739
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3740
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3741
                   visibility='private', is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3742
    return
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3743
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3744
def register_Ns3QstaWifiMac_methods(root_module, cls):
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3745
    ## qsta-wifi-mac.h: static ns3::TypeId ns3::QstaWifiMac::GetTypeId() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3746
    cls.add_method('GetTypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3747
                   'ns3::TypeId', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3748
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3749
                   is_static=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3750
    ## qsta-wifi-mac.h: ns3::QstaWifiMac::QstaWifiMac() [constructor]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3751
    cls.add_constructor([])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3752
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetSlot(ns3::Time slotTime) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3753
    cls.add_method('SetSlot', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3754
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3755
                   [param('ns3::Time', 'slotTime')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3756
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3757
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetSifs(ns3::Time sifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3758
    cls.add_method('SetSifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3759
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3760
                   [param('ns3::Time', 'sifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3761
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3762
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetEifsNoDifs(ns3::Time eifsNoDifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3763
    cls.add_method('SetEifsNoDifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3764
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3765
                   [param('ns3::Time', 'eifsNoDifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3766
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3767
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetAckTimeout(ns3::Time ackTimeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3768
    cls.add_method('SetAckTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3769
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3770
                   [param('ns3::Time', 'ackTimeout')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3771
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3772
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetCtsTimeout(ns3::Time ctsTimeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3773
    cls.add_method('SetCtsTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3774
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3775
                   [param('ns3::Time', 'ctsTimeout')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3776
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3777
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetPifs(ns3::Time pifs) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3778
    cls.add_method('SetPifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3779
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3780
                   [param('ns3::Time', 'pifs')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3781
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3782
    ## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetSlot() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3783
    cls.add_method('GetSlot', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3784
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3785
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3786
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3787
    ## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetSifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3788
    cls.add_method('GetSifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3789
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3790
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3791
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3792
    ## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetEifsNoDifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3793
    cls.add_method('GetEifsNoDifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3794
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3795
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3796
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3797
    ## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetAckTimeout() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3798
    cls.add_method('GetAckTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3799
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3800
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3801
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3802
    ## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetCtsTimeout() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3803
    cls.add_method('GetCtsTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3804
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3805
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3806
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3807
    ## qsta-wifi-mac.h: ns3::Time ns3::QstaWifiMac::GetPifs() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3808
    cls.add_method('GetPifs', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3809
                   'ns3::Time', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3810
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3811
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3812
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetWifiPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3813
    cls.add_method('SetWifiPhy', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3814
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3815
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3816
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3817
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetWifiRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> stationManager) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3818
    cls.add_method('SetWifiRemoteStationManager', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3819
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3820
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'stationManager')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3821
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3822
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3823
    cls.add_method('Enqueue', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3824
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3825
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3826
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3827
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::Enqueue(ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address to) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3828
    cls.add_method('Enqueue', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3829
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3830
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'to')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3831
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3832
    ## qsta-wifi-mac.h: bool ns3::QstaWifiMac::SupportsSendFrom() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3833
    cls.add_method('SupportsSendFrom', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3834
                   'bool', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3835
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3836
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3837
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetForwardUpCallback(ns3::Callback<void, ns3::Ptr<ns3::Packet>, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> upCallback) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3838
    cls.add_method('SetForwardUpCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3839
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3840
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Mac48Address, ns3::Mac48Address, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'upCallback')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3841
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3842
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetLinkUpCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkUp) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3843
    cls.add_method('SetLinkUpCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3844
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3845
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkUp')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3846
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3847
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetLinkDownCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> linkDown) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3848
    cls.add_method('SetLinkDownCallback', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3849
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3850
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'linkDown')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3851
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3852
    ## qsta-wifi-mac.h: ns3::Mac48Address ns3::QstaWifiMac::GetAddress() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3853
    cls.add_method('GetAddress', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3854
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3855
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3856
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3857
    ## qsta-wifi-mac.h: ns3::Ssid ns3::QstaWifiMac::GetSsid() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3858
    cls.add_method('GetSsid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3859
                   'ns3::Ssid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3860
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3861
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3862
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetAddress(ns3::Mac48Address address) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3863
    cls.add_method('SetAddress', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3864
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3865
                   [param('ns3::Mac48Address', 'address')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3866
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3867
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetSsid(ns3::Ssid ssid) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3868
    cls.add_method('SetSsid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3869
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3870
                   [param('ns3::Ssid', 'ssid')], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3871
                   is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3872
    ## qsta-wifi-mac.h: ns3::Mac48Address ns3::QstaWifiMac::GetBssid() const [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3873
    cls.add_method('GetBssid', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3874
                   'ns3::Mac48Address', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3875
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3876
                   is_const=True, is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3877
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetMaxMissedBeacons(uint32_t missed) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3878
    cls.add_method('SetMaxMissedBeacons', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3879
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3880
                   [param('uint32_t', 'missed')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3881
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetProbeRequestTimeout(ns3::Time timeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3882
    cls.add_method('SetProbeRequestTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3883
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3884
                   [param('ns3::Time', 'timeout')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3885
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::SetAssocRequestTimeout(ns3::Time timeout) [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3886
    cls.add_method('SetAssocRequestTimeout', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3887
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3888
                   [param('ns3::Time', 'timeout')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3889
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::StartActiveAssociation() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3890
    cls.add_method('StartActiveAssociation', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3891
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3892
                   [])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3893
    ## qsta-wifi-mac.h: void ns3::QstaWifiMac::DoDispose() [member function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3894
    cls.add_method('DoDispose', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3895
                   'void', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3896
                   [], 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3897
                   visibility='private', is_virtual=True)
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3898
    return
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  3899
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3900
def register_Ns3RraaWifiManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3901
    ## rraa-wifi-manager.h: ns3::RraaWifiManager::RraaWifiManager(ns3::RraaWifiManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3902
    cls.add_constructor([param('ns3::RraaWifiManager const &', 'arg0')])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3903
    ## rraa-wifi-manager.h: static ns3::TypeId ns3::RraaWifiManager::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3904
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3905
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3906
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3907
                   is_static=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3908
    ## rraa-wifi-manager.h: ns3::RraaWifiManager::RraaWifiManager() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3909
    cls.add_constructor([])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3910
    ## rraa-wifi-manager.h: bool ns3::RraaWifiManager::OnlyBasic() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3911
    cls.add_method('OnlyBasic', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3912
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3913
                   [])
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3914
    ## rraa-wifi-manager.h: ns3::Time ns3::RraaWifiManager::GetTimeout() const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3915
    cls.add_method('GetTimeout', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3916
                   'ns3::Time', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3917
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3918
                   is_const=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3919
    ## rraa-wifi-manager.h: ns3::ThresholdsItem ns3::RraaWifiManager::GetThresholds(ns3::WifiMode mode) const [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3920
    cls.add_method('GetThresholds', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3921
                   'ns3::ThresholdsItem', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3922
                   [param('ns3::WifiMode', 'mode')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3923
                   is_const=True)
3731
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3924
    ## rraa-wifi-manager.h: ns3::WifiRemoteStation * ns3::RraaWifiManager::CreateStation() [member function]
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3925
    cls.add_method('CreateStation', 
317f9dbccc2b New pybindgen and new API scanning, brings support for comparison operators and + - * / numeric operators.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3610
diff changeset
  3926
                   'ns3::WifiRemoteStation *', 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3927
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3928
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3929
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3930
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3931
def register_Ns3WifiChannel_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3932
    ## wifi-channel.h: ns3::WifiChannel::WifiChannel(ns3::WifiChannel const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3933
    cls.add_constructor([param('ns3::WifiChannel const &', 'arg0')])
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3934
    ## wifi-channel.h: ns3::WifiChannel::WifiChannel() [constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3935
    cls.add_constructor([])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3936
    ## wifi-channel.h: static ns3::TypeId ns3::WifiChannel::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3937
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3938
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3939
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3940
                   is_static=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3941
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3942
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3943
def register_Ns3WifiNetDevice_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3944
    ## wifi-net-device.h: ns3::WifiNetDevice::WifiNetDevice(ns3::WifiNetDevice const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  3945
    cls.add_constructor([param('ns3::WifiNetDevice const &', 'arg0')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3946
    ## wifi-net-device.h: static ns3::TypeId ns3::WifiNetDevice::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3947
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3948
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3949
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3950
                   is_static=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3951
    ## wifi-net-device.h: ns3::WifiNetDevice::WifiNetDevice() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3952
    cls.add_constructor([])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3953
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetMac(ns3::Ptr<ns3::WifiMac> mac) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3954
    cls.add_method('SetMac', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3955
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3956
                   [param('ns3::Ptr< ns3::WifiMac >', 'mac')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3957
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetPhy(ns3::Ptr<ns3::WifiPhy> phy) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3958
    cls.add_method('SetPhy', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3959
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3960
                   [param('ns3::Ptr< ns3::WifiPhy >', 'phy')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3961
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetRemoteStationManager(ns3::Ptr<ns3::WifiRemoteStationManager> manager) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3962
    cls.add_method('SetRemoteStationManager', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3963
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3964
                   [param('ns3::Ptr< ns3::WifiRemoteStationManager >', 'manager')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3965
    ## wifi-net-device.h: ns3::Ptr<ns3::WifiMac> ns3::WifiNetDevice::GetMac() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3966
    cls.add_method('GetMac', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3967
                   'ns3::Ptr< ns3::WifiMac >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3968
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3969
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
    ## wifi-net-device.h: ns3::Ptr<ns3::WifiPhy> ns3::WifiNetDevice::GetPhy() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3971
    cls.add_method('GetPhy', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3972
                   'ns3::Ptr< ns3::WifiPhy >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3973
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3974
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3975
    ## wifi-net-device.h: ns3::Ptr<ns3::WifiRemoteStationManager> ns3::WifiNetDevice::GetRemoteStationManager() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3976
    cls.add_method('GetRemoteStationManager', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3977
                   'ns3::Ptr< ns3::WifiRemoteStationManager >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3978
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3979
                   is_const=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3980
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetIfIndex(uint32_t const index) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3981
    cls.add_method('SetIfIndex', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3982
                   'void', 
3574
b6804efbe16b New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3567
diff changeset
  3983
                   [param('uint32_t const', 'index')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3984
                   is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3985
    ## wifi-net-device.h: uint32_t ns3::WifiNetDevice::GetIfIndex() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3986
    cls.add_method('GetIfIndex', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3987
                   'uint32_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3988
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3989
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3990
    ## wifi-net-device.h: ns3::Ptr<ns3::Channel> ns3::WifiNetDevice::GetChannel() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3991
    cls.add_method('GetChannel', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3992
                   'ns3::Ptr< ns3::Channel >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3993
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3994
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3995
    ## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetAddress() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3996
    cls.add_method('GetAddress', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3997
                   'ns3::Address', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3998
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  3999
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4000
    ## wifi-net-device.h: bool ns3::WifiNetDevice::SetMtu(uint16_t const mtu) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4001
    cls.add_method('SetMtu', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4002
                   'bool', 
3574
b6804efbe16b New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3567
diff changeset
  4003
                   [param('uint16_t const', 'mtu')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4004
                   is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4005
    ## wifi-net-device.h: uint16_t ns3::WifiNetDevice::GetMtu() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4006
    cls.add_method('GetMtu', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4007
                   'uint16_t', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4008
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4009
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4010
    ## wifi-net-device.h: bool ns3::WifiNetDevice::IsLinkUp() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4011
    cls.add_method('IsLinkUp', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4012
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4013
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4014
                   is_const=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  4015
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetLinkChangeCallback(ns3::Callback<void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> callback) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4016
    cls.add_method('SetLinkChangeCallback', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4017
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  4018
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4019
                   is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4020
    ## wifi-net-device.h: bool ns3::WifiNetDevice::IsBroadcast() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4021
    cls.add_method('IsBroadcast', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4022
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4023
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4024
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4025
    ## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetBroadcast() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4026
    cls.add_method('GetBroadcast', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4027
                   'ns3::Address', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4028
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4029
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4030
    ## wifi-net-device.h: bool ns3::WifiNetDevice::IsMulticast() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4031
    cls.add_method('IsMulticast', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4032
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4033
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4034
                   is_const=True, is_virtual=True)
3842
545ddf9398ed apply patch for bug 294 (GetMulticastAddr) + emu device update + rescan
vincent@clarinet.u-strasbg.fr
parents: 3745
diff changeset
  4035
    ## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4036
    cls.add_method('GetMulticast', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4037
                   'ns3::Address', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4038
                   [param('ns3::Ipv4Address', 'multicastGroup')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4039
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4040
    ## wifi-net-device.h: bool ns3::WifiNetDevice::IsPointToPoint() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4041
    cls.add_method('IsPointToPoint', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4042
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4043
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4044
                   is_const=True, is_virtual=True)
3951
561a37800333 The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3914
diff changeset
  4045
    ## wifi-net-device.h: bool ns3::WifiNetDevice::IsBridge() const [member function]
561a37800333 The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3914
diff changeset
  4046
    cls.add_method('IsBridge', 
561a37800333 The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3914
diff changeset
  4047
                   'bool', 
561a37800333 The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3914
diff changeset
  4048
                   [], 
561a37800333 The 'contrib' module actually depends on 'common' too (affects waf --python-scan)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3914
diff changeset
  4049
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4050
    ## wifi-net-device.h: bool ns3::WifiNetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4051
    cls.add_method('Send', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4052
                   'bool', 
3574
b6804efbe16b New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3567
diff changeset
  4053
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4054
                   is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4055
    ## wifi-net-device.h: ns3::Ptr<ns3::Node> ns3::WifiNetDevice::GetNode() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4056
    cls.add_method('GetNode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4057
                   'ns3::Ptr< ns3::Node >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4058
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4059
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4060
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4061
    cls.add_method('SetNode', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4062
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4063
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4064
                   is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4065
    ## wifi-net-device.h: bool ns3::WifiNetDevice::NeedsArp() const [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4066
    cls.add_method('NeedsArp', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4067
                   'bool', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4068
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4069
                   is_const=True, is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  4070
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> cb) [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4071
    cls.add_method('SetReceiveCallback', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4072
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  4073
                   [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], 
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4074
                   is_virtual=True)
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4075
    ## wifi-net-device.h: ns3::Address ns3::WifiNetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4076
    cls.add_method('GetMulticast', 
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4077
                   'ns3::Address', 
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4078
                   [param('ns3::Ipv6Address', 'addr')], 
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4079
                   is_const=True, is_virtual=True)
3480
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4080
    ## wifi-net-device.h: bool ns3::WifiNetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function]
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4081
    cls.add_method('SendFrom', 
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4082
                   'bool', 
3574
b6804efbe16b New pybindgen and API rescan. Extensive API description files changes because pybindgen now handles consts differently.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3567
diff changeset
  4083
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
3480
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4084
                   is_virtual=True)
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  4085
    ## wifi-net-device.h: void ns3::WifiNetDevice::SetPromiscReceiveCallback(ns3::Callback<bool, ns3::Ptr<ns3::NetDevice>, ns3::Ptr<ns3::Packet const>, unsigned short, ns3::Address const&, ns3::Address const&, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty> cb) [member function]
3480
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4086
    cls.add_method('SetPromiscReceiveCallback', 
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4087
                   'void', 
4073
b7c683c2479e rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4060
diff changeset
  4088
                   [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, unsigned short, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')], 
3480
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4089
                   is_virtual=True)
3584
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  4090
    ## wifi-net-device.h: bool ns3::WifiNetDevice::SupportsSendFrom() const [member function]
4eb48239b4dc bug 274: bridge must detect compatibility of devices with bridging mode
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3574
diff changeset
  4091
    cls.add_method('SupportsSendFrom', 
3480
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4092
                   'bool', 
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4093
                   [], 
a920df6b9f02 Make the new NetDevice APIs pure virtual methods, by Mathieu's insistence.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3474
diff changeset
  4094
                   is_const=True, is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4095
    ## wifi-net-device.h: void ns3::WifiNetDevice::DoDispose() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4096
    cls.add_method('DoDispose', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4097
                   'void', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4098
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4099
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4100
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4101
4038
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4102
def register_Ns3YansErrorRateModel_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  4103
    ## yans-error-rate-model.h: ns3::YansErrorRateModel::YansErrorRateModel(ns3::YansErrorRateModel const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  4104
    cls.add_constructor([param('ns3::YansErrorRateModel const &', 'arg0')])
4038
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4105
    ## yans-error-rate-model.h: static ns3::TypeId ns3::YansErrorRateModel::GetTypeId() [member function]
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4106
    cls.add_method('GetTypeId', 
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4107
                   'ns3::TypeId', 
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4108
                   [], 
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4109
                   is_static=True)
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4110
    ## yans-error-rate-model.h: ns3::YansErrorRateModel::YansErrorRateModel() [constructor]
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4111
    cls.add_constructor([])
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4112
    ## yans-error-rate-model.h: double ns3::YansErrorRateModel::GetChunkSuccessRate(ns3::WifiMode mode, double snr, uint32_t nbits) const [member function]
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4113
    cls.add_method('GetChunkSuccessRate', 
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4114
                   'double', 
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4115
                   [param('ns3::WifiMode', 'mode'), param('double', 'snr'), param('uint32_t', 'nbits')], 
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4116
                   is_const=True, is_virtual=True)
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4117
    return
c6f634d0fc6f virtualize ErrorRateModel
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3972
diff changeset
  4118
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4119
def register_Ns3YansWifiChannel_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  4120
    ## yans-wifi-channel.h: ns3::YansWifiChannel::YansWifiChannel(ns3::YansWifiChannel const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  4121
    cls.add_constructor([param('ns3::YansWifiChannel const &', 'arg0')])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4122
    ## yans-wifi-channel.h: static ns3::TypeId ns3::YansWifiChannel::GetTypeId() [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4123
    cls.add_method('GetTypeId', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4124
                   'ns3::TypeId', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4125
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4126
                   is_static=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4127
    ## yans-wifi-channel.h: ns3::YansWifiChannel::YansWifiChannel() [constructor]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4128
    cls.add_constructor([])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4129
    ## yans-wifi-channel.h: uint32_t ns3::YansWifiChannel::GetNDevices() const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4130
    cls.add_method('GetNDevices', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4131
                   'uint32_t', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4132
                   [], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4133
                   is_const=True, is_virtual=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4134
    ## yans-wifi-channel.h: ns3::Ptr<ns3::NetDevice> ns3::YansWifiChannel::GetDevice(uint32_t i) const [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4135
    cls.add_method('GetDevice', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4136
                   'ns3::Ptr< ns3::NetDevice >', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4137
                   [param('uint32_t', 'i')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4138
                   is_const=True, is_virtual=True)
3912
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  4139
    ## yans-wifi-channel.h: void ns3::YansWifiChannel::Add(ns3::Ptr<ns3::YansWifiPhy> phy) [member function]
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  4140
    cls.add_method('Add', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  4141
                   'void', 
4d1a61f80745 new wifi API
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3908
diff changeset
  4142
                   [param('ns3::Ptr< ns3::YansWifiPhy >', 'phy')])
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4143
    ## yans-wifi-channel.h: void ns3::YansWifiChannel::SetPropagationLossModel(ns3::Ptr<ns3::PropagationLossModel> loss) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4144
    cls.add_method('SetPropagationLossModel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4145
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4146
                   [param('ns3::Ptr< ns3::PropagationLossModel >', 'loss')])
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4147
    ## yans-wifi-channel.h: void ns3::YansWifiChannel::SetPropagationDelayModel(ns3::Ptr<ns3::PropagationDelayModel> delay) [member function]
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4148
    cls.add_method('SetPropagationDelayModel', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4149
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4150
                   [param('ns3::Ptr< ns3::PropagationDelayModel >', 'delay')])
4407
ef566eeff84f rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4382
diff changeset
  4151
    ## yans-wifi-channel.h: void ns3::YansWifiChannel::Send(ns3::Ptr<ns3::YansWifiPhy> sender, ns3::Ptr<ns3::Packet const> packet, double txPowerDbm, ns3::WifiMode wifiMode, ns3::WifiPreamble preamble) const [member function]
3906
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4152
    cls.add_method('Send', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4153
                   'void', 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4154
                   [param('ns3::Ptr< ns3::YansWifiPhy >', 'sender'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('double', 'txPowerDbm'), param('ns3::WifiMode', 'wifiMode'), param('ns3::WifiPreamble', 'preamble')], 
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4155
                   is_const=True)
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4156
    return
01acc159ffb1 merge with HEAD
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 3745
diff changeset
  4157
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4158
def register_Ns3AarfWifiManager_methods(root_module, cls):
4241
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  4159
    ## aarf-wifi-manager.h: ns3::AarfWifiManager::AarfWifiManager(ns3::AarfWifiManager const & arg0) [copy constructor]
c35796bc0b4b rescan python
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4218
diff changeset
  4160
    cls.add_constructor([param('ns3::AarfWifiManager const &', 'arg0')])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4161
    ## aarf-wifi-manager.h: static ns3::TypeId ns3::AarfWifiManager::GetTypeId() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4162
    cls.add_method('GetTypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4163
                   'ns3::TypeId', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4164
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4165
                   is_static=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4166
    ## aarf-wifi-manager.h: ns3::AarfWifiManager::AarfWifiManager() [constructor]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4167
    cls.add_constructor([])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4168
    ## aarf-wifi-manager.h: ns3::WifiRemoteStation * ns3::AarfWifiManager::CreateStation() [member function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4169
    cls.add_method('CreateStation', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4170
                   'ns3::WifiRemoteStation *', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4171
                   [], 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4172
                   visibility='private', is_virtual=True)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4173
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4174
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4175
def register_functions(root_module):
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4176
    module = root_module
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4177
    ## ssid.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeSsidChecker() [free function]
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4178
    module.add_function('MakeSsidChecker', 
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4179
                        'ns3::Ptr< ns3::AttributeChecker const >', 
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4180
                        [])
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4181
    ## wifi-mode.h: extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeWifiModeChecker() [free function]
3468
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4182
    module.add_function('MakeWifiModeChecker', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4183
                        'ns3::Ptr< ns3::AttributeChecker const >', 
0bb5275704fc Python: new pybindgen, rescan API definitions, new API definition files are more multi-line and hopefully easier to read
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3460
diff changeset
  4184
                        [])
4422
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4185
    ## qos-utils.h: extern uint8_t ns3::QosUtilsGetTidForPacket(ns3::Ptr<ns3::Packet const> packet) [free function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4186
    module.add_function('QosUtilsGetTidForPacket', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4187
                        'uint8_t', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4188
                        [param('ns3::Ptr< ns3::Packet const >', 'packet')])
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4189
    ## qos-utils.h: extern ns3::AccessClass ns3::QosUtilsMapTidToAc(uint8_t tid) [free function]
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4190
    module.add_function('QosUtilsMapTidToAc', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4191
                        'ns3::AccessClass', 
f5ef533e56e4 rescan python bindings
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 4407
diff changeset
  4192
                        [param('uint8_t', 'tid')])
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4193
    register_functions_ns3_Config(module.get_submodule('Config'), root_module)
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4194
    register_functions_ns3_TimeStepPrecision(module.get_submodule('TimeStepPrecision'), root_module)
4474
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
  4195
    register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module)
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4196
    register_functions_ns3_internal(module.get_submodule('internal'), root_module)
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4197
    register_functions_ns3_olsr(module.get_submodule('olsr'), root_module)
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4198
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4199
3855
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4200
def register_functions_ns3_Config(module, root_module):
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4201
    return
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4202
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4203
def register_functions_ns3_TimeStepPrecision(module, root_module):
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4204
    return
7fdcbeea6c4f Python: require new pybindgen and re-scan API to make the list of free functions and namespaces sorted.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 3842
diff changeset
  4205
4474
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
  4206
def register_functions_ns3_addressUtils(module, root_module):
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
  4207
    return
19e2b7ff3482 bindings/ changes for IPv4 routing rework
Tom Henderson <tomh@tomh.org>
parents: 4454
diff changeset
  4208
3408
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4209
def register_functions_ns3_internal(module, root_module):
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4210
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4211
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4212
def register_functions_ns3_olsr(module, root_module):
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4213
    return
2cc40b3e4fa5 python bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4214