src/network/bindings/modulegen__gcc_LP64.py
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Fri, 23 Mar 2012 23:50:52 -0700
changeset 7788 90ef8839dc5d
parent 7724 df7a2f30d5a8
child 7853 1d8f7c004b89
permissions -rw-r--r--
rescan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     1
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     2
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     3
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     4
import pybindgen.settings
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     5
import warnings
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     6
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     7
class ErrorHandler(pybindgen.settings.ErrorHandler):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     8
    def handle_error(self, wrapper, exception, traceback_):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     9
        warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    10
        return True
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    11
pybindgen.settings.error_handler = ErrorHandler()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    12
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    13
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    14
import sys
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    15
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    16
def module_init():
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    17
    root_module = Module('ns.network', cpp_namespace='::ns3')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    18
    return root_module
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    19
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    20
def register_types(module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    21
    root_module = module.get_root()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    22
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    23
    ## packetbb.h (module 'network'): ns3::PbbAddressLength [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    24
    module.add_enum('PbbAddressLength', ['IPV4', 'IPV6'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    25
    ## ethernet-header.h (module 'network'): ns3::ethernet_header_t [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    26
    module.add_enum('ethernet_header_t', ['LENGTH', 'VLAN', 'QINQ'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    27
    ## error-model.h (module 'network'): ns3::ErrorUnit [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    28
    module.add_enum('ErrorUnit', ['EU_BIT', 'EU_BYTE', 'EU_PKT'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    29
    ## address.h (module 'network'): ns3::Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    30
    module.add_class('Address')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    31
    ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    32
    module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    33
    ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    34
    module.add_class('ApplicationContainer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    35
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    36
    module.add_class('AsciiTraceHelper')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    37
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    38
    module.add_class('AsciiTraceHelperForDevice', allow_subclassing=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    39
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList [class]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    40
    module.add_class('AttributeConstructionList', import_from_module='ns.core')
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    41
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item [struct]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    42
    module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    43
    ## buffer.h (module 'network'): ns3::Buffer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    44
    module.add_class('Buffer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    45
    ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    46
    module.add_class('Iterator', outer_class=root_module['ns3::Buffer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    47
    ## packet.h (module 'network'): ns3::ByteTagIterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    48
    module.add_class('ByteTagIterator')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    49
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    50
    module.add_class('Item', outer_class=root_module['ns3::ByteTagIterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    51
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    52
    module.add_class('ByteTagList')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    53
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    54
    module.add_class('Iterator', outer_class=root_module['ns3::ByteTagList'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    55
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    56
    module.add_class('Item', outer_class=root_module['ns3::ByteTagList::Iterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    57
    ## callback.h (module 'core'): ns3::CallbackBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    58
    module.add_class('CallbackBase', import_from_module='ns.core')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    59
    ## channel-list.h (module 'network'): ns3::ChannelList [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    60
    module.add_class('ChannelList')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    61
    ## data-rate.h (module 'network'): ns3::DataRate [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    62
    module.add_class('DataRate')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    63
    ## event-id.h (module 'core'): ns3::EventId [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    64
    module.add_class('EventId', import_from_module='ns.core')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    65
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    66
    module.add_class('Inet6SocketAddress')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    67
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    68
    root_module['ns3::Inet6SocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    69
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    70
    module.add_class('InetSocketAddress')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    71
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    72
    root_module['ns3::InetSocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    73
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    74
    module.add_class('Ipv4Address')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    75
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    76
    root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    77
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    78
    module.add_class('Ipv4Mask')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    79
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    80
    module.add_class('Ipv6Address')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    81
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    82
    root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    83
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    84
    module.add_class('Ipv6Prefix')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    85
    ## mac48-address.h (module 'network'): ns3::Mac48Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    86
    module.add_class('Mac48Address')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    87
    ## mac48-address.h (module 'network'): ns3::Mac48Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    88
    root_module['ns3::Mac48Address'].implicitly_converts_to(root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    89
    ## mac64-address.h (module 'network'): ns3::Mac64Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    90
    module.add_class('Mac64Address')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    91
    ## mac64-address.h (module 'network'): ns3::Mac64Address [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    92
    root_module['ns3::Mac64Address'].implicitly_converts_to(root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    93
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    94
    module.add_class('NetDeviceContainer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    95
    ## node-container.h (module 'network'): ns3::NodeContainer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    96
    module.add_class('NodeContainer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    97
    ## node-list.h (module 'network'): ns3::NodeList [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    98
    module.add_class('NodeList')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    99
    ## object-base.h (module 'core'): ns3::ObjectBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   100
    module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   101
    ## object.h (module 'core'): ns3::ObjectDeleter [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   102
    module.add_class('ObjectDeleter', import_from_module='ns.core')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   103
    ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   104
    module.add_class('ObjectFactory', import_from_module='ns.core')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   105
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   106
    module.add_class('PacketMetadata')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   107
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   108
    module.add_class('Item', outer_class=root_module['ns3::PacketMetadata'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   109
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   110
    module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   111
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   112
    module.add_class('ItemIterator', outer_class=root_module['ns3::PacketMetadata'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   113
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   114
    module.add_class('PacketSocketAddress')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   115
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   116
    root_module['ns3::PacketSocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   117
    ## packet-socket-helper.h (module 'network'): ns3::PacketSocketHelper [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   118
    module.add_class('PacketSocketHelper')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   119
    ## packet.h (module 'network'): ns3::PacketTagIterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   120
    module.add_class('PacketTagIterator')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   121
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   122
    module.add_class('Item', outer_class=root_module['ns3::PacketTagIterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   123
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   124
    module.add_class('PacketTagList')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   125
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   126
    module.add_class('TagData', outer_class=root_module['ns3::PacketTagList'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   127
    ## packetbb.h (module 'network'): ns3::PbbAddressTlvBlock [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   128
    module.add_class('PbbAddressTlvBlock')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   129
    ## packetbb.h (module 'network'): ns3::PbbTlvBlock [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   130
    module.add_class('PbbTlvBlock')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   131
    ## pcap-file.h (module 'network'): ns3::PcapFile [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   132
    module.add_class('PcapFile')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   133
    ## trace-helper.h (module 'network'): ns3::PcapHelper [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   134
    module.add_class('PcapHelper')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   135
    ## trace-helper.h (module 'network'): ns3::PcapHelper [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   136
    module.add_enum('', ['DLT_NULL', 'DLT_EN10MB', 'DLT_PPP', 'DLT_RAW', 'DLT_IEEE802_11', 'DLT_PRISM_HEADER', 'DLT_IEEE802_11_RADIO'], outer_class=root_module['ns3::PcapHelper'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   137
    ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   138
    module.add_class('PcapHelperForDevice', allow_subclassing=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   139
    ## random-variable.h (module 'core'): ns3::RandomVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   140
    module.add_class('RandomVariable', import_from_module='ns.core')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   141
    ## random-variable.h (module 'core'): ns3::SeedManager [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   142
    module.add_class('SeedManager', import_from_module='ns.core')
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   143
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int> [class]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   144
    module.add_class('SequenceNumber32')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   145
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned short, short> [class]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   146
    module.add_class('SequenceNumber16')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   147
    ## random-variable.h (module 'core'): ns3::SequentialVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   148
    module.add_class('SequentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   149
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   150
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Object', 'ns3::ObjectBase', 'ns3::ObjectDeleter'], parent=root_module['ns3::ObjectBase'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   151
    ## simulator.h (module 'core'): ns3::Simulator [class]
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
   152
    module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core')
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   153
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs [class]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   154
    module.add_class('SystemWallClockMs', import_from_module='ns.core')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   155
    ## tag.h (module 'network'): ns3::Tag [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   156
    module.add_class('Tag', parent=root_module['ns3::ObjectBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   157
    ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   158
    module.add_class('TagBuffer')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   159
    ## random-variable.h (module 'core'): ns3::TriangularVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   160
    module.add_class('TriangularVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   161
    ## type-id.h (module 'core'): ns3::TypeId [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   162
    module.add_class('TypeId', import_from_module='ns.core')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   163
    ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   164
    module.add_enum('AttributeFlag', ['ATTR_GET', 'ATTR_SET', 'ATTR_CONSTRUCT', 'ATTR_SGC'], outer_class=root_module['ns3::TypeId'], import_from_module='ns.core')
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   165
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation [struct]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   166
    module.add_class('AttributeInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   167
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation [struct]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   168
    module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   169
    ## random-variable.h (module 'core'): ns3::UniformVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   170
    module.add_class('UniformVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   171
    ## random-variable.h (module 'core'): ns3::WeibullVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   172
    module.add_class('WeibullVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   173
    ## random-variable.h (module 'core'): ns3::ZetaVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   174
    module.add_class('ZetaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   175
    ## random-variable.h (module 'core'): ns3::ZipfVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   176
    module.add_class('ZipfVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   177
    ## empty.h (module 'core'): ns3::empty [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   178
    module.add_class('empty', import_from_module='ns.core')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   179
    ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   180
    module.add_class('int64x64_t', import_from_module='ns.core')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   181
    ## chunk.h (module 'network'): ns3::Chunk [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   182
    module.add_class('Chunk', parent=root_module['ns3::ObjectBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   183
    ## random-variable.h (module 'core'): ns3::ConstantVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   184
    module.add_class('ConstantVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   185
    ## random-variable.h (module 'core'): ns3::DeterministicVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   186
    module.add_class('DeterministicVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   187
    ## random-variable.h (module 'core'): ns3::EmpiricalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   188
    module.add_class('EmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   189
    ## random-variable.h (module 'core'): ns3::ErlangVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   190
    module.add_class('ErlangVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   191
    ## random-variable.h (module 'core'): ns3::ExponentialVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   192
    module.add_class('ExponentialVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
6955
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
   193
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag [class]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
   194
    module.add_class('FlowIdTag', parent=root_module['ns3::Tag'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   195
    ## random-variable.h (module 'core'): ns3::GammaVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   196
    module.add_class('GammaVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   197
    ## header.h (module 'network'): ns3::Header [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   198
    module.add_class('Header', parent=root_module['ns3::Chunk'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   199
    ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   200
    module.add_class('IntEmpiricalVariable', import_from_module='ns.core', parent=root_module['ns3::EmpiricalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   201
    ## llc-snap-header.h (module 'network'): ns3::LlcSnapHeader [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   202
    module.add_class('LlcSnapHeader', parent=root_module['ns3::Header'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   203
    ## random-variable.h (module 'core'): ns3::LogNormalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   204
    module.add_class('LogNormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   205
    ## random-variable.h (module 'core'): ns3::NormalVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   206
    module.add_class('NormalVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   207
    ## object.h (module 'core'): ns3::Object [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   208
    module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   209
    ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   210
    module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   211
    ## packet-burst.h (module 'network'): ns3::PacketBurst [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   212
    module.add_class('PacketBurst', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   213
    ## random-variable.h (module 'core'): ns3::ParetoVariable [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   214
    module.add_class('ParetoVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   215
    ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   216
    module.add_class('PcapFileWrapper', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   217
    ## queue.h (module 'network'): ns3::Queue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   218
    module.add_class('Queue', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   219
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   220
    module.add_class('RadiotapHeader', parent=root_module['ns3::Header'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   221
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   222
    module.add_enum('', ['FRAME_FLAG_NONE', 'FRAME_FLAG_CFP', 'FRAME_FLAG_SHORT_PREAMBLE', 'FRAME_FLAG_WEP', 'FRAME_FLAG_FRAGMENTED', 'FRAME_FLAG_FCS_INCLUDED', 'FRAME_FLAG_DATA_PADDING', 'FRAME_FLAG_BAD_FCS', 'FRAME_FLAG_SHORT_GUARD'], outer_class=root_module['ns3::RadiotapHeader'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   223
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   224
    module.add_enum('', ['CHANNEL_FLAG_NONE', 'CHANNEL_FLAG_TURBO', 'CHANNEL_FLAG_CCK', 'CHANNEL_FLAG_OFDM', 'CHANNEL_FLAG_SPECTRUM_2GHZ', 'CHANNEL_FLAG_SPECTRUM_5GHZ', 'CHANNEL_FLAG_PASSIVE', 'CHANNEL_FLAG_DYNAMIC', 'CHANNEL_FLAG_GFSK'], outer_class=root_module['ns3::RadiotapHeader'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   225
    ## red-queue.h (module 'network'): ns3::RedQueue [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   226
    module.add_class('RedQueue', parent=root_module['ns3::Queue'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   227
    ## red-queue.h (module 'network'): ns3::RedQueue [enumeration]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   228
    module.add_enum('', ['DTYPE_NONE', 'DTYPE_FORCED', 'DTYPE_UNFORCED'], outer_class=root_module['ns3::RedQueue'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   229
    ## red-queue.h (module 'network'): ns3::RedQueue::Mode [enumeration]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   230
    module.add_enum('Mode', ['ILLEGAL', 'PACKETS', 'BYTES'], outer_class=root_module['ns3::RedQueue'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   231
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats [struct]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   232
    module.add_class('Stats', outer_class=root_module['ns3::RedQueue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   233
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   234
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   235
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   236
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeChecker', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeChecker>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   237
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   238
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::AttributeValue', 'ns3::empty', 'ns3::DefaultDeleter<ns3::AttributeValue>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   239
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   240
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::CallbackImplBase', 'ns3::empty', 'ns3::DefaultDeleter<ns3::CallbackImplBase>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   241
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   242
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::EventImpl', 'ns3::empty', 'ns3::DefaultDeleter<ns3::EventImpl>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   243
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   244
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::NixVector', 'ns3::empty', 'ns3::DefaultDeleter<ns3::NixVector>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   245
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class]
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   246
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::OutputStreamWrapper', 'ns3::empty', 'ns3::DefaultDeleter<ns3::OutputStreamWrapper>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   247
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   248
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::Packet', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Packet>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   249
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> > [class]
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   250
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::PbbAddressBlock', 'ns3::empty', 'ns3::DefaultDeleter<ns3::PbbAddressBlock>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   251
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> > [class]
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   252
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::PbbMessage', 'ns3::empty', 'ns3::DefaultDeleter<ns3::PbbMessage>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   253
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> > [class]
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   254
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::PbbPacket', 'ns3::Header', 'ns3::DefaultDeleter<ns3::PbbPacket>'], parent=root_module['ns3::Header'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   255
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> > [class]
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   256
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::PbbTlv', 'ns3::empty', 'ns3::DefaultDeleter<ns3::PbbTlv>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   257
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > [class]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   258
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::TraceSourceAccessor', 'ns3::empty', 'ns3::DefaultDeleter<ns3::TraceSourceAccessor>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   259
    ## socket.h (module 'network'): ns3::Socket [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   260
    module.add_class('Socket', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   261
    ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
7449
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   262
    module.add_enum('SocketErrno', ['ERROR_NOTERROR', 'ERROR_ISCONN', 'ERROR_NOTCONN', 'ERROR_MSGSIZE', 'ERROR_AGAIN', 'ERROR_SHUTDOWN', 'ERROR_OPNOTSUPP', 'ERROR_AFNOSUPPORT', 'ERROR_INVAL', 'ERROR_BADF', 'ERROR_NOROUTETOHOST', 'ERROR_NODEV', 'ERROR_ADDRNOTAVAIL', 'ERROR_ADDRINUSE', 'SOCKET_ERRNO_LAST'], outer_class=root_module['ns3::Socket'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   263
    ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   264
    module.add_enum('SocketType', ['NS3_SOCK_STREAM', 'NS3_SOCK_SEQPACKET', 'NS3_SOCK_DGRAM', 'NS3_SOCK_RAW'], outer_class=root_module['ns3::Socket'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   265
    ## socket.h (module 'network'): ns3::SocketAddressTag [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   266
    module.add_class('SocketAddressTag', parent=root_module['ns3::Tag'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   267
    ## socket-factory.h (module 'network'): ns3::SocketFactory [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   268
    module.add_class('SocketFactory', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   269
    ## socket.h (module 'network'): ns3::SocketIpTtlTag [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   270
    module.add_class('SocketIpTtlTag', parent=root_module['ns3::Tag'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   271
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   272
    module.add_class('SocketSetDontFragmentTag', parent=root_module['ns3::Tag'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   273
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   274
    module.add_class('Time', import_from_module='ns.core')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   275
    ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   276
    module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   277
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   278
    root_module['ns3::Time'].implicitly_converts_to(root_module['ns3::int64x64_t'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   279
    ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor [class]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   280
    module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   281
    ## trailer.h (module 'network'): ns3::Trailer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   282
    module.add_class('Trailer', parent=root_module['ns3::Chunk'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   283
    ## application.h (module 'network'): ns3::Application [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   284
    module.add_class('Application', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   285
    ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   286
    module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   287
    ## attribute.h (module 'core'): ns3::AttributeChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   288
    module.add_class('AttributeChecker', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   289
    ## attribute.h (module 'core'): ns3::AttributeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   290
    module.add_class('AttributeValue', allow_subclassing=False, automatic_type_narrowing=True, import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   291
    ## boolean.h (module 'core'): ns3::BooleanChecker [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   292
    module.add_class('BooleanChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   293
    ## boolean.h (module 'core'): ns3::BooleanValue [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   294
    module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   295
    ## callback.h (module 'core'): ns3::CallbackChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   296
    module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   297
    ## callback.h (module 'core'): ns3::CallbackImplBase [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   298
    module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   299
    ## callback.h (module 'core'): ns3::CallbackValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   300
    module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   301
    ## channel.h (module 'network'): ns3::Channel [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   302
    module.add_class('Channel', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   303
    ## data-rate.h (module 'network'): ns3::DataRateChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   304
    module.add_class('DataRateChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   305
    ## data-rate.h (module 'network'): ns3::DataRateValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   306
    module.add_class('DataRateValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   307
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   308
    module.add_class('DropTailQueue', parent=root_module['ns3::Queue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   309
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::Mode [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   310
    module.add_enum('Mode', ['ILLEGAL', 'PACKETS', 'BYTES'], outer_class=root_module['ns3::DropTailQueue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   311
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   312
    module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   313
    ## error-model.h (module 'network'): ns3::ErrorModel [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   314
    module.add_class('ErrorModel', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   315
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   316
    module.add_class('EthernetHeader', parent=root_module['ns3::Header'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   317
    ## ethernet-trailer.h (module 'network'): ns3::EthernetTrailer [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   318
    module.add_class('EthernetTrailer', parent=root_module['ns3::Trailer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   319
    ## event-impl.h (module 'core'): ns3::EventImpl [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   320
    module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   321
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   322
    module.add_class('Ipv4AddressChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   323
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   324
    module.add_class('Ipv4AddressValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   325
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   326
    module.add_class('Ipv4MaskChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   327
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   328
    module.add_class('Ipv4MaskValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   329
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   330
    module.add_class('Ipv6AddressChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   331
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   332
    module.add_class('Ipv6AddressValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   333
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   334
    module.add_class('Ipv6PrefixChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   335
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   336
    module.add_class('Ipv6PrefixValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   337
    ## error-model.h (module 'network'): ns3::ListErrorModel [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   338
    module.add_class('ListErrorModel', parent=root_module['ns3::ErrorModel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   339
    ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   340
    module.add_class('Mac48AddressChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   341
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   342
    module.add_class('Mac48AddressValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   343
    ## net-device.h (module 'network'): ns3::NetDevice [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   344
    module.add_class('NetDevice', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   345
    ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   346
    module.add_enum('PacketType', ['PACKET_HOST', 'NS3_PACKET_HOST', 'PACKET_BROADCAST', 'NS3_PACKET_BROADCAST', 'PACKET_MULTICAST', 'NS3_PACKET_MULTICAST', 'PACKET_OTHERHOST', 'NS3_PACKET_OTHERHOST'], outer_class=root_module['ns3::NetDevice'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   347
    ## nix-vector.h (module 'network'): ns3::NixVector [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   348
    module.add_class('NixVector', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   349
    ## node.h (module 'network'): ns3::Node [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   350
    module.add_class('Node', parent=root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   351
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   352
    module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   353
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   354
    module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   355
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   356
    module.add_class('OutputStreamWrapper', parent=root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   357
    ## packet.h (module 'network'): ns3::Packet [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   358
    module.add_class('Packet', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   359
    ## packet-socket.h (module 'network'): ns3::PacketSocket [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   360
    module.add_class('PacketSocket', parent=root_module['ns3::Socket'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   361
    ## packet-socket-factory.h (module 'network'): ns3::PacketSocketFactory [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   362
    module.add_class('PacketSocketFactory', parent=root_module['ns3::SocketFactory'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   363
    ## packetbb.h (module 'network'): ns3::PbbAddressBlock [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   364
    module.add_class('PbbAddressBlock', parent=root_module['ns3::SimpleRefCount< ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   365
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv4 [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   366
    module.add_class('PbbAddressBlockIpv4', parent=root_module['ns3::PbbAddressBlock'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   367
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv6 [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   368
    module.add_class('PbbAddressBlockIpv6', parent=root_module['ns3::PbbAddressBlock'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   369
    ## packetbb.h (module 'network'): ns3::PbbMessage [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   370
    module.add_class('PbbMessage', parent=root_module['ns3::SimpleRefCount< ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   371
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv4 [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   372
    module.add_class('PbbMessageIpv4', parent=root_module['ns3::PbbMessage'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   373
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv6 [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   374
    module.add_class('PbbMessageIpv6', parent=root_module['ns3::PbbMessage'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   375
    ## packetbb.h (module 'network'): ns3::PbbPacket [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   376
    module.add_class('PbbPacket', parent=root_module['ns3::SimpleRefCount< ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   377
    ## packetbb.h (module 'network'): ns3::PbbTlv [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   378
    module.add_class('PbbTlv', parent=root_module['ns3::SimpleRefCount< ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   379
    ## random-variable.h (module 'core'): ns3::RandomVariableChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   380
    module.add_class('RandomVariableChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   381
    ## random-variable.h (module 'core'): ns3::RandomVariableValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   382
    module.add_class('RandomVariableValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   383
    ## error-model.h (module 'network'): ns3::RateErrorModel [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   384
    module.add_class('RateErrorModel', parent=root_module['ns3::ErrorModel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   385
    ## error-model.h (module 'network'): ns3::ReceiveListErrorModel [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   386
    module.add_class('ReceiveListErrorModel', parent=root_module['ns3::ErrorModel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   387
    ## simple-channel.h (module 'network'): ns3::SimpleChannel [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   388
    module.add_class('SimpleChannel', parent=root_module['ns3::Channel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   389
    ## simple-net-device.h (module 'network'): ns3::SimpleNetDevice [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   390
    module.add_class('SimpleNetDevice', parent=root_module['ns3::NetDevice'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   391
    ## nstime.h (module 'core'): ns3::TimeChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   392
    module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   393
    ## nstime.h (module 'core'): ns3::TimeValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   394
    module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   395
    ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   396
    module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   397
    ## type-id.h (module 'core'): ns3::TypeIdValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   398
    module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   399
    ## address.h (module 'network'): ns3::AddressChecker [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   400
    module.add_class('AddressChecker', parent=root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   401
    ## address.h (module 'network'): ns3::AddressValue [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   402
    module.add_class('AddressValue', parent=root_module['ns3::AttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   403
    ## packetbb.h (module 'network'): ns3::PbbAddressTlv [class]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   404
    module.add_class('PbbAddressTlv', parent=root_module['ns3::PbbTlv'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   405
    module.add_container('std::list< ns3::Ptr< ns3::Packet > >', 'ns3::Ptr< ns3::Packet >', container_type='list')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   406
    module.add_container('std::list< unsigned int >', 'unsigned int', container_type='list')
6990
c9069308a70e Bindings rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   407
    typehandlers.add_type_alias('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ns3::GenericPhyRxEndOkCallback')
c9069308a70e Bindings rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   408
    typehandlers.add_type_alias('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', 'ns3::GenericPhyRxEndOkCallback*')
c9069308a70e Bindings rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   409
    typehandlers.add_type_alias('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', 'ns3::GenericPhyRxEndOkCallback&')
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   410
    typehandlers.add_type_alias('ns3::SequenceNumber< unsigned short, short >', 'ns3::SequenceNumber16')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   411
    typehandlers.add_type_alias('ns3::SequenceNumber< unsigned short, short >*', 'ns3::SequenceNumber16*')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   412
    typehandlers.add_type_alias('ns3::SequenceNumber< unsigned short, short >&', 'ns3::SequenceNumber16&')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   413
    typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >', 'ns3::SequenceNumber32')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   414
    typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >*', 'ns3::SequenceNumber32*')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   415
    typehandlers.add_type_alias('ns3::SequenceNumber< unsigned int, int >&', 'ns3::SequenceNumber32&')
6990
c9069308a70e Bindings rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   416
    typehandlers.add_type_alias('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ns3::GenericPhyRxStartCallback')
c9069308a70e Bindings rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   417
    typehandlers.add_type_alias('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', 'ns3::GenericPhyRxStartCallback*')
c9069308a70e Bindings rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   418
    typehandlers.add_type_alias('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', 'ns3::GenericPhyRxStartCallback&')
7449
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   419
    typehandlers.add_type_alias('ns3::Callback< bool, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ns3::GenericPhyTxStartCallback')
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   420
    typehandlers.add_type_alias('ns3::Callback< bool, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', 'ns3::GenericPhyTxStartCallback*')
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   421
    typehandlers.add_type_alias('ns3::Callback< bool, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', 'ns3::GenericPhyTxStartCallback&')
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
   422
    typehandlers.add_type_alias('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ns3::GenericPhyRxEndErrorCallback')
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
   423
    typehandlers.add_type_alias('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', 'ns3::GenericPhyRxEndErrorCallback*')
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
   424
    typehandlers.add_type_alias('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', 'ns3::GenericPhyRxEndErrorCallback&')
7449
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   425
    typehandlers.add_type_alias('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ns3::GenericPhyTxEndCallback')
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   426
    typehandlers.add_type_alias('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', 'ns3::GenericPhyTxEndCallback*')
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   427
    typehandlers.add_type_alias('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', 'ns3::GenericPhyTxEndCallback&')
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   428
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   429
    ## Register a nested module for the namespace FatalImpl
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   430
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   431
    nested_module = module.add_cpp_namespace('FatalImpl')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   432
    register_types_ns3_FatalImpl(nested_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   433
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   434
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   435
    ## Register a nested module for the namespace addressUtils
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   436
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   437
    nested_module = module.add_cpp_namespace('addressUtils')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   438
    register_types_ns3_addressUtils(nested_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   439
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   440
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   441
def register_types_ns3_FatalImpl(module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   442
    root_module = module.get_root()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   443
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   444
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   445
def register_types_ns3_addressUtils(module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   446
    root_module = module.get_root()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   447
    
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   448
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   449
def register_methods(root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   450
    register_Ns3Address_methods(root_module, root_module['ns3::Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   451
    register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   452
    register_Ns3AsciiTraceHelper_methods(root_module, root_module['ns3::AsciiTraceHelper'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   453
    register_Ns3AsciiTraceHelperForDevice_methods(root_module, root_module['ns3::AsciiTraceHelperForDevice'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   454
    register_Ns3AttributeConstructionList_methods(root_module, root_module['ns3::AttributeConstructionList'])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   455
    register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   456
    register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   457
    register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   458
    register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   459
    register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   460
    register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   461
    register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   462
    register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   463
    register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   464
    register_Ns3ChannelList_methods(root_module, root_module['ns3::ChannelList'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   465
    register_Ns3DataRate_methods(root_module, root_module['ns3::DataRate'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   466
    register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   467
    register_Ns3Inet6SocketAddress_methods(root_module, root_module['ns3::Inet6SocketAddress'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   468
    register_Ns3InetSocketAddress_methods(root_module, root_module['ns3::InetSocketAddress'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   469
    register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   470
    register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   471
    register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   472
    register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   473
    register_Ns3Mac48Address_methods(root_module, root_module['ns3::Mac48Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   474
    register_Ns3Mac64Address_methods(root_module, root_module['ns3::Mac64Address'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   475
    register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   476
    register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   477
    register_Ns3NodeList_methods(root_module, root_module['ns3::NodeList'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   478
    register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   479
    register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   480
    register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   481
    register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   482
    register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   483
    register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   484
    register_Ns3PacketSocketAddress_methods(root_module, root_module['ns3::PacketSocketAddress'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   485
    register_Ns3PacketSocketHelper_methods(root_module, root_module['ns3::PacketSocketHelper'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   486
    register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   487
    register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   488
    register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   489
    register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   490
    register_Ns3PbbAddressTlvBlock_methods(root_module, root_module['ns3::PbbAddressTlvBlock'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   491
    register_Ns3PbbTlvBlock_methods(root_module, root_module['ns3::PbbTlvBlock'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   492
    register_Ns3PcapFile_methods(root_module, root_module['ns3::PcapFile'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   493
    register_Ns3PcapHelper_methods(root_module, root_module['ns3::PcapHelper'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   494
    register_Ns3PcapHelperForDevice_methods(root_module, root_module['ns3::PcapHelperForDevice'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   495
    register_Ns3RandomVariable_methods(root_module, root_module['ns3::RandomVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   496
    register_Ns3SeedManager_methods(root_module, root_module['ns3::SeedManager'])
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   497
    register_Ns3SequenceNumber32_methods(root_module, root_module['ns3::SequenceNumber32'])
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
   498
    register_Ns3SequenceNumber16_methods(root_module, root_module['ns3::SequenceNumber16'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   499
    register_Ns3SequentialVariable_methods(root_module, root_module['ns3::SequentialVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   500
    register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   501
    register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   502
    register_Ns3SystemWallClockMs_methods(root_module, root_module['ns3::SystemWallClockMs'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   503
    register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   504
    register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   505
    register_Ns3TriangularVariable_methods(root_module, root_module['ns3::TriangularVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   506
    register_Ns3TypeId_methods(root_module, root_module['ns3::TypeId'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   507
    register_Ns3TypeIdAttributeInformation_methods(root_module, root_module['ns3::TypeId::AttributeInformation'])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   508
    register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   509
    register_Ns3UniformVariable_methods(root_module, root_module['ns3::UniformVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   510
    register_Ns3WeibullVariable_methods(root_module, root_module['ns3::WeibullVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   511
    register_Ns3ZetaVariable_methods(root_module, root_module['ns3::ZetaVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   512
    register_Ns3ZipfVariable_methods(root_module, root_module['ns3::ZipfVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   513
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   514
    register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   515
    register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   516
    register_Ns3ConstantVariable_methods(root_module, root_module['ns3::ConstantVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   517
    register_Ns3DeterministicVariable_methods(root_module, root_module['ns3::DeterministicVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   518
    register_Ns3EmpiricalVariable_methods(root_module, root_module['ns3::EmpiricalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   519
    register_Ns3ErlangVariable_methods(root_module, root_module['ns3::ErlangVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   520
    register_Ns3ExponentialVariable_methods(root_module, root_module['ns3::ExponentialVariable'])
6955
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
   521
    register_Ns3FlowIdTag_methods(root_module, root_module['ns3::FlowIdTag'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   522
    register_Ns3GammaVariable_methods(root_module, root_module['ns3::GammaVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   523
    register_Ns3Header_methods(root_module, root_module['ns3::Header'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   524
    register_Ns3IntEmpiricalVariable_methods(root_module, root_module['ns3::IntEmpiricalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   525
    register_Ns3LlcSnapHeader_methods(root_module, root_module['ns3::LlcSnapHeader'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   526
    register_Ns3LogNormalVariable_methods(root_module, root_module['ns3::LogNormalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   527
    register_Ns3NormalVariable_methods(root_module, root_module['ns3::NormalVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   528
    register_Ns3Object_methods(root_module, root_module['ns3::Object'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   529
    register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   530
    register_Ns3PacketBurst_methods(root_module, root_module['ns3::PacketBurst'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   531
    register_Ns3ParetoVariable_methods(root_module, root_module['ns3::ParetoVariable'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   532
    register_Ns3PcapFileWrapper_methods(root_module, root_module['ns3::PcapFileWrapper'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   533
    register_Ns3Queue_methods(root_module, root_module['ns3::Queue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   534
    register_Ns3RadiotapHeader_methods(root_module, root_module['ns3::RadiotapHeader'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   535
    register_Ns3RedQueue_methods(root_module, root_module['ns3::RedQueue'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   536
    register_Ns3RedQueueStats_methods(root_module, root_module['ns3::RedQueue::Stats'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   537
    register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   538
    register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   539
    register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   540
    register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   541
    register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   542
    register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   543
    register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   544
    register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   545
    register_Ns3SimpleRefCount__Ns3PbbAddressBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbAddressBlock__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   546
    register_Ns3SimpleRefCount__Ns3PbbMessage_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbMessage__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   547
    register_Ns3SimpleRefCount__Ns3PbbPacket_Ns3Header_Ns3DefaultDeleter__lt__ns3PbbPacket__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   548
    register_Ns3SimpleRefCount__Ns3PbbTlv_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbTlv__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   549
    register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   550
    register_Ns3Socket_methods(root_module, root_module['ns3::Socket'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   551
    register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   552
    register_Ns3SocketFactory_methods(root_module, root_module['ns3::SocketFactory'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   553
    register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   554
    register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
   555
    register_Ns3Time_methods(root_module, root_module['ns3::Time'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   556
    register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   557
    register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   558
    register_Ns3Application_methods(root_module, root_module['ns3::Application'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   559
    register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   560
    register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   561
    register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   562
    register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   563
    register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   564
    register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   565
    register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   566
    register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   567
    register_Ns3Channel_methods(root_module, root_module['ns3::Channel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   568
    register_Ns3DataRateChecker_methods(root_module, root_module['ns3::DataRateChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   569
    register_Ns3DataRateValue_methods(root_module, root_module['ns3::DataRateValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   570
    register_Ns3DropTailQueue_methods(root_module, root_module['ns3::DropTailQueue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   571
    register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   572
    register_Ns3ErrorModel_methods(root_module, root_module['ns3::ErrorModel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   573
    register_Ns3EthernetHeader_methods(root_module, root_module['ns3::EthernetHeader'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   574
    register_Ns3EthernetTrailer_methods(root_module, root_module['ns3::EthernetTrailer'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   575
    register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   576
    register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   577
    register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   578
    register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   579
    register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   580
    register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   581
    register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   582
    register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   583
    register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   584
    register_Ns3ListErrorModel_methods(root_module, root_module['ns3::ListErrorModel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   585
    register_Ns3Mac48AddressChecker_methods(root_module, root_module['ns3::Mac48AddressChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   586
    register_Ns3Mac48AddressValue_methods(root_module, root_module['ns3::Mac48AddressValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   587
    register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   588
    register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   589
    register_Ns3Node_methods(root_module, root_module['ns3::Node'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   590
    register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   591
    register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   592
    register_Ns3OutputStreamWrapper_methods(root_module, root_module['ns3::OutputStreamWrapper'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   593
    register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   594
    register_Ns3PacketSocket_methods(root_module, root_module['ns3::PacketSocket'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   595
    register_Ns3PacketSocketFactory_methods(root_module, root_module['ns3::PacketSocketFactory'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   596
    register_Ns3PbbAddressBlock_methods(root_module, root_module['ns3::PbbAddressBlock'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   597
    register_Ns3PbbAddressBlockIpv4_methods(root_module, root_module['ns3::PbbAddressBlockIpv4'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   598
    register_Ns3PbbAddressBlockIpv6_methods(root_module, root_module['ns3::PbbAddressBlockIpv6'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   599
    register_Ns3PbbMessage_methods(root_module, root_module['ns3::PbbMessage'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   600
    register_Ns3PbbMessageIpv4_methods(root_module, root_module['ns3::PbbMessageIpv4'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   601
    register_Ns3PbbMessageIpv6_methods(root_module, root_module['ns3::PbbMessageIpv6'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   602
    register_Ns3PbbPacket_methods(root_module, root_module['ns3::PbbPacket'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   603
    register_Ns3PbbTlv_methods(root_module, root_module['ns3::PbbTlv'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   604
    register_Ns3RandomVariableChecker_methods(root_module, root_module['ns3::RandomVariableChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   605
    register_Ns3RandomVariableValue_methods(root_module, root_module['ns3::RandomVariableValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   606
    register_Ns3RateErrorModel_methods(root_module, root_module['ns3::RateErrorModel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   607
    register_Ns3ReceiveListErrorModel_methods(root_module, root_module['ns3::ReceiveListErrorModel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   608
    register_Ns3SimpleChannel_methods(root_module, root_module['ns3::SimpleChannel'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   609
    register_Ns3SimpleNetDevice_methods(root_module, root_module['ns3::SimpleNetDevice'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   610
    register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   611
    register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   612
    register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   613
    register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   614
    register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   615
    register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   616
    register_Ns3PbbAddressTlv_methods(root_module, root_module['ns3::PbbAddressTlv'])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   617
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   618
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   619
def register_Ns3Address_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   620
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   621
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   622
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   623
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   624
    ## address.h (module 'network'): ns3::Address::Address() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   625
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   626
    ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   627
    cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   628
    ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   629
    cls.add_constructor([param('ns3::Address const &', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   630
    ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   631
    cls.add_method('CheckCompatible', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   632
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   633
                   [param('uint8_t', 'type'), param('uint8_t', 'len')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   634
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   635
    ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   636
    cls.add_method('CopyAllFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   637
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   638
                   [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   639
    ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   640
    cls.add_method('CopyAllTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   641
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   642
                   [param('uint8_t *', 'buffer'), param('uint8_t', 'len')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   643
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   644
    ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   645
    cls.add_method('CopyFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   646
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   647
                   [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   648
    ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   649
    cls.add_method('CopyTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   650
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   651
                   [param('uint8_t *', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   652
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   653
    ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   654
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   655
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   656
                   [param('ns3::TagBuffer', 'buffer')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   657
    ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   658
    cls.add_method('GetLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   659
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   660
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   661
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   662
    ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   663
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   664
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   665
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   666
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   667
    ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   668
    cls.add_method('IsInvalid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   669
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   670
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   671
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   672
    ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   673
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   674
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   675
                   [param('uint8_t', 'type')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   676
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   677
    ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   678
    cls.add_method('Register', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   679
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   680
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   681
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   682
    ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   683
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   684
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   685
                   [param('ns3::TagBuffer', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   686
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   687
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   688
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   689
def register_Ns3ApplicationContainer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   690
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   691
    cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   692
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   693
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   694
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   695
    cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   696
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   697
    cls.add_constructor([param('std::string', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   698
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   699
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   700
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   701
                   [param('ns3::ApplicationContainer', 'other')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   702
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   703
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   704
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   705
                   [param('ns3::Ptr< ns3::Application >', 'application')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   706
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   707
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   708
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   709
                   [param('std::string', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   710
    ## application-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Application>*,std::vector<ns3::Ptr<ns3::Application>, std::allocator<ns3::Ptr<ns3::Application> > > > ns3::ApplicationContainer::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   711
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   712
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   713
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   714
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   715
    ## application-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Application>*,std::vector<ns3::Ptr<ns3::Application>, std::allocator<ns3::Ptr<ns3::Application> > > > ns3::ApplicationContainer::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   716
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   717
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   718
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   719
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   720
    ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   721
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   722
                   'ns3::Ptr< ns3::Application >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   723
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   724
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   725
    ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   726
    cls.add_method('GetN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   727
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   728
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   729
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   730
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   731
    cls.add_method('Start', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   732
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   733
                   [param('ns3::Time', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   734
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   735
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   736
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   737
                   [param('ns3::Time', 'stop')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   738
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   739
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   740
def register_Ns3AsciiTraceHelper_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   741
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper(ns3::AsciiTraceHelper const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   742
    cls.add_constructor([param('ns3::AsciiTraceHelper const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   743
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   744
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   745
    ## trace-helper.h (module 'network'): ns3::Ptr<ns3::OutputStreamWrapper> ns3::AsciiTraceHelper::CreateFileStream(std::string filename, std::_Ios_Openmode filemode=std::ios_base::out) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   746
    cls.add_method('CreateFileStream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   747
                   'ns3::Ptr< ns3::OutputStreamWrapper >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   748
                   [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode', default_value='std::ios_base::out')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   749
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   750
    cls.add_method('DefaultDequeueSinkWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   751
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   752
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   753
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   754
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   755
    cls.add_method('DefaultDequeueSinkWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   756
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   757
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   758
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   759
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   760
    cls.add_method('DefaultDropSinkWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   761
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   762
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   763
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   764
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   765
    cls.add_method('DefaultDropSinkWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   766
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   767
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   768
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   769
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   770
    cls.add_method('DefaultEnqueueSinkWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   771
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   772
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   773
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   775
    cls.add_method('DefaultEnqueueSinkWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   776
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   777
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   778
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   779
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   780
    cls.add_method('DefaultReceiveSinkWithContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   781
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   782
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   783
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   784
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   785
    cls.add_method('DefaultReceiveSinkWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   786
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   787
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   788
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   789
    ## trace-helper.h (module 'network'): std::string ns3::AsciiTraceHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   790
    cls.add_method('GetFilenameFromDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   791
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   792
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   793
    ## trace-helper.h (module 'network'): std::string ns3::AsciiTraceHelper::GetFilenameFromInterfacePair(std::string prefix, ns3::Ptr<ns3::Object> object, uint32_t interface, bool useObjectNames=true) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   794
    cls.add_method('GetFilenameFromInterfacePair', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   795
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   796
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   797
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   798
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   799
def register_Ns3AsciiTraceHelperForDevice_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   800
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice(ns3::AsciiTraceHelperForDevice const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   801
    cls.add_constructor([param('ns3::AsciiTraceHelperForDevice const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   802
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   803
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   804
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   805
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   806
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   807
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   808
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::Ptr<ns3::NetDevice> nd) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   809
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   810
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   811
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::Ptr< ns3::NetDevice >', 'nd')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   812
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, std::string ndName, bool explicitFilename=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   813
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   814
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   815
                   [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'explicitFilename', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   816
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string ndName) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   817
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   818
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   819
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'ndName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   820
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NetDeviceContainer d) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   821
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   822
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   823
                   [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   824
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NetDeviceContainer d) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   825
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   826
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   827
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NetDeviceContainer', 'd')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   828
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NodeContainer n) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   829
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   830
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   831
                   [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   832
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NodeContainer n) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   833
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   834
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   835
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NodeContainer', 'n')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   836
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool explicitFilename) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   837
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   838
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   839
                   [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'explicitFilename')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   840
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, uint32_t nodeid, uint32_t deviceid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   841
    cls.add_method('EnableAscii', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   842
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   843
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   844
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(std::string prefix) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   845
    cls.add_method('EnableAsciiAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   846
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   847
                   [param('std::string', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   848
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(ns3::Ptr<ns3::OutputStreamWrapper> stream) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   849
    cls.add_method('EnableAsciiAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   850
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   851
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   852
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiInternal(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   853
    cls.add_method('EnableAsciiInternal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   854
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   855
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   856
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   857
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   858
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   859
def register_Ns3AttributeConstructionList_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   860
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   861
    cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   862
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   863
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   864
    ## attribute-construction-list.h (module 'core'): void ns3::AttributeConstructionList::Add(std::string name, ns3::Ptr<ns3::AttributeChecker const> checker, ns3::Ptr<ns3::AttributeValue> value) [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   865
    cls.add_method('Add', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   866
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   867
                   [param('std::string', 'name'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker'), param('ns3::Ptr< ns3::AttributeValue >', 'value')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   868
    ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::Begin() const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   869
    cls.add_method('Begin', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   870
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   871
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   872
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   873
    ## attribute-construction-list.h (module 'core'): std::_List_const_iterator<ns3::AttributeConstructionList::Item> ns3::AttributeConstructionList::End() const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   874
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   875
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   876
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   877
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   878
    ## attribute-construction-list.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeConstructionList::Find(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   879
    cls.add_method('Find', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   880
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   881
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   882
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   883
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   884
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   885
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   886
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item() [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   887
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   888
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::Item(ns3::AttributeConstructionList::Item const & arg0) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   889
    cls.add_constructor([param('ns3::AttributeConstructionList::Item const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   890
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::checker [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   891
    cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   892
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::name [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   893
    cls.add_instance_attribute('name', 'std::string', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   894
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::Item::value [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   895
    cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   896
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   897
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   898
def register_Ns3Buffer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   899
    ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   900
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   901
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   902
    cls.add_constructor([param('uint32_t', 'dataSize')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   903
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   904
    cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   905
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   906
    cls.add_constructor([param('ns3::Buffer const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   907
    ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   908
    cls.add_method('AddAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   909
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   910
                   [param('uint32_t', 'end')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   911
    ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   912
    cls.add_method('AddAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   913
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   914
                   [param('ns3::Buffer const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   915
    ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   916
    cls.add_method('AddAtStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   917
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   918
                   [param('uint32_t', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   919
    ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   920
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   921
                   'ns3::Buffer::Iterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   922
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   923
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   924
    ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   925
    cls.add_method('CopyData', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   926
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   927
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   928
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   929
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   930
    cls.add_method('CopyData', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   931
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   932
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   933
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   934
    ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   935
    cls.add_method('CreateFragment', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   936
                   'ns3::Buffer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   937
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   938
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   939
    ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   940
    cls.add_method('CreateFullCopy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   941
                   'ns3::Buffer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   942
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   943
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   944
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   945
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   946
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   947
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   948
    ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   949
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   950
                   'ns3::Buffer::Iterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   951
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   952
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   953
    ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   954
    cls.add_method('GetCurrentEndOffset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   955
                   'int32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   956
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   957
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   958
    ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   959
    cls.add_method('GetCurrentStartOffset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   960
                   'int32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   961
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   962
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   963
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   964
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   965
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   966
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   967
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   968
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   969
    cls.add_method('GetSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   970
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   971
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   972
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   973
    ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   974
    cls.add_method('PeekData', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   975
                   'uint8_t const *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   976
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   977
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   978
    ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   979
    cls.add_method('RemoveAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   980
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   981
                   [param('uint32_t', 'end')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   982
    ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   983
    cls.add_method('RemoveAtStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   984
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   985
                   [param('uint32_t', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   986
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   987
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   988
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   989
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   990
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   991
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   992
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   993
def register_Ns3BufferIterator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   994
    ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   995
    cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   996
    ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   997
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   998
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   999
    cls.add_method('CalculateIpChecksum', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1000
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1001
                   [param('uint16_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1002
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1003
    cls.add_method('CalculateIpChecksum', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1004
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1005
                   [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1006
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1007
    cls.add_method('GetDistanceFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1008
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1009
                   [param('ns3::Buffer::Iterator const &', 'o')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1010
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1011
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1012
    cls.add_method('GetSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1013
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1014
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1015
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1016
    ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1017
    cls.add_method('IsEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1018
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1019
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1020
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1021
    ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1022
    cls.add_method('IsStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1023
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1024
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1025
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1026
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1027
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1028
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1029
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1030
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1031
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1032
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1033
                   [param('uint32_t', 'delta')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1034
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1035
    cls.add_method('Prev', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1036
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1037
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1038
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1039
    cls.add_method('Prev', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1040
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1041
                   [param('uint32_t', 'delta')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1042
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1043
    cls.add_method('Read', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1044
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1045
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1046
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1047
    cls.add_method('ReadLsbtohU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1048
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1049
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1050
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1051
    cls.add_method('ReadLsbtohU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1052
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1053
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1054
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1055
    cls.add_method('ReadLsbtohU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1056
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1057
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1058
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1059
    cls.add_method('ReadNtohU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1060
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1061
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1062
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1063
    cls.add_method('ReadNtohU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1064
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1065
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1066
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1067
    cls.add_method('ReadNtohU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1068
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1069
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1070
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1071
    cls.add_method('ReadU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1072
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1073
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1074
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1075
    cls.add_method('ReadU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1076
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1077
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1078
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1079
    cls.add_method('ReadU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1080
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1081
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1082
    ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1083
    cls.add_method('ReadU8', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1084
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1085
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1086
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1087
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1088
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1089
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1090
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1091
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1092
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1093
                   [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1094
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1095
    cls.add_method('WriteHtolsbU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1096
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1097
                   [param('uint16_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1098
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1099
    cls.add_method('WriteHtolsbU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1100
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1101
                   [param('uint32_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1102
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1103
    cls.add_method('WriteHtolsbU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1104
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1105
                   [param('uint64_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1106
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1107
    cls.add_method('WriteHtonU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1108
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1109
                   [param('uint16_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1110
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1111
    cls.add_method('WriteHtonU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1112
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1113
                   [param('uint32_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1114
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1115
    cls.add_method('WriteHtonU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1116
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1117
                   [param('uint64_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1118
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1119
    cls.add_method('WriteU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1120
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1121
                   [param('uint16_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1122
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1123
    cls.add_method('WriteU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1124
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1125
                   [param('uint32_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1126
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1127
    cls.add_method('WriteU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1128
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1129
                   [param('uint64_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1130
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1131
    cls.add_method('WriteU8', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1132
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1133
                   [param('uint8_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1134
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1135
    cls.add_method('WriteU8', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1136
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1137
                   [param('uint8_t', 'data'), param('uint32_t', 'len')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1138
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1139
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1140
def register_Ns3ByteTagIterator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1141
    ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1142
    cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1143
    ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1144
    cls.add_method('HasNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1145
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1146
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1147
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1148
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1149
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1150
                   'ns3::ByteTagIterator::Item', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1151
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1152
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1153
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1154
def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1155
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1156
    cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1157
    ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1158
    cls.add_method('GetEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1159
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1160
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1161
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1162
    ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1163
    cls.add_method('GetStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1164
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1165
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1166
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1167
    ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1168
    cls.add_method('GetTag', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1169
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1170
                   [param('ns3::Tag &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1171
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1172
    ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1173
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1174
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1175
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1176
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1177
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1178
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1179
def register_Ns3ByteTagList_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1180
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1181
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1182
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1183
    cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1184
    ## byte-tag-list.h (module 'network'): ns3::TagBuffer ns3::ByteTagList::Add(ns3::TypeId tid, uint32_t bufferSize, int32_t start, int32_t end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1185
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1186
                   'ns3::TagBuffer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1187
                   [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1188
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1189
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1190
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1191
                   [param('ns3::ByteTagList const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1192
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1193
    cls.add_method('AddAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1194
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1195
                   [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1196
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1197
    cls.add_method('AddAtStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1198
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1199
                   [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1200
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1201
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1202
                   'ns3::ByteTagList::Iterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1203
                   [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1204
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1205
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1206
    cls.add_method('RemoveAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1207
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1208
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1209
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1210
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1211
def register_Ns3ByteTagListIterator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1212
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1213
    cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1214
    ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1215
    cls.add_method('GetOffsetStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1216
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1217
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1218
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1219
    ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1220
    cls.add_method('HasNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1221
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1222
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1223
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1224
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1225
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1226
                   'ns3::ByteTagList::Iterator::Item', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1227
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1228
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1229
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1230
def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1231
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1232
    cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1233
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1234
    cls.add_constructor([param('ns3::TagBuffer', 'buf')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1235
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1236
    cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1237
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1238
    cls.add_instance_attribute('end', 'int32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1239
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1240
    cls.add_instance_attribute('size', 'uint32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1241
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1242
    cls.add_instance_attribute('start', 'int32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1243
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1244
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1245
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1246
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1247
def register_Ns3CallbackBase_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1248
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1249
    cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1250
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1251
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1252
    ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1253
    cls.add_method('GetImpl', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1254
                   'ns3::Ptr< ns3::CallbackImplBase >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1255
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1256
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1257
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1258
    cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1259
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1260
    ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1261
    cls.add_method('Demangle', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1262
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1263
                   [param('std::string const &', 'mangled')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1264
                   is_static=True, visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1265
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1266
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1267
def register_Ns3ChannelList_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1268
    ## channel-list.h (module 'network'): ns3::ChannelList::ChannelList() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1269
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1270
    ## channel-list.h (module 'network'): ns3::ChannelList::ChannelList(ns3::ChannelList const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1271
    cls.add_constructor([param('ns3::ChannelList const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1272
    ## channel-list.h (module 'network'): static uint32_t ns3::ChannelList::Add(ns3::Ptr<ns3::Channel> channel) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1273
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1274
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1275
                   [param('ns3::Ptr< ns3::Channel >', 'channel')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1276
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1277
    ## channel-list.h (module 'network'): static __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Channel>*,std::vector<ns3::Ptr<ns3::Channel>, std::allocator<ns3::Ptr<ns3::Channel> > > > ns3::ChannelList::Begin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1278
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1279
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Channel > const, std::vector< ns3::Ptr< ns3::Channel > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1280
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1281
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1282
    ## channel-list.h (module 'network'): static __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Channel>*,std::vector<ns3::Ptr<ns3::Channel>, std::allocator<ns3::Ptr<ns3::Channel> > > > ns3::ChannelList::End() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1283
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1284
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Channel > const, std::vector< ns3::Ptr< ns3::Channel > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1285
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1286
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1287
    ## channel-list.h (module 'network'): static ns3::Ptr<ns3::Channel> ns3::ChannelList::GetChannel(uint32_t n) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1288
    cls.add_method('GetChannel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1289
                   'ns3::Ptr< ns3::Channel >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1290
                   [param('uint32_t', 'n')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1291
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1292
    ## channel-list.h (module 'network'): static uint32_t ns3::ChannelList::GetNChannels() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1293
    cls.add_method('GetNChannels', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1294
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1295
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1296
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1297
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1298
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1299
def register_Ns3DataRate_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1300
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1301
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1302
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1303
    cls.add_binary_comparison_operator('<=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1304
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1305
    cls.add_binary_comparison_operator('>')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1306
    cls.add_binary_comparison_operator('>=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1307
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate(ns3::DataRate const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1308
    cls.add_constructor([param('ns3::DataRate const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1309
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1310
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1311
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate(uint64_t bps) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1312
    cls.add_constructor([param('uint64_t', 'bps')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1313
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate(std::string rate) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1314
    cls.add_constructor([param('std::string', 'rate')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1315
    ## data-rate.h (module 'network'): double ns3::DataRate::CalculateTxTime(uint32_t bytes) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1316
    cls.add_method('CalculateTxTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1317
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1318
                   [param('uint32_t', 'bytes')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1319
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1320
    ## data-rate.h (module 'network'): uint64_t ns3::DataRate::GetBitRate() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1321
    cls.add_method('GetBitRate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1322
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1323
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1324
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1325
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1326
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1327
def register_Ns3EventId_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1328
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1329
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1330
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1331
    cls.add_constructor([param('ns3::EventId const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1332
    ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1333
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1334
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1335
    cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1336
    ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1337
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1338
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1339
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1340
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1341
    cls.add_method('GetContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1342
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1343
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1344
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1345
    ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1346
    cls.add_method('GetTs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1347
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1348
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1349
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1350
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1351
    cls.add_method('GetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1352
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1353
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1354
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1355
    ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1356
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1357
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1358
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1359
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1360
    ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1361
    cls.add_method('IsRunning', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1362
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1363
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1364
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1365
    ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1366
    cls.add_method('PeekEventImpl', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1367
                   'ns3::EventImpl *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1368
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1369
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1370
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1371
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1372
def register_Ns3Inet6SocketAddress_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1373
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Inet6SocketAddress const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1374
    cls.add_constructor([param('ns3::Inet6SocketAddress const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1375
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Ipv6Address ipv6, uint16_t port) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1376
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6'), param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1377
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Ipv6Address ipv6) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1378
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1379
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(uint16_t port) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1380
    cls.add_constructor([param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1381
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(char const * ipv6, uint16_t port) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1382
    cls.add_constructor([param('char const *', 'ipv6'), param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1383
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(char const * ipv6) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1384
    cls.add_constructor([param('char const *', 'ipv6')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1385
    ## inet6-socket-address.h (module 'network'): static ns3::Inet6SocketAddress ns3::Inet6SocketAddress::ConvertFrom(ns3::Address const & addr) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1386
    cls.add_method('ConvertFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1387
                   'ns3::Inet6SocketAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1388
                   [param('ns3::Address const &', 'addr')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1389
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1390
    ## inet6-socket-address.h (module 'network'): ns3::Ipv6Address ns3::Inet6SocketAddress::GetIpv6() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1391
    cls.add_method('GetIpv6', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1392
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1393
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1394
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1395
    ## inet6-socket-address.h (module 'network'): uint16_t ns3::Inet6SocketAddress::GetPort() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1396
    cls.add_method('GetPort', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1397
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1398
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1399
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1400
    ## inet6-socket-address.h (module 'network'): static bool ns3::Inet6SocketAddress::IsMatchingType(ns3::Address const & addr) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1401
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1402
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1403
                   [param('ns3::Address const &', 'addr')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1404
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1405
    ## inet6-socket-address.h (module 'network'): void ns3::Inet6SocketAddress::SetIpv6(ns3::Ipv6Address ipv6) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1406
    cls.add_method('SetIpv6', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1407
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1408
                   [param('ns3::Ipv6Address', 'ipv6')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1409
    ## inet6-socket-address.h (module 'network'): void ns3::Inet6SocketAddress::SetPort(uint16_t port) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1410
    cls.add_method('SetPort', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1411
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1412
                   [param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1413
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1414
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1415
def register_Ns3InetSocketAddress_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1416
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::InetSocketAddress const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1417
    cls.add_constructor([param('ns3::InetSocketAddress const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1418
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::Ipv4Address ipv4, uint16_t port) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1419
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4'), param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1420
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::Ipv4Address ipv4) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1421
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1422
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(uint16_t port) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1423
    cls.add_constructor([param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1424
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(char const * ipv4, uint16_t port) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1425
    cls.add_constructor([param('char const *', 'ipv4'), param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1426
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(char const * ipv4) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1427
    cls.add_constructor([param('char const *', 'ipv4')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1428
    ## inet-socket-address.h (module 'network'): static ns3::InetSocketAddress ns3::InetSocketAddress::ConvertFrom(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1429
    cls.add_method('ConvertFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1430
                   'ns3::InetSocketAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1431
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1432
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1433
    ## inet-socket-address.h (module 'network'): ns3::Ipv4Address ns3::InetSocketAddress::GetIpv4() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1434
    cls.add_method('GetIpv4', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1435
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1436
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1437
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1438
    ## inet-socket-address.h (module 'network'): uint16_t ns3::InetSocketAddress::GetPort() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1439
    cls.add_method('GetPort', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1440
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1441
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1442
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1443
    ## inet-socket-address.h (module 'network'): static bool ns3::InetSocketAddress::IsMatchingType(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1444
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1445
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1446
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1447
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1448
    ## inet-socket-address.h (module 'network'): void ns3::InetSocketAddress::SetIpv4(ns3::Ipv4Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1449
    cls.add_method('SetIpv4', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1450
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1451
                   [param('ns3::Ipv4Address', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1452
    ## inet-socket-address.h (module 'network'): void ns3::InetSocketAddress::SetPort(uint16_t port) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1453
    cls.add_method('SetPort', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1454
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1455
                   [param('uint16_t', 'port')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1456
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1457
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1458
def register_Ns3Ipv4Address_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1459
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1460
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1461
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1462
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1463
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1464
    cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1465
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1466
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1467
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1468
    cls.add_constructor([param('uint32_t', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1469
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1470
    cls.add_constructor([param('char const *', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1471
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1472
    cls.add_method('CombineMask', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1473
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1474
                   [param('ns3::Ipv4Mask const &', 'mask')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1475
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1476
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1477
    cls.add_method('ConvertFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1478
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1479
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1480
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1481
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1482
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1483
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1484
                   [param('uint8_t const *', 'buf')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1485
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1486
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1487
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1488
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1489
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1490
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1491
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1492
    cls.add_method('GetAny', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1493
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1494
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1495
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1496
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1497
    cls.add_method('GetBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1498
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1499
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1500
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1501
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1502
    cls.add_method('GetLoopback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1503
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1504
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1505
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1506
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1507
    cls.add_method('GetSubnetDirectedBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1508
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1509
                   [param('ns3::Ipv4Mask const &', 'mask')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1510
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1511
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1512
    cls.add_method('GetZero', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1513
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1514
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1515
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1516
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1517
    cls.add_method('IsBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1518
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1519
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1520
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1521
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1522
    cls.add_method('IsEqual', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1523
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1524
                   [param('ns3::Ipv4Address const &', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1525
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1526
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1527
    cls.add_method('IsLocalMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1528
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1529
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1530
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1531
    ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1532
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1533
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1534
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1535
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1536
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1537
    cls.add_method('IsMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1538
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1539
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1540
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1541
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1542
    cls.add_method('IsSubnetDirectedBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1543
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1544
                   [param('ns3::Ipv4Mask const &', 'mask')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1545
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1546
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1547
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1548
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1549
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1550
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1551
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1552
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1553
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1554
                   [param('uint8_t *', 'buf')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1555
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1556
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1557
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1558
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1559
                   [param('uint32_t', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1560
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1561
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1562
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1563
                   [param('char const *', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1564
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1565
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1566
def register_Ns3Ipv4Mask_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1567
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1568
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1569
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1570
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1571
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1572
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1573
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1574
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1575
    cls.add_constructor([param('uint32_t', 'mask')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1576
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1577
    cls.add_constructor([param('char const *', 'mask')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1578
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1579
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1580
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1581
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1582
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1583
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1584
    cls.add_method('GetInverse', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1585
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1586
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1587
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1588
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1589
    cls.add_method('GetLoopback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1590
                   'ns3::Ipv4Mask', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1591
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1592
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1593
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1594
    cls.add_method('GetOnes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1595
                   'ns3::Ipv4Mask', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1596
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1597
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1598
    ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1599
    cls.add_method('GetPrefixLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1600
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1601
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1602
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1603
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1604
    cls.add_method('GetZero', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1605
                   'ns3::Ipv4Mask', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1606
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1607
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1608
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1609
    cls.add_method('IsEqual', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1610
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1611
                   [param('ns3::Ipv4Mask', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1612
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1613
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1614
    cls.add_method('IsMatch', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1615
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1616
                   [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1617
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1618
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1619
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1620
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1621
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1622
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1623
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1624
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1625
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1626
                   [param('uint32_t', 'mask')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1627
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1628
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1629
def register_Ns3Ipv6Address_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1630
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1631
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1632
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1633
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1634
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1635
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1636
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1637
    cls.add_constructor([param('char const *', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1638
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1639
    cls.add_constructor([param('uint8_t *', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1640
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1641
    cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1642
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1643
    cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1644
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1645
    cls.add_method('CombinePrefix', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1646
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1647
                   [param('ns3::Ipv6Prefix const &', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1648
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1649
    cls.add_method('ConvertFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1650
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1651
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1652
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1653
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1654
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1655
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1656
                   [param('uint8_t const *', 'buf')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1657
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1658
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1659
    cls.add_method('GetAllHostsMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1660
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1661
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1662
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1663
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1664
    cls.add_method('GetAllNodesMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1665
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1666
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1667
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1668
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1669
    cls.add_method('GetAllRoutersMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1670
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1671
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1672
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1673
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1674
    cls.add_method('GetAny', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1675
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1676
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1677
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1678
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1679
    cls.add_method('GetBytes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1680
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1681
                   [param('uint8_t *', 'buf')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1682
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1683
    ## ipv6-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv6Address::GetIpv4MappedAddress() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1684
    cls.add_method('GetIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1685
                   'ns3::Ipv4Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1686
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1687
                   is_const=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1688
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1689
    cls.add_method('GetLoopback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1690
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1691
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1692
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1693
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1694
    cls.add_method('GetOnes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1695
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1696
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1697
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1698
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1699
    cls.add_method('GetZero', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1700
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1701
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1702
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1703
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1704
    cls.add_method('IsAllHostsMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1705
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1706
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1707
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1708
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1709
    cls.add_method('IsAllNodesMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1710
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1711
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1712
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1713
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1714
    cls.add_method('IsAllRoutersMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1715
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1716
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1717
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1718
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1719
    cls.add_method('IsAny', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1720
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1721
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1722
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1723
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1724
    cls.add_method('IsEqual', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1725
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1726
                   [param('ns3::Ipv6Address const &', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1727
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1728
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1729
    cls.add_method('IsIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1730
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1731
                   [])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1732
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1733
    cls.add_method('IsLinkLocal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1734
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1735
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1736
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1737
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1738
    cls.add_method('IsLinkLocalMulticast', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1739
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1740
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1741
                   is_const=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1742
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1743
    cls.add_method('IsLocalhost', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1744
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1745
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1746
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1747
    ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1748
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1749
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1750
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1751
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1752
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1753
    cls.add_method('IsMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1754
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1755
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1756
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1757
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1758
    cls.add_method('IsSolicitedMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1759
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1760
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1761
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1762
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1763
    cls.add_method('MakeAutoconfiguredAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1764
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1765
                   [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1766
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1767
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1768
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1769
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1770
                   [param('ns3::Mac48Address', 'mac')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1771
                   is_static=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1772
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeIpv4MappedAddress(ns3::Ipv4Address addr) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1773
    cls.add_method('MakeIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1774
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1775
                   [param('ns3::Ipv4Address', 'addr')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  1776
                   is_static=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1777
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1778
    cls.add_method('MakeSolicitedAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1779
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1780
                   [param('ns3::Ipv6Address', 'addr')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1781
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1782
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1783
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1784
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1785
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1786
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1787
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1788
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1789
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1790
                   [param('uint8_t *', 'buf')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1791
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1792
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1793
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1794
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1795
                   [param('char const *', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1796
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1797
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1798
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1799
                   [param('uint8_t *', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1800
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1801
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1802
def register_Ns3Ipv6Prefix_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1803
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1804
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1805
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1806
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1807
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1808
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1809
    cls.add_constructor([param('uint8_t *', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1810
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1811
    cls.add_constructor([param('char const *', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1812
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1813
    cls.add_constructor([param('uint8_t', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1814
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1815
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1816
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1817
    cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1818
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1819
    cls.add_method('GetBytes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1820
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1821
                   [param('uint8_t *', 'buf')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1822
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1823
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1824
    cls.add_method('GetLoopback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1825
                   'ns3::Ipv6Prefix', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1826
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1827
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1828
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1829
    cls.add_method('GetOnes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1830
                   'ns3::Ipv6Prefix', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1831
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1832
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1833
    ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1834
    cls.add_method('GetPrefixLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1835
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1836
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1837
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1838
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1839
    cls.add_method('GetZero', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1840
                   'ns3::Ipv6Prefix', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1841
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1842
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1843
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1844
    cls.add_method('IsEqual', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1845
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1846
                   [param('ns3::Ipv6Prefix const &', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1847
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1848
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1849
    cls.add_method('IsMatch', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1850
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1851
                   [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1852
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1853
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1854
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1855
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1856
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1857
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1858
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1859
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1860
def register_Ns3Mac48Address_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1861
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1862
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1863
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1864
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1865
    ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address(ns3::Mac48Address const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1866
    cls.add_constructor([param('ns3::Mac48Address const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1867
    ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1868
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1869
    ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address(char const * str) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1870
    cls.add_constructor([param('char const *', 'str')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1871
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::Allocate() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1872
    cls.add_method('Allocate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1873
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1874
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1875
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1876
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::ConvertFrom(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1877
    cls.add_method('ConvertFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1878
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1879
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1880
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1881
    ## mac48-address.h (module 'network'): void ns3::Mac48Address::CopyFrom(uint8_t const * buffer) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1882
    cls.add_method('CopyFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1883
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1884
                   [param('uint8_t const *', 'buffer')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1885
    ## mac48-address.h (module 'network'): void ns3::Mac48Address::CopyTo(uint8_t * buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1886
    cls.add_method('CopyTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1887
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1888
                   [param('uint8_t *', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1889
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1890
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetBroadcast() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1891
    cls.add_method('GetBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1892
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1893
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1894
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1895
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast(ns3::Ipv4Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1896
    cls.add_method('GetMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1897
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1898
                   [param('ns3::Ipv4Address', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1899
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1900
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast(ns3::Ipv6Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1901
    cls.add_method('GetMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1902
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1903
                   [param('ns3::Ipv6Address', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1904
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1905
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast6Prefix() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1906
    cls.add_method('GetMulticast6Prefix', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1907
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1908
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1909
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1910
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticastPrefix() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1911
    cls.add_method('GetMulticastPrefix', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1912
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1913
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1914
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1915
    ## mac48-address.h (module 'network'): bool ns3::Mac48Address::IsBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1916
    cls.add_method('IsBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1917
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1918
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1919
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1920
    ## mac48-address.h (module 'network'): bool ns3::Mac48Address::IsGroup() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1921
    cls.add_method('IsGroup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1922
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1923
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1924
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1925
    ## mac48-address.h (module 'network'): static bool ns3::Mac48Address::IsMatchingType(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1926
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1927
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1928
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1929
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1930
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1931
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1932
def register_Ns3Mac64Address_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1933
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1934
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1935
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1936
    ## mac64-address.h (module 'network'): ns3::Mac64Address::Mac64Address(ns3::Mac64Address const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1937
    cls.add_constructor([param('ns3::Mac64Address const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1938
    ## mac64-address.h (module 'network'): ns3::Mac64Address::Mac64Address() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1939
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1940
    ## mac64-address.h (module 'network'): ns3::Mac64Address::Mac64Address(char const * str) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1941
    cls.add_constructor([param('char const *', 'str')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1942
    ## mac64-address.h (module 'network'): static ns3::Mac64Address ns3::Mac64Address::Allocate() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1943
    cls.add_method('Allocate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1944
                   'ns3::Mac64Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1945
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1946
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1947
    ## mac64-address.h (module 'network'): static ns3::Mac64Address ns3::Mac64Address::ConvertFrom(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1948
    cls.add_method('ConvertFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1949
                   'ns3::Mac64Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1950
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1951
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1952
    ## mac64-address.h (module 'network'): void ns3::Mac64Address::CopyFrom(uint8_t const * buffer) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1953
    cls.add_method('CopyFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1954
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1955
                   [param('uint8_t const *', 'buffer')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1956
    ## mac64-address.h (module 'network'): void ns3::Mac64Address::CopyTo(uint8_t * buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1957
    cls.add_method('CopyTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1958
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1959
                   [param('uint8_t *', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1960
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1961
    ## mac64-address.h (module 'network'): static bool ns3::Mac64Address::IsMatchingType(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1962
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1963
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1964
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1965
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1966
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1967
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1968
def register_Ns3NetDeviceContainer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1969
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1970
    cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1971
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1972
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1973
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1974
    cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1975
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1976
    cls.add_constructor([param('std::string', 'devName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1977
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1978
    cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1979
    ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1980
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1981
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1982
                   [param('ns3::NetDeviceContainer', 'other')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1983
    ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1984
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1985
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1986
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1987
    ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1988
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1989
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1990
                   [param('std::string', 'deviceName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1991
    ## net-device-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::NetDevice>*,std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > > ns3::NetDeviceContainer::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1992
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1993
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1994
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1995
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1996
    ## net-device-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::NetDevice>*,std::vector<ns3::Ptr<ns3::NetDevice>, std::allocator<ns3::Ptr<ns3::NetDevice> > > > ns3::NetDeviceContainer::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1997
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1998
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1999
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2000
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2001
    ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2002
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2003
                   'ns3::Ptr< ns3::NetDevice >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2004
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2005
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2006
    ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2007
    cls.add_method('GetN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2008
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2009
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2010
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2011
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2012
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2013
def register_Ns3NodeContainer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2014
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2015
    cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2016
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2017
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2018
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2019
    cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2020
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2021
    cls.add_constructor([param('std::string', 'nodeName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2022
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2023
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2024
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2025
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2026
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2027
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2028
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c, ns3::NodeContainer const & d, ns3::NodeContainer const & e) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2029
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd'), param('ns3::NodeContainer const &', 'e')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2030
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2031
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2032
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2033
                   [param('ns3::NodeContainer', 'other')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2034
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2035
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2036
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2037
                   [param('ns3::Ptr< ns3::Node >', 'node')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2038
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2039
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2040
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2041
                   [param('std::string', 'nodeName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2042
    ## node-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2043
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2044
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2045
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2046
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2047
    ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2048
    cls.add_method('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2049
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2050
                   [param('uint32_t', 'n')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2051
    ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2052
    cls.add_method('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2053
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2054
                   [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2055
    ## node-container.h (module 'network'): __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeContainer::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2056
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2057
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2058
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2059
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2060
    ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2061
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2062
                   'ns3::Ptr< ns3::Node >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2063
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2064
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2065
    ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2066
    cls.add_method('GetGlobal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2067
                   'ns3::NodeContainer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2068
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2069
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2070
    ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2071
    cls.add_method('GetN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2072
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2073
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2074
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2075
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2076
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2077
def register_Ns3NodeList_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2078
    ## node-list.h (module 'network'): ns3::NodeList::NodeList() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2079
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2080
    ## node-list.h (module 'network'): ns3::NodeList::NodeList(ns3::NodeList const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2081
    cls.add_constructor([param('ns3::NodeList const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2082
    ## node-list.h (module 'network'): static uint32_t ns3::NodeList::Add(ns3::Ptr<ns3::Node> node) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2083
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2084
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2085
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2086
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2087
    ## node-list.h (module 'network'): static __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeList::Begin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2088
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2089
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2090
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2091
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2092
    ## node-list.h (module 'network'): static __gnu_cxx::__normal_iterator<const ns3::Ptr<ns3::Node>*,std::vector<ns3::Ptr<ns3::Node>, std::allocator<ns3::Ptr<ns3::Node> > > > ns3::NodeList::End() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2093
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2094
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2095
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2096
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2097
    ## node-list.h (module 'network'): static uint32_t ns3::NodeList::GetNNodes() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2098
    cls.add_method('GetNNodes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2099
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2100
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2101
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2102
    ## node-list.h (module 'network'): static ns3::Ptr<ns3::Node> ns3::NodeList::GetNode(uint32_t n) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2103
    cls.add_method('GetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2104
                   'ns3::Ptr< ns3::Node >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2105
                   [param('uint32_t', 'n')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2106
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2107
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2108
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2109
def register_Ns3ObjectBase_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2110
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2111
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2112
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2113
    cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2114
    ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2115
    cls.add_method('GetAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2116
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2117
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2118
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2119
    ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2120
    cls.add_method('GetAttributeFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2121
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2122
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2123
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2124
    ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2125
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2126
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2127
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2128
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2129
    ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2130
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2131
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2132
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2133
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2134
    ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2135
    cls.add_method('SetAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2136
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2137
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2138
    ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2139
    cls.add_method('SetAttributeFailSafe', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2140
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2141
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2142
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2143
    cls.add_method('TraceConnect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2144
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2145
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2146
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2147
    cls.add_method('TraceConnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2148
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2149
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2150
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2151
    cls.add_method('TraceDisconnect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2152
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2153
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2154
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2155
    cls.add_method('TraceDisconnectWithoutContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2156
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2157
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2158
    ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2159
    cls.add_method('ConstructSelf', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2160
                   'void', 
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2161
                   [param('ns3::AttributeConstructionList const &', 'attributes')], 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2162
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2163
    ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2164
    cls.add_method('NotifyConstructionCompleted', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2165
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2166
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2167
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2168
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2169
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2170
def register_Ns3ObjectDeleter_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2171
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2172
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2173
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2174
    cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2175
    ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2176
    cls.add_method('Delete', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2177
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2178
                   [param('ns3::Object *', 'object')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2179
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2180
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2181
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2182
def register_Ns3ObjectFactory_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2183
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2184
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2185
    cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2186
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2187
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2188
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(std::string typeId) [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2189
    cls.add_constructor([param('std::string', 'typeId')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2190
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2191
    cls.add_method('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2192
                   'ns3::Ptr< ns3::Object >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2193
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2194
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2195
    ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2196
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2197
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2198
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2199
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2200
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2201
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2202
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2203
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2204
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2205
    cls.add_method('SetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2206
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2207
                   [param('ns3::TypeId', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2208
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2209
    cls.add_method('SetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2210
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2211
                   [param('char const *', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2212
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2213
    cls.add_method('SetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2214
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2215
                   [param('std::string', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2216
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2217
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2218
def register_Ns3PacketMetadata_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2219
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2220
    cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2221
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2222
    cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2223
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2224
    cls.add_method('AddAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2225
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2226
                   [param('ns3::PacketMetadata const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2227
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2228
    cls.add_method('AddHeader', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2229
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2230
                   [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2231
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2232
    cls.add_method('AddPaddingAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2233
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2234
                   [param('uint32_t', 'end')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2235
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2236
    cls.add_method('AddTrailer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2237
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2238
                   [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2239
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2240
    cls.add_method('BeginItem', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2241
                   'ns3::PacketMetadata::ItemIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2242
                   [param('ns3::Buffer', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2243
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2244
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2245
    cls.add_method('CreateFragment', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2246
                   'ns3::PacketMetadata', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2247
                   [param('uint32_t', 'start'), param('uint32_t', 'end')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2248
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2249
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2250
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2251
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2252
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2253
    ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2254
    cls.add_method('Enable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2255
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2256
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2257
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2258
    ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2259
    cls.add_method('EnableChecking', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2260
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2261
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2262
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2263
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2264
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2265
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2266
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2267
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2268
    ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2269
    cls.add_method('GetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2270
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2271
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2272
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2273
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2274
    cls.add_method('RemoveAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2275
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2276
                   [param('uint32_t', 'end')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2277
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2278
    cls.add_method('RemoveAtStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2279
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2280
                   [param('uint32_t', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2281
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2282
    cls.add_method('RemoveHeader', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2283
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2284
                   [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2285
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2286
    cls.add_method('RemoveTrailer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2287
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2288
                   [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2289
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2290
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2291
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2292
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2293
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2294
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2295
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2296
def register_Ns3PacketMetadataItem_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2297
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2298
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2299
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2300
    cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2301
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2302
    cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2303
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2304
    cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2305
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2306
    cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2307
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2308
    cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2309
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2310
    cls.add_instance_attribute('isFragment', 'bool', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2311
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2312
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2313
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2314
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2315
def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2316
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2317
    cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2318
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2319
    cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2320
    ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2321
    cls.add_method('HasNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2322
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2323
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2324
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2325
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2326
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2327
                   'ns3::PacketMetadata::Item', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2328
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2329
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2330
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2331
def register_Ns3PacketSocketAddress_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2332
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress::PacketSocketAddress(ns3::PacketSocketAddress const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2333
    cls.add_constructor([param('ns3::PacketSocketAddress const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2334
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress::PacketSocketAddress() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2335
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2336
    ## packet-socket-address.h (module 'network'): static ns3::PacketSocketAddress ns3::PacketSocketAddress::ConvertFrom(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2337
    cls.add_method('ConvertFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2338
                   'ns3::PacketSocketAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2339
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2340
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2341
    ## packet-socket-address.h (module 'network'): ns3::Address ns3::PacketSocketAddress::GetPhysicalAddress() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2342
    cls.add_method('GetPhysicalAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2343
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2344
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2345
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2346
    ## packet-socket-address.h (module 'network'): uint16_t ns3::PacketSocketAddress::GetProtocol() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2347
    cls.add_method('GetProtocol', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2348
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2349
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2350
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2351
    ## packet-socket-address.h (module 'network'): uint32_t ns3::PacketSocketAddress::GetSingleDevice() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2352
    cls.add_method('GetSingleDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2353
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2354
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2355
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2356
    ## packet-socket-address.h (module 'network'): static bool ns3::PacketSocketAddress::IsMatchingType(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2357
    cls.add_method('IsMatchingType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2358
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2359
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2360
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2361
    ## packet-socket-address.h (module 'network'): bool ns3::PacketSocketAddress::IsSingleDevice() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2362
    cls.add_method('IsSingleDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2363
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2364
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2365
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2366
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetAllDevices() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2367
    cls.add_method('SetAllDevices', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2368
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2369
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2370
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetPhysicalAddress(ns3::Address const address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2371
    cls.add_method('SetPhysicalAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2372
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2373
                   [param('ns3::Address const', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2374
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetProtocol(uint16_t protocol) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2375
    cls.add_method('SetProtocol', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2376
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2377
                   [param('uint16_t', 'protocol')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2378
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetSingleDevice(uint32_t device) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2379
    cls.add_method('SetSingleDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2380
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2381
                   [param('uint32_t', 'device')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2382
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2383
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2384
def register_Ns3PacketSocketHelper_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2385
    ## packet-socket-helper.h (module 'network'): ns3::PacketSocketHelper::PacketSocketHelper() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2386
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2387
    ## packet-socket-helper.h (module 'network'): ns3::PacketSocketHelper::PacketSocketHelper(ns3::PacketSocketHelper const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2388
    cls.add_constructor([param('ns3::PacketSocketHelper const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2389
    ## packet-socket-helper.h (module 'network'): void ns3::PacketSocketHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2390
    cls.add_method('Install', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2391
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2392
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2393
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2394
    ## packet-socket-helper.h (module 'network'): void ns3::PacketSocketHelper::Install(std::string nodeName) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2395
    cls.add_method('Install', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2396
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2397
                   [param('std::string', 'nodeName')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2398
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2399
    ## packet-socket-helper.h (module 'network'): void ns3::PacketSocketHelper::Install(ns3::NodeContainer c) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2400
    cls.add_method('Install', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2401
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2402
                   [param('ns3::NodeContainer', 'c')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2403
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2404
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2405
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2406
def register_Ns3PacketTagIterator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2407
    ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2408
    cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2409
    ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2410
    cls.add_method('HasNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2411
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2412
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2413
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2414
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2415
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2416
                   'ns3::PacketTagIterator::Item', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2417
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2418
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2419
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2420
def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2421
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2422
    cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2423
    ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2424
    cls.add_method('GetTag', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2425
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2426
                   [param('ns3::Tag &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2427
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2428
    ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2429
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2430
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2431
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2432
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2433
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2434
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2435
def register_Ns3PacketTagList_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2436
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2437
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2438
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2439
    cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2440
    ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2441
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2442
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2443
                   [param('ns3::Tag const &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2444
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2445
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2446
    cls.add_method('Head', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2447
                   'ns3::PacketTagList::TagData const *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2448
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2449
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2450
    ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2451
    cls.add_method('Peek', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2452
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2453
                   [param('ns3::Tag &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2454
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2455
    ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2456
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2457
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2458
                   [param('ns3::Tag &', 'tag')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2459
    ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2460
    cls.add_method('RemoveAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2461
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2462
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2463
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2464
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2465
def register_Ns3PacketTagListTagData_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2466
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2467
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2468
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2469
    cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2470
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2471
    cls.add_instance_attribute('count', 'uint32_t', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2472
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2473
    cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2474
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2475
    cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2476
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2477
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2478
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2479
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2480
def register_Ns3PbbAddressTlvBlock_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2481
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2482
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2483
    ## packetbb.h (module 'network'): ns3::PbbAddressTlvBlock::PbbAddressTlvBlock(ns3::PbbAddressTlvBlock const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2484
    cls.add_constructor([param('ns3::PbbAddressTlvBlock const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2485
    ## packetbb.h (module 'network'): ns3::PbbAddressTlvBlock::PbbAddressTlvBlock() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2486
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2487
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressTlvBlock::Back() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2488
    cls.add_method('Back', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2489
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2490
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2491
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2492
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Begin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2493
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2494
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2495
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2496
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2497
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2498
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2499
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2500
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2501
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Clear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2502
    cls.add_method('Clear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2503
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2504
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2505
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Deserialize(ns3::Buffer::Iterator & start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2506
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2507
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2508
                   [param('ns3::Buffer::Iterator &', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2509
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlvBlock::Empty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2510
    cls.add_method('Empty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2511
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2512
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2513
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2514
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::End() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2515
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2516
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2517
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2518
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2519
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2520
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2521
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2522
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2523
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2524
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2525
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2526
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2527
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > first, std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2528
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2529
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2530
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2531
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressTlvBlock::Front() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2532
    cls.add_method('Front', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2533
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2534
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2535
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2536
    ## packetbb.h (module 'network'): uint32_t ns3::PbbAddressTlvBlock::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2537
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2538
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2539
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2540
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2541
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Insert(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > position, ns3::Ptr<ns3::PbbAddressTlv> const tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2542
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2543
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2544
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position'), param('ns3::Ptr< ns3::PbbAddressTlv > const', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2545
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2546
    cls.add_method('PopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2547
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2548
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2549
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2550
    cls.add_method('PopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2551
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2552
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2553
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2554
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2555
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2556
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2557
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2558
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Print(std::ostream & os, int level) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2559
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2560
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2561
                   [param('std::ostream &', 'os'), param('int', 'level')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2562
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2563
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PushBack(ns3::Ptr<ns3::PbbAddressTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2564
    cls.add_method('PushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2565
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2566
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2567
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PushFront(ns3::Ptr<ns3::PbbAddressTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2568
    cls.add_method('PushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2569
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2570
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2571
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Serialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2572
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2573
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2574
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2575
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2576
    ## packetbb.h (module 'network'): int ns3::PbbAddressTlvBlock::Size() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2577
    cls.add_method('Size', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2578
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2579
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2580
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2581
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2582
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2583
def register_Ns3PbbTlvBlock_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2584
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2585
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2586
    ## packetbb.h (module 'network'): ns3::PbbTlvBlock::PbbTlvBlock(ns3::PbbTlvBlock const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2587
    cls.add_constructor([param('ns3::PbbTlvBlock const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2588
    ## packetbb.h (module 'network'): ns3::PbbTlvBlock::PbbTlvBlock() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2589
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2590
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbTlvBlock::Back() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2591
    cls.add_method('Back', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2592
                   'ns3::Ptr< ns3::PbbTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2593
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2594
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2595
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Begin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2596
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2597
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2598
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2599
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2600
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2601
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2602
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2603
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2604
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Clear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2605
    cls.add_method('Clear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2606
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2607
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2608
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Deserialize(ns3::Buffer::Iterator & start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2609
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2610
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2611
                   [param('ns3::Buffer::Iterator &', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2612
    ## packetbb.h (module 'network'): bool ns3::PbbTlvBlock::Empty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2613
    cls.add_method('Empty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2614
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2615
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2616
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2617
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::End() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2618
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2619
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2620
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2621
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2622
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2623
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2624
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2625
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2626
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2627
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2628
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2629
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2630
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > first, std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2631
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2632
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2633
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2634
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbTlvBlock::Front() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2635
    cls.add_method('Front', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2636
                   'ns3::Ptr< ns3::PbbTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2637
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2638
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2639
    ## packetbb.h (module 'network'): uint32_t ns3::PbbTlvBlock::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2640
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2641
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2642
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2643
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2644
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Insert(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > position, ns3::Ptr<ns3::PbbTlv> const tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2645
    cls.add_method('Insert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2646
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2647
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position'), param('ns3::Ptr< ns3::PbbTlv > const', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2648
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2649
    cls.add_method('PopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2650
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2651
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2652
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2653
    cls.add_method('PopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2654
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2655
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2656
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2657
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2658
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2659
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2660
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2661
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Print(std::ostream & os, int level) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2662
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2663
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2664
                   [param('std::ostream &', 'os'), param('int', 'level')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2665
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2666
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PushBack(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2667
    cls.add_method('PushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2668
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2669
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2670
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PushFront(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2671
    cls.add_method('PushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2672
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2673
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2674
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Serialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2675
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2676
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2677
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2678
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2679
    ## packetbb.h (module 'network'): int ns3::PbbTlvBlock::Size() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2680
    cls.add_method('Size', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2681
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2682
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2683
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2684
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2685
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2686
def register_Ns3PcapFile_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2687
    ## pcap-file.h (module 'network'): ns3::PcapFile::PcapFile() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2688
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2689
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Clear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2690
    cls.add_method('Clear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2691
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2692
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2693
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Close() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2694
    cls.add_method('Close', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2695
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2696
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2697
    ## pcap-file.h (module 'network'): static bool ns3::PcapFile::Diff(std::string const & f1, std::string const & f2, uint32_t & sec, uint32_t & usec, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2698
    cls.add_method('Diff', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2699
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2700
                   [param('std::string const &', 'f1'), param('std::string const &', 'f2'), param('uint32_t &', 'sec'), param('uint32_t &', 'usec'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2701
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2702
    ## pcap-file.h (module 'network'): bool ns3::PcapFile::Eof() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2703
    cls.add_method('Eof', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2704
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2705
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2706
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2707
    ## pcap-file.h (module 'network'): bool ns3::PcapFile::Fail() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2708
    cls.add_method('Fail', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2709
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2710
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2711
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2712
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetDataLinkType() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2713
    cls.add_method('GetDataLinkType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2714
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2715
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2716
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetMagic() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2717
    cls.add_method('GetMagic', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2718
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2719
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2720
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSigFigs() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2721
    cls.add_method('GetSigFigs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2722
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2723
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2724
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSnapLen() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2725
    cls.add_method('GetSnapLen', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2726
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2727
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2728
    ## pcap-file.h (module 'network'): bool ns3::PcapFile::GetSwapMode() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2729
    cls.add_method('GetSwapMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2730
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2731
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2732
    ## pcap-file.h (module 'network'): int32_t ns3::PcapFile::GetTimeZoneOffset() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2733
    cls.add_method('GetTimeZoneOffset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2734
                   'int32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2735
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2736
    ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMajor() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2737
    cls.add_method('GetVersionMajor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2738
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2739
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2740
    ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMinor() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2741
    cls.add_method('GetVersionMinor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2742
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2743
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2744
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Init(uint32_t dataLinkType, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT, int32_t timeZoneCorrection=ns3::PcapFile::ZONE_DEFAULT, bool swapMode=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2745
    cls.add_method('Init', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2746
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2747
                   [param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT'), param('int32_t', 'timeZoneCorrection', default_value='ns3::PcapFile::ZONE_DEFAULT'), param('bool', 'swapMode', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2748
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Open(std::string const & filename, std::_Ios_Openmode mode) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2749
    cls.add_method('Open', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2750
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2751
                   [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2752
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Read(uint8_t * const data, uint32_t maxBytes, uint32_t & tsSec, uint32_t & tsUsec, uint32_t & inclLen, uint32_t & origLen, uint32_t & readLen) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2753
    cls.add_method('Read', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2754
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2755
                   [param('uint8_t * const', 'data'), param('uint32_t', 'maxBytes'), param('uint32_t &', 'tsSec'), param('uint32_t &', 'tsUsec'), param('uint32_t &', 'inclLen'), param('uint32_t &', 'origLen'), param('uint32_t &', 'readLen')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2756
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, uint8_t const * const data, uint32_t totalLen) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2757
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2758
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2759
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('uint8_t const * const', 'data'), param('uint32_t', 'totalLen')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2760
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2761
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2762
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2763
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Ptr< ns3::Packet const >', 'p')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2764
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Header & header, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2765
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2766
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2767
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Header &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2768
    ## pcap-file.h (module 'network'): ns3::PcapFile::SNAPLEN_DEFAULT [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2769
    cls.add_static_attribute('SNAPLEN_DEFAULT', 'uint32_t const', is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2770
    ## pcap-file.h (module 'network'): ns3::PcapFile::ZONE_DEFAULT [variable]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2771
    cls.add_static_attribute('ZONE_DEFAULT', 'int32_t const', is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2772
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2773
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2774
def register_Ns3PcapHelper_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2775
    ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper(ns3::PcapHelper const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2776
    cls.add_constructor([param('ns3::PcapHelper const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2777
    ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2778
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2779
    ## trace-helper.h (module 'network'): ns3::Ptr<ns3::PcapFileWrapper> ns3::PcapHelper::CreateFile(std::string filename, std::_Ios_Openmode filemode, uint32_t dataLinkType, uint32_t snapLen=65535, int32_t tzCorrection=0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2780
    cls.add_method('CreateFile', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2781
                   'ns3::Ptr< ns3::PcapFileWrapper >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2782
                   [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode'), param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='65535'), param('int32_t', 'tzCorrection', default_value='0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2783
    ## trace-helper.h (module 'network'): std::string ns3::PcapHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2784
    cls.add_method('GetFilenameFromDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2785
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2786
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2787
    ## trace-helper.h (module 'network'): std::string ns3::PcapHelper::GetFilenameFromInterfacePair(std::string prefix, ns3::Ptr<ns3::Object> object, uint32_t interface, bool useObjectNames=true) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2788
    cls.add_method('GetFilenameFromInterfacePair', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2789
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2790
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2791
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2792
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2793
def register_Ns3PcapHelperForDevice_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2794
    ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice(ns3::PcapHelperForDevice const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2795
    cls.add_constructor([param('ns3::PcapHelperForDevice const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2796
    ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2797
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2798
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous=false, bool explicitFilename=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2799
    cls.add_method('EnablePcap', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2800
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2801
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2802
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, std::string ndName, bool promiscuous=false, bool explicitFilename=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2803
    cls.add_method('EnablePcap', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2804
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2805
                   [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2806
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NetDeviceContainer d, bool promiscuous=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2807
    cls.add_method('EnablePcap', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2808
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2809
                   [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd'), param('bool', 'promiscuous', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2810
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NodeContainer n, bool promiscuous=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2811
    cls.add_method('EnablePcap', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2812
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2813
                   [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n'), param('bool', 'promiscuous', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2814
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool promiscuous=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2815
    cls.add_method('EnablePcap', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2816
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2817
                   [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'promiscuous', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2818
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapAll(std::string prefix, bool promiscuous=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2819
    cls.add_method('EnablePcapAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2820
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2821
                   [param('std::string', 'prefix'), param('bool', 'promiscuous', default_value='false')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2822
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapInternal(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous, bool explicitFilename) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2823
    cls.add_method('EnablePcapInternal', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2824
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2825
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous'), param('bool', 'explicitFilename')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2826
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2827
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2828
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2829
def register_Ns3RandomVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2830
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2831
    ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2832
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2833
    ## random-variable.h (module 'core'): ns3::RandomVariable::RandomVariable(ns3::RandomVariable const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2834
    cls.add_constructor([param('ns3::RandomVariable const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2835
    ## random-variable.h (module 'core'): uint32_t ns3::RandomVariable::GetInteger() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2836
    cls.add_method('GetInteger', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2837
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2838
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2839
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2840
    ## random-variable.h (module 'core'): double ns3::RandomVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2841
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2842
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2843
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2844
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2845
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2846
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2847
def register_Ns3SeedManager_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2848
    ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2849
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2850
    ## random-variable.h (module 'core'): ns3::SeedManager::SeedManager(ns3::SeedManager const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2851
    cls.add_constructor([param('ns3::SeedManager const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2852
    ## random-variable.h (module 'core'): static bool ns3::SeedManager::CheckSeed(uint32_t seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2853
    cls.add_method('CheckSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2854
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2855
                   [param('uint32_t', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2856
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2857
    ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetRun() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2858
    cls.add_method('GetRun', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2859
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2860
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2861
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2862
    ## random-variable.h (module 'core'): static uint32_t ns3::SeedManager::GetSeed() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2863
    cls.add_method('GetSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2864
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2865
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2866
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2867
    ## random-variable.h (module 'core'): static void ns3::SeedManager::SetRun(uint32_t run) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2868
    cls.add_method('SetRun', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2869
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2870
                   [param('uint32_t', 'run')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2871
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2872
    ## random-variable.h (module 'core'): static void ns3::SeedManager::SetSeed(uint32_t seed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2873
    cls.add_method('SetSeed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2874
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2875
                   [param('uint32_t', 'seed')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2876
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2877
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2878
6893
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2879
def register_Ns3SequenceNumber32_methods(root_module, cls):
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2880
    cls.add_binary_comparison_operator('!=')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2881
    cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('ns3::SequenceNumber< unsigned int, int > const &', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2882
    cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2883
    cls.add_inplace_numeric_operator('+=', param('int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2884
    cls.add_binary_numeric_operator('-', root_module['ns3::SequenceNumber32'], root_module['ns3::SequenceNumber32'], param('int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2885
    cls.add_inplace_numeric_operator('-=', param('int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2886
    cls.add_binary_comparison_operator('<')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2887
    cls.add_binary_comparison_operator('<=')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2888
    cls.add_binary_comparison_operator('==')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2889
    cls.add_binary_comparison_operator('>')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2890
    cls.add_binary_comparison_operator('>=')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2891
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber() [constructor]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2892
    cls.add_constructor([])
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2893
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber(unsigned int value) [constructor]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2894
    cls.add_constructor([param('unsigned int', 'value')])
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2895
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned int, int>::SequenceNumber(ns3::SequenceNumber<unsigned int, int> const & value) [copy constructor]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2896
    cls.add_constructor([param('ns3::SequenceNumber< unsigned int, int > const &', 'value')])
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2897
    ## sequence-number.h (module 'network'): unsigned int ns3::SequenceNumber<unsigned int, int>::GetValue() const [member function]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2898
    cls.add_method('GetValue', 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2899
                   'unsigned int', 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2900
                   [], 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2901
                   is_const=True)
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2902
    return
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2903
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2904
def register_Ns3SequenceNumber16_methods(root_module, cls):
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2905
    cls.add_binary_comparison_operator('!=')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2906
    cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber16'], root_module['ns3::SequenceNumber16'], param('ns3::SequenceNumber< unsigned short, short > const &', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2907
    cls.add_binary_numeric_operator('+', root_module['ns3::SequenceNumber16'], root_module['ns3::SequenceNumber16'], param('short int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2908
    cls.add_inplace_numeric_operator('+=', param('short int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2909
    cls.add_binary_numeric_operator('-', root_module['ns3::SequenceNumber16'], root_module['ns3::SequenceNumber16'], param('short int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2910
    cls.add_inplace_numeric_operator('-=', param('short int', 'right'))
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2911
    cls.add_binary_comparison_operator('<')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2912
    cls.add_binary_comparison_operator('<=')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2913
    cls.add_binary_comparison_operator('==')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2914
    cls.add_binary_comparison_operator('>')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2915
    cls.add_binary_comparison_operator('>=')
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2916
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned short, short>::SequenceNumber() [constructor]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2917
    cls.add_constructor([])
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2918
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned short, short>::SequenceNumber(short unsigned int value) [constructor]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2919
    cls.add_constructor([param('short unsigned int', 'value')])
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2920
    ## sequence-number.h (module 'network'): ns3::SequenceNumber<unsigned short, short>::SequenceNumber(ns3::SequenceNumber<unsigned short, short> const & value) [copy constructor]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2921
    cls.add_constructor([param('ns3::SequenceNumber< unsigned short, short > const &', 'value')])
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2922
    ## sequence-number.h (module 'network'): short unsigned int ns3::SequenceNumber<unsigned short, short>::GetValue() const [member function]
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2923
    cls.add_method('GetValue', 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2924
                   'short unsigned int', 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2925
                   [], 
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2926
                   is_const=True)
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2927
    return
5dccd86f90cf Modular Python bindings work (many bug fixes, more modules tested)
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6881
diff changeset
  2928
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2929
def register_Ns3SequentialVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2930
    ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(ns3::SequentialVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2931
    cls.add_constructor([param('ns3::SequentialVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2932
    ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, double i=1, uint32_t c=1) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2933
    cls.add_constructor([param('double', 'f'), param('double', 'l'), param('double', 'i', default_value='1'), param('uint32_t', 'c', default_value='1')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2934
    ## random-variable.h (module 'core'): ns3::SequentialVariable::SequentialVariable(double f, double l, ns3::RandomVariable const & i, uint32_t c=1) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2935
    cls.add_constructor([param('double', 'f'), param('double', 'l'), param('ns3::RandomVariable const &', 'i'), param('uint32_t', 'c', default_value='1')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2936
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2937
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2938
def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2939
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2940
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2941
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount(ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2942
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2943
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2944
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2945
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2946
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2947
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2948
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2949
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2950
def register_Ns3Simulator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2951
    ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2952
    cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2953
    ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2954
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2955
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2956
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2957
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2958
    ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2959
    cls.add_method('Destroy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2960
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2961
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2962
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2963
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2964
    cls.add_method('GetContext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2965
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2966
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2967
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2968
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2969
    cls.add_method('GetDelayLeft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2970
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2971
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2972
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2973
    ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2974
    cls.add_method('GetImplementation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2975
                   'ns3::Ptr< ns3::SimulatorImpl >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2976
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2977
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2978
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2979
    cls.add_method('GetMaximumSimulationTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2980
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2981
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2982
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2983
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2984
    cls.add_method('GetSystemId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2985
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2986
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2987
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2988
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2989
    cls.add_method('IsExpired', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2990
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2991
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2992
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2993
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2994
    cls.add_method('IsFinished', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2995
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2996
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2997
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2998
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2999
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3000
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3001
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3002
                   is_static=True, deprecated=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3003
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3004
    cls.add_method('Now', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3005
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3006
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3007
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3008
    ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3009
    cls.add_method('Remove', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3010
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3011
                   [param('ns3::EventId const &', 'id')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3012
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3013
    ## simulator.h (module 'core'): static void ns3::Simulator::RunOneEvent() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3014
    cls.add_method('RunOneEvent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3015
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3016
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3017
                   is_static=True, deprecated=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3018
    ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3019
    cls.add_method('SetImplementation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3020
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3021
                   [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3022
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3023
    ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3024
    cls.add_method('SetScheduler', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3025
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3026
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3027
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3028
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3029
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3030
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3031
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3032
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3033
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3034
    cls.add_method('Stop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3035
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3036
                   [param('ns3::Time const &', 'time')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3037
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3038
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3039
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3040
def register_Ns3SystemWallClockMs_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3041
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs::SystemWallClockMs(ns3::SystemWallClockMs const & arg0) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3042
    cls.add_constructor([param('ns3::SystemWallClockMs const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3043
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs::SystemWallClockMs() [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3044
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3045
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::End() [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3046
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3047
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3048
                   [])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3049
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedReal() const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3050
    cls.add_method('GetElapsedReal', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3051
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3052
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3053
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3054
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedSystem() const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3055
    cls.add_method('GetElapsedSystem', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3056
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3057
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3058
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3059
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedUser() const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3060
    cls.add_method('GetElapsedUser', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3061
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3062
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3063
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3064
    ## system-wall-clock-ms.h (module 'core'): void ns3::SystemWallClockMs::Start() [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3065
    cls.add_method('Start', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3066
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3067
                   [])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3068
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3069
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3070
def register_Ns3Tag_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3071
    ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3072
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3073
    ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3074
    cls.add_constructor([param('ns3::Tag const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3075
    ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3076
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3077
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3078
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3079
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3080
    ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3081
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3082
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3083
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3084
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3085
    ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3086
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3087
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3088
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3089
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3090
    ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3091
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3092
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3093
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3094
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3095
    ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3096
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3097
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3098
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3099
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3100
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3101
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3102
def register_Ns3TagBuffer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3103
    ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3104
    cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3105
    ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3106
    cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3107
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3108
    cls.add_method('CopyFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3109
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3110
                   [param('ns3::TagBuffer', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3111
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3112
    cls.add_method('Read', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3113
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3114
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3115
    ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3116
    cls.add_method('ReadDouble', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3117
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3118
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3119
    ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3120
    cls.add_method('ReadU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3121
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3122
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3123
    ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3124
    cls.add_method('ReadU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3125
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3126
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3127
    ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3128
    cls.add_method('ReadU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3129
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3130
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3131
    ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3132
    cls.add_method('ReadU8', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3133
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3134
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3135
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3136
    cls.add_method('TrimAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3137
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3138
                   [param('uint32_t', 'trim')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3139
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3140
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3141
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3142
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3143
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3144
    cls.add_method('WriteDouble', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3145
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3146
                   [param('double', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3147
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3148
    cls.add_method('WriteU16', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3149
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3150
                   [param('uint16_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3151
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3152
    cls.add_method('WriteU32', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3153
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3154
                   [param('uint32_t', 'data')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3155
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3156
    cls.add_method('WriteU64', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3157
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3158
                   [param('uint64_t', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3159
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3160
    cls.add_method('WriteU8', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3161
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3162
                   [param('uint8_t', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3163
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3164
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3165
def register_Ns3TriangularVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3166
    ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(ns3::TriangularVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3167
    cls.add_constructor([param('ns3::TriangularVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3168
    ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3169
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3170
    ## random-variable.h (module 'core'): ns3::TriangularVariable::TriangularVariable(double s, double l, double mean) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3171
    cls.add_constructor([param('double', 's'), param('double', 'l'), param('double', 'mean')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3172
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3173
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3174
def register_Ns3TypeId_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3175
    cls.add_binary_comparison_operator('<')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3176
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3177
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3178
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3179
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3180
    cls.add_constructor([param('char const *', 'name')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3181
    ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3182
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3183
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3184
    cls.add_constructor([param('ns3::TypeId const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3185
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3186
    cls.add_method('AddAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3187
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3188
                   [param('std::string', 'name'), param('std::string', 'help'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3189
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddAttribute(std::string name, std::string help, uint32_t flags, ns3::AttributeValue const & initialValue, ns3::Ptr<ns3::AttributeAccessor const> accessor, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3190
    cls.add_method('AddAttribute', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3191
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3192
                   [param('std::string', 'name'), param('std::string', 'help'), param('uint32_t', 'flags'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3193
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3194
    cls.add_method('AddTraceSource', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3195
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3196
                   [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3197
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation ns3::TypeId::GetAttribute(uint32_t i) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3198
    cls.add_method('GetAttribute', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3199
                   'ns3::TypeId::AttributeInformation', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3200
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3201
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3202
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3203
    cls.add_method('GetAttributeFullName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3204
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3205
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3206
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3207
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3208
    cls.add_method('GetAttributeN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3209
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3210
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3211
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3212
    ## type-id.h (module 'core'): ns3::Callback<ns3::ObjectBase*,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::TypeId::GetConstructor() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3213
    cls.add_method('GetConstructor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3214
                   'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3215
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3216
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3217
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3218
    cls.add_method('GetGroupName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3219
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3220
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3221
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3222
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3223
    cls.add_method('GetName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3224
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3225
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3226
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3227
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3228
    cls.add_method('GetParent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3229
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3230
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3231
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3232
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3233
    cls.add_method('GetRegistered', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3234
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3235
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3236
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3237
    ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3238
    cls.add_method('GetRegisteredN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3239
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3240
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3241
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3242
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation ns3::TypeId::GetTraceSource(uint32_t i) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3243
    cls.add_method('GetTraceSource', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3244
                   'ns3::TypeId::TraceSourceInformation', 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3245
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3246
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3247
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3248
    cls.add_method('GetTraceSourceN', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3249
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3250
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3251
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3252
    ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3253
    cls.add_method('GetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3254
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3255
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3256
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3257
    ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3258
    cls.add_method('HasConstructor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3259
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3260
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3261
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3262
    ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3263
    cls.add_method('HasParent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3264
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3265
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3266
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3267
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3268
    cls.add_method('HideFromDocumentation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3269
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3270
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3271
    ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3272
    cls.add_method('IsChildOf', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3273
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3274
                   [param('ns3::TypeId', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3275
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3276
    ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3277
    cls.add_method('LookupAttributeByName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3278
                   'bool', 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  3279
                   [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], 
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3280
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3281
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3282
    cls.add_method('LookupByName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3283
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3284
                   [param('std::string', 'name')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3285
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3286
    ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3287
    cls.add_method('LookupTraceSourceByName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3288
                   'ns3::Ptr< ns3::TraceSourceAccessor const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3289
                   [param('std::string', 'name')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3290
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3291
    ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3292
    cls.add_method('MustHideFromDocumentation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3293
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3294
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3295
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3296
    ## type-id.h (module 'core'): bool ns3::TypeId::SetAttributeInitialValue(uint32_t i, ns3::Ptr<ns3::AttributeValue const> initialValue) [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3297
    cls.add_method('SetAttributeInitialValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3298
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3299
                   [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3300
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3301
    cls.add_method('SetGroupName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3302
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3303
                   [param('std::string', 'groupName')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3304
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3305
    cls.add_method('SetParent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3306
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3307
                   [param('ns3::TypeId', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3308
    ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3309
    cls.add_method('SetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3310
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3311
                   [param('uint16_t', 'tid')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3312
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3313
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3314
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3315
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3316
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3317
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation(ns3::TypeId::AttributeInformation const & arg0) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3318
    cls.add_constructor([param('ns3::TypeId::AttributeInformation const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3319
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3320
    cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::AttributeAccessor const >', is_const=False)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3321
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3322
    cls.add_instance_attribute('checker', 'ns3::Ptr< ns3::AttributeChecker const >', is_const=False)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3323
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3324
    cls.add_instance_attribute('flags', 'uint32_t', is_const=False)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3325
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::help [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3326
    cls.add_instance_attribute('help', 'std::string', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3327
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3328
    cls.add_instance_attribute('initialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3329
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::name [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3330
    cls.add_instance_attribute('name', 'std::string', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3331
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::originalInitialValue [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3332
    cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3333
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3334
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3335
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3336
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3337
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3338
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation(ns3::TypeId::TraceSourceInformation const & arg0) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3339
    cls.add_constructor([param('ns3::TypeId::TraceSourceInformation const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3340
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::accessor [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3341
    cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3342
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::help [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3343
    cls.add_instance_attribute('help', 'std::string', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3344
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::name [variable]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3345
    cls.add_instance_attribute('name', 'std::string', is_const=False)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3346
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3347
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3348
def register_Ns3UniformVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3349
    ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(ns3::UniformVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3350
    cls.add_constructor([param('ns3::UniformVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3351
    ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3352
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3353
    ## random-variable.h (module 'core'): ns3::UniformVariable::UniformVariable(double s, double l) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3354
    cls.add_constructor([param('double', 's'), param('double', 'l')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3355
    ## random-variable.h (module 'core'): uint32_t ns3::UniformVariable::GetInteger(uint32_t s, uint32_t l) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3356
    cls.add_method('GetInteger', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3357
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3358
                   [param('uint32_t', 's'), param('uint32_t', 'l')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3359
    ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3360
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3361
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3362
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3363
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3364
    ## random-variable.h (module 'core'): double ns3::UniformVariable::GetValue(double s, double l) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3365
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3366
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3367
                   [param('double', 's'), param('double', 'l')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3368
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3369
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3370
def register_Ns3WeibullVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3371
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(ns3::WeibullVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3372
    cls.add_constructor([param('ns3::WeibullVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3373
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3374
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3375
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3376
    cls.add_constructor([param('double', 'm')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3377
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3378
    cls.add_constructor([param('double', 'm'), param('double', 's')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3379
    ## random-variable.h (module 'core'): ns3::WeibullVariable::WeibullVariable(double m, double s, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3380
    cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3381
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3382
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3383
def register_Ns3ZetaVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3384
    ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(ns3::ZetaVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3385
    cls.add_constructor([param('ns3::ZetaVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3386
    ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable(double alpha) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3387
    cls.add_constructor([param('double', 'alpha')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3388
    ## random-variable.h (module 'core'): ns3::ZetaVariable::ZetaVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3389
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3390
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3391
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3392
def register_Ns3ZipfVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3393
    ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(ns3::ZipfVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3394
    cls.add_constructor([param('ns3::ZipfVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3395
    ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable(long int N, double alpha) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3396
    cls.add_constructor([param('long int', 'N'), param('double', 'alpha')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3397
    ## random-variable.h (module 'core'): ns3::ZipfVariable::ZipfVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3398
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3399
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3400
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3401
def register_Ns3Empty_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3402
    ## empty.h (module 'core'): ns3::empty::empty() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3403
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3404
    ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3405
    cls.add_constructor([param('ns3::empty const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3406
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3407
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3408
def register_Ns3Int64x64_t_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3409
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3410
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3411
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3412
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3413
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3414
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3415
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3416
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3417
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3418
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3419
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3420
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3421
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3422
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3423
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3424
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3425
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3426
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3427
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3428
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3429
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3430
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3431
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3432
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3433
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3434
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3435
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3436
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3437
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3438
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3439
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3440
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3441
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3442
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3443
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3444
    cls.add_unary_numeric_operator('-')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3445
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3446
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3447
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3448
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3449
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3450
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3451
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3452
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3453
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3454
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3455
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3456
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3457
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3458
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3459
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3460
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3461
    cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3462
    cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3463
    cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3464
    cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3465
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3466
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3467
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3468
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3469
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3470
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3471
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3472
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3473
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3474
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3475
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3476
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3477
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3478
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3479
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3480
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3481
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3482
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3483
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3484
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3485
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int64_t hi, uint64_t lo) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3486
    cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3487
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(ns3::int64x64_t const & o) [copy constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3488
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3489
    ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3490
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3491
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3492
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3493
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3494
    ## int64x64-double.h (module 'core'): int64_t ns3::int64x64_t::GetHigh() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3495
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3496
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3497
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3498
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3499
    ## int64x64-double.h (module 'core'): uint64_t ns3::int64x64_t::GetLow() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3500
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3501
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3502
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3503
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3504
    ## int64x64-double.h (module 'core'): static ns3::int64x64_t ns3::int64x64_t::Invert(uint64_t v) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3505
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3506
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3507
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3508
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3509
    ## int64x64-double.h (module 'core'): void ns3::int64x64_t::MulByInvert(ns3::int64x64_t const & o) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3510
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3511
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3512
                   [param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3513
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  3514
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3515
def register_Ns3Chunk_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3516
    ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3517
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3518
    ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3519
    cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3520
    ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3521
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3522
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3523
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3524
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3525
    ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3526
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3527
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3528
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3529
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3530
    ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3531
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3532
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3533
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3534
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3535
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3536
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3537
def register_Ns3ConstantVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3538
    ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(ns3::ConstantVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3539
    cls.add_constructor([param('ns3::ConstantVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3540
    ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3541
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3542
    ## random-variable.h (module 'core'): ns3::ConstantVariable::ConstantVariable(double c) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3543
    cls.add_constructor([param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3544
    ## random-variable.h (module 'core'): void ns3::ConstantVariable::SetConstant(double c) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3545
    cls.add_method('SetConstant', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3546
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3547
                   [param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3548
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3549
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3550
def register_Ns3DeterministicVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3551
    ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(ns3::DeterministicVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3552
    cls.add_constructor([param('ns3::DeterministicVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3553
    ## random-variable.h (module 'core'): ns3::DeterministicVariable::DeterministicVariable(double * d, uint32_t c) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3554
    cls.add_constructor([param('double *', 'd'), param('uint32_t', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3555
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3556
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3557
def register_Ns3EmpiricalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3558
    ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable(ns3::EmpiricalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3559
    cls.add_constructor([param('ns3::EmpiricalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3560
    ## random-variable.h (module 'core'): ns3::EmpiricalVariable::EmpiricalVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3561
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3562
    ## random-variable.h (module 'core'): void ns3::EmpiricalVariable::CDF(double v, double c) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3563
    cls.add_method('CDF', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3564
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3565
                   [param('double', 'v'), param('double', 'c')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3566
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3567
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3568
def register_Ns3ErlangVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3569
    ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(ns3::ErlangVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3570
    cls.add_constructor([param('ns3::ErlangVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3571
    ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3572
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3573
    ## random-variable.h (module 'core'): ns3::ErlangVariable::ErlangVariable(unsigned int k, double lambda) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3574
    cls.add_constructor([param('unsigned int', 'k'), param('double', 'lambda')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3575
    ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3576
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3577
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3578
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3579
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3580
    ## random-variable.h (module 'core'): double ns3::ErlangVariable::GetValue(unsigned int k, double lambda) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3581
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3582
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3583
                   [param('unsigned int', 'k'), param('double', 'lambda')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3584
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3585
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3586
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3587
def register_Ns3ExponentialVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3588
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(ns3::ExponentialVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3589
    cls.add_constructor([param('ns3::ExponentialVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3590
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3591
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3592
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3593
    cls.add_constructor([param('double', 'm')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3594
    ## random-variable.h (module 'core'): ns3::ExponentialVariable::ExponentialVariable(double m, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3595
    cls.add_constructor([param('double', 'm'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3596
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3597
6955
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3598
def register_Ns3FlowIdTag_methods(root_module, cls):
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3599
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag::FlowIdTag(ns3::FlowIdTag const & arg0) [copy constructor]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3600
    cls.add_constructor([param('ns3::FlowIdTag const &', 'arg0')])
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3601
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag::FlowIdTag() [constructor]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3602
    cls.add_constructor([])
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3603
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag::FlowIdTag(uint32_t flowId) [constructor]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3604
    cls.add_constructor([param('uint32_t', 'flowId')])
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3605
    ## flow-id-tag.h (module 'network'): static uint32_t ns3::FlowIdTag::AllocateFlowId() [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3606
    cls.add_method('AllocateFlowId', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3607
                   'uint32_t', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3608
                   [], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3609
                   is_static=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3610
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::Deserialize(ns3::TagBuffer buf) [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3611
    cls.add_method('Deserialize', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3612
                   'void', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3613
                   [param('ns3::TagBuffer', 'buf')], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3614
                   is_virtual=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3615
    ## flow-id-tag.h (module 'network'): uint32_t ns3::FlowIdTag::GetFlowId() const [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3616
    cls.add_method('GetFlowId', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3617
                   'uint32_t', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3618
                   [], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3619
                   is_const=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3620
    ## flow-id-tag.h (module 'network'): ns3::TypeId ns3::FlowIdTag::GetInstanceTypeId() const [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3621
    cls.add_method('GetInstanceTypeId', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3622
                   'ns3::TypeId', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3623
                   [], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3624
                   is_const=True, is_virtual=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3625
    ## flow-id-tag.h (module 'network'): uint32_t ns3::FlowIdTag::GetSerializedSize() const [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3626
    cls.add_method('GetSerializedSize', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3627
                   'uint32_t', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3628
                   [], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3629
                   is_const=True, is_virtual=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3630
    ## flow-id-tag.h (module 'network'): static ns3::TypeId ns3::FlowIdTag::GetTypeId() [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3631
    cls.add_method('GetTypeId', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3632
                   'ns3::TypeId', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3633
                   [], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3634
                   is_static=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3635
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::Print(std::ostream & os) const [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3636
    cls.add_method('Print', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3637
                   'void', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3638
                   [param('std::ostream &', 'os')], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3639
                   is_const=True, is_virtual=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3640
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::Serialize(ns3::TagBuffer buf) const [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3641
    cls.add_method('Serialize', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3642
                   'void', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3643
                   [param('ns3::TagBuffer', 'buf')], 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3644
                   is_const=True, is_virtual=True)
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3645
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::SetFlowId(uint32_t flowId) [member function]
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3646
    cls.add_method('SetFlowId', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3647
                   'void', 
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3648
                   [param('uint32_t', 'flowId')])
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3649
    return
9a917ba228e8 Modular bindings: api rescan
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6893
diff changeset
  3650
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3651
def register_Ns3GammaVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3652
    ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(ns3::GammaVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3653
    cls.add_constructor([param('ns3::GammaVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3654
    ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3655
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3656
    ## random-variable.h (module 'core'): ns3::GammaVariable::GammaVariable(double alpha, double beta) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3657
    cls.add_constructor([param('double', 'alpha'), param('double', 'beta')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3658
    ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3659
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3660
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3661
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3662
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3663
    ## random-variable.h (module 'core'): double ns3::GammaVariable::GetValue(double alpha, double beta) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3664
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3665
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3666
                   [param('double', 'alpha'), param('double', 'beta')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3667
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3668
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3669
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3670
def register_Ns3Header_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3671
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3672
    ## header.h (module 'network'): ns3::Header::Header() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3673
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3674
    ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3675
    cls.add_constructor([param('ns3::Header const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3676
    ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3677
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3678
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3679
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3680
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3681
    ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3682
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3683
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3684
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3685
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3686
    ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3687
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3688
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3689
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3690
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3691
    ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3692
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3693
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3694
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3695
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3696
    ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3697
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3698
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3699
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3700
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3701
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3702
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3703
def register_Ns3IntEmpiricalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3704
    ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable(ns3::IntEmpiricalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3705
    cls.add_constructor([param('ns3::IntEmpiricalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3706
    ## random-variable.h (module 'core'): ns3::IntEmpiricalVariable::IntEmpiricalVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3707
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3708
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3709
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3710
def register_Ns3LlcSnapHeader_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3711
    ## llc-snap-header.h (module 'network'): ns3::LlcSnapHeader::LlcSnapHeader(ns3::LlcSnapHeader const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3712
    cls.add_constructor([param('ns3::LlcSnapHeader const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3713
    ## llc-snap-header.h (module 'network'): ns3::LlcSnapHeader::LlcSnapHeader() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3714
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3715
    ## llc-snap-header.h (module 'network'): uint32_t ns3::LlcSnapHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3716
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3717
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3718
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3719
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3720
    ## llc-snap-header.h (module 'network'): ns3::TypeId ns3::LlcSnapHeader::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3721
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3722
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3723
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3724
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3725
    ## llc-snap-header.h (module 'network'): uint32_t ns3::LlcSnapHeader::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3726
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3727
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3728
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3729
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3730
    ## llc-snap-header.h (module 'network'): uint16_t ns3::LlcSnapHeader::GetType() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3731
    cls.add_method('GetType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3732
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3733
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3734
    ## llc-snap-header.h (module 'network'): static ns3::TypeId ns3::LlcSnapHeader::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3735
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3736
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3737
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3738
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3739
    ## llc-snap-header.h (module 'network'): void ns3::LlcSnapHeader::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3740
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3741
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3742
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3743
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3744
    ## llc-snap-header.h (module 'network'): void ns3::LlcSnapHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3745
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3746
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3747
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3748
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3749
    ## llc-snap-header.h (module 'network'): void ns3::LlcSnapHeader::SetType(uint16_t type) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3750
    cls.add_method('SetType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3751
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3752
                   [param('uint16_t', 'type')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3753
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3754
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3755
def register_Ns3LogNormalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3756
    ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(ns3::LogNormalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3757
    cls.add_constructor([param('ns3::LogNormalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3758
    ## random-variable.h (module 'core'): ns3::LogNormalVariable::LogNormalVariable(double mu, double sigma) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3759
    cls.add_constructor([param('double', 'mu'), param('double', 'sigma')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3760
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3761
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3762
def register_Ns3NormalVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3763
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(ns3::NormalVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3764
    cls.add_constructor([param('ns3::NormalVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3765
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3766
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3767
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3768
    cls.add_constructor([param('double', 'm'), param('double', 'v')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3769
    ## random-variable.h (module 'core'): ns3::NormalVariable::NormalVariable(double m, double v, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3770
    cls.add_constructor([param('double', 'm'), param('double', 'v'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3771
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3772
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3773
def register_Ns3Object_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3774
    ## object.h (module 'core'): ns3::Object::Object() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3775
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3776
    ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3777
    cls.add_method('AggregateObject', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3778
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3779
                   [param('ns3::Ptr< ns3::Object >', 'other')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3780
    ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3781
    cls.add_method('Dispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3782
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3783
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3784
    ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3785
    cls.add_method('GetAggregateIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3786
                   'ns3::Object::AggregateIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3787
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3788
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3789
    ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3790
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3791
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3792
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3793
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3794
    ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3795
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3796
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3797
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3798
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3799
    ## object.h (module 'core'): void ns3::Object::Start() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3800
    cls.add_method('Start', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3801
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3802
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3803
    ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3804
    cls.add_constructor([param('ns3::Object const &', 'o')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3805
                        visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3806
    ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3807
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3808
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3809
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3810
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3811
    ## object.h (module 'core'): void ns3::Object::DoStart() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3812
    cls.add_method('DoStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3813
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3814
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3815
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3816
    ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3817
    cls.add_method('NotifyNewAggregate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3818
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3819
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3820
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3821
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3822
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3823
def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3824
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3825
    cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3826
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3827
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3828
    ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3829
    cls.add_method('HasNext', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3830
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3831
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3832
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3833
    ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3834
    cls.add_method('Next', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3835
                   'ns3::Ptr< ns3::Object const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3836
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3837
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3838
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3839
def register_Ns3PacketBurst_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3840
    ## packet-burst.h (module 'network'): ns3::PacketBurst::PacketBurst(ns3::PacketBurst const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3841
    cls.add_constructor([param('ns3::PacketBurst const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3842
    ## packet-burst.h (module 'network'): ns3::PacketBurst::PacketBurst() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3843
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3844
    ## packet-burst.h (module 'network'): void ns3::PacketBurst::AddPacket(ns3::Ptr<ns3::Packet> packet) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3845
    cls.add_method('AddPacket', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3846
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3847
                   [param('ns3::Ptr< ns3::Packet >', 'packet')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3848
    ## packet-burst.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::Packet> > ns3::PacketBurst::Begin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3849
    cls.add_method('Begin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3850
                   'std::_List_const_iterator< ns3::Ptr< ns3::Packet > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3851
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3852
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3853
    ## packet-burst.h (module 'network'): ns3::Ptr<ns3::PacketBurst> ns3::PacketBurst::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3854
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3855
                   'ns3::Ptr< ns3::PacketBurst >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3856
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3857
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3858
    ## packet-burst.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::Packet> > ns3::PacketBurst::End() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3859
    cls.add_method('End', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3860
                   'std::_List_const_iterator< ns3::Ptr< ns3::Packet > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3861
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3862
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3863
    ## packet-burst.h (module 'network'): uint32_t ns3::PacketBurst::GetNPackets() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3864
    cls.add_method('GetNPackets', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3865
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3866
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3867
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3868
    ## packet-burst.h (module 'network'): std::list<ns3::Ptr<ns3::Packet>, std::allocator<ns3::Ptr<ns3::Packet> > > ns3::PacketBurst::GetPackets() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3869
    cls.add_method('GetPackets', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3870
                   'std::list< ns3::Ptr< ns3::Packet > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3871
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3872
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3873
    ## packet-burst.h (module 'network'): uint32_t ns3::PacketBurst::GetSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3874
    cls.add_method('GetSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3875
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3876
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3877
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3878
    ## packet-burst.h (module 'network'): static ns3::TypeId ns3::PacketBurst::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3879
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3880
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3881
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3882
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3883
    ## packet-burst.h (module 'network'): void ns3::PacketBurst::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3884
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3885
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3886
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3887
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3888
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3889
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3890
def register_Ns3ParetoVariable_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3891
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(ns3::ParetoVariable const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3892
    cls.add_constructor([param('ns3::ParetoVariable const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3893
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3894
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3895
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3896
    cls.add_constructor([param('double', 'm')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3897
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3898
    cls.add_constructor([param('double', 'm'), param('double', 's')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3899
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(double m, double s, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3900
    cls.add_constructor([param('double', 'm'), param('double', 's'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3901
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3902
    cls.add_constructor([param('std::pair< double, double >', 'params')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3903
    ## random-variable.h (module 'core'): ns3::ParetoVariable::ParetoVariable(std::pair<double,double> params, double b) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3904
    cls.add_constructor([param('std::pair< double, double >', 'params'), param('double', 'b')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3905
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3906
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3907
def register_Ns3PcapFileWrapper_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3908
    ## pcap-file-wrapper.h (module 'network'): static ns3::TypeId ns3::PcapFileWrapper::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3909
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3910
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3911
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3912
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3913
    ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper::PcapFileWrapper() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3914
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3915
    ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Fail() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3916
    cls.add_method('Fail', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3917
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3918
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3919
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3920
    ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Eof() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3921
    cls.add_method('Eof', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3922
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3923
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3924
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3925
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Clear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3926
    cls.add_method('Clear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3927
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3928
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3929
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Open(std::string const & filename, std::_Ios_Openmode mode) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3930
    cls.add_method('Open', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3931
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3932
                   [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3933
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Close() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3934
    cls.add_method('Close', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3935
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3936
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3937
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Init(uint32_t dataLinkType, uint32_t snapLen=std::numeric_limits<unsigned int>::max(), int32_t tzCorrection=ns3::PcapFile::ZONE_DEFAULT) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3938
    cls.add_method('Init', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3939
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3940
                   [param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='std::numeric_limits<unsigned int>::max()'), param('int32_t', 'tzCorrection', default_value='ns3::PcapFile::ZONE_DEFAULT')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3941
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3942
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3943
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3944
                   [param('ns3::Time', 't'), param('ns3::Ptr< ns3::Packet const >', 'p')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3945
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Header & header, ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3946
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3947
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3948
                   [param('ns3::Time', 't'), param('ns3::Header &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3949
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, uint8_t const * buffer, uint32_t length) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3950
    cls.add_method('Write', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3951
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3952
                   [param('ns3::Time', 't'), param('uint8_t const *', 'buffer'), param('uint32_t', 'length')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3953
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetMagic() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3954
    cls.add_method('GetMagic', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3955
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3956
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3957
    ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMajor() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3958
    cls.add_method('GetVersionMajor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3959
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3960
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3961
    ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMinor() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3962
    cls.add_method('GetVersionMinor', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3963
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3964
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3965
    ## pcap-file-wrapper.h (module 'network'): int32_t ns3::PcapFileWrapper::GetTimeZoneOffset() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3966
    cls.add_method('GetTimeZoneOffset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3967
                   'int32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3968
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3969
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSigFigs() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
    cls.add_method('GetSigFigs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3971
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3972
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3973
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSnapLen() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3974
    cls.add_method('GetSnapLen', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3975
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3976
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3977
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetDataLinkType() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3978
    cls.add_method('GetDataLinkType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3979
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3980
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3981
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3982
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3983
def register_Ns3Queue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3984
    ## queue.h (module 'network'): ns3::Queue::Queue(ns3::Queue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3985
    cls.add_constructor([param('ns3::Queue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3986
    ## queue.h (module 'network'): ns3::Queue::Queue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3987
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3988
    ## queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Queue::Dequeue() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3989
    cls.add_method('Dequeue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3990
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3991
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3992
    ## queue.h (module 'network'): void ns3::Queue::DequeueAll() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3993
    cls.add_method('DequeueAll', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3994
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3995
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3996
    ## queue.h (module 'network'): bool ns3::Queue::Enqueue(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3997
    cls.add_method('Enqueue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3998
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3999
                   [param('ns3::Ptr< ns3::Packet >', 'p')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4000
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetNBytes() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4001
    cls.add_method('GetNBytes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4002
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4003
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4004
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4005
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetNPackets() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4006
    cls.add_method('GetNPackets', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4007
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4008
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4009
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4010
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalDroppedBytes() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4011
    cls.add_method('GetTotalDroppedBytes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4012
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4013
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4014
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4015
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalDroppedPackets() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4016
    cls.add_method('GetTotalDroppedPackets', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4017
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4018
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4019
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4020
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalReceivedBytes() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4021
    cls.add_method('GetTotalReceivedBytes', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4022
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4023
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4024
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4025
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalReceivedPackets() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4026
    cls.add_method('GetTotalReceivedPackets', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4027
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4028
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4029
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4030
    ## queue.h (module 'network'): static ns3::TypeId ns3::Queue::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4031
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4032
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4033
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4034
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4035
    ## queue.h (module 'network'): bool ns3::Queue::IsEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4036
    cls.add_method('IsEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4037
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4038
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4039
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4040
    ## queue.h (module 'network'): ns3::Ptr<const ns3::Packet> ns3::Queue::Peek() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4041
    cls.add_method('Peek', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4042
                   'ns3::Ptr< ns3::Packet const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4043
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4044
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4045
    ## queue.h (module 'network'): void ns3::Queue::ResetStatistics() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4046
    cls.add_method('ResetStatistics', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4047
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4048
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4049
    ## queue.h (module 'network'): void ns3::Queue::Drop(ns3::Ptr<ns3::Packet> packet) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4050
    cls.add_method('Drop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4051
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4052
                   [param('ns3::Ptr< ns3::Packet >', 'packet')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4053
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4054
    ## queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Queue::DoDequeue() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4055
    cls.add_method('DoDequeue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4056
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4057
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4058
                   is_pure_virtual=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4059
    ## queue.h (module 'network'): bool ns3::Queue::DoEnqueue(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4060
    cls.add_method('DoEnqueue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4061
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4062
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4063
                   is_pure_virtual=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4064
    ## queue.h (module 'network'): ns3::Ptr<const ns3::Packet> ns3::Queue::DoPeek() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4065
    cls.add_method('DoPeek', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4066
                   'ns3::Ptr< ns3::Packet const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4067
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4068
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4069
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4070
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4071
def register_Ns3RadiotapHeader_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4072
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader::RadiotapHeader(ns3::RadiotapHeader const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4073
    cls.add_constructor([param('ns3::RadiotapHeader const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4074
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader::RadiotapHeader() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4075
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4076
    ## radiotap-header.h (module 'network'): uint32_t ns3::RadiotapHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4077
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4078
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4079
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4080
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4081
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetAntennaNoisePower() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4082
    cls.add_method('GetAntennaNoisePower', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4083
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4084
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4085
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4086
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetAntennaSignalPower() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4087
    cls.add_method('GetAntennaSignalPower', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4088
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4089
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4090
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4091
    ## radiotap-header.h (module 'network'): uint16_t ns3::RadiotapHeader::GetChannelFlags() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4092
    cls.add_method('GetChannelFlags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4093
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4094
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4095
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4096
    ## radiotap-header.h (module 'network'): uint16_t ns3::RadiotapHeader::GetChannelFrequency() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4097
    cls.add_method('GetChannelFrequency', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4098
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4099
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4100
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4101
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetFrameFlags() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4102
    cls.add_method('GetFrameFlags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4103
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4104
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4105
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4106
    ## radiotap-header.h (module 'network'): ns3::TypeId ns3::RadiotapHeader::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4107
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4108
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4109
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4110
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4111
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetRate() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4112
    cls.add_method('GetRate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4113
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4114
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4115
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4116
    ## radiotap-header.h (module 'network'): uint32_t ns3::RadiotapHeader::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4117
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4118
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4119
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4120
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4121
    ## radiotap-header.h (module 'network'): uint64_t ns3::RadiotapHeader::GetTsft() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4122
    cls.add_method('GetTsft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4123
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4124
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4125
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4126
    ## radiotap-header.h (module 'network'): static ns3::TypeId ns3::RadiotapHeader::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4127
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4128
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4129
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4130
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4131
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4132
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4133
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4134
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4135
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4136
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4137
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4138
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4139
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4140
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4141
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetAntennaNoisePower(double noise) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4142
    cls.add_method('SetAntennaNoisePower', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4143
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4144
                   [param('double', 'noise')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4145
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetAntennaSignalPower(double signal) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4146
    cls.add_method('SetAntennaSignalPower', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4147
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4148
                   [param('double', 'signal')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4149
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetChannelFrequencyAndFlags(uint16_t frequency, uint16_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4150
    cls.add_method('SetChannelFrequencyAndFlags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4151
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4152
                   [param('uint16_t', 'frequency'), param('uint16_t', 'flags')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4153
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetFrameFlags(uint8_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4154
    cls.add_method('SetFrameFlags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4155
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4156
                   [param('uint8_t', 'flags')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4157
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetRate(uint8_t rate) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4158
    cls.add_method('SetRate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4159
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4160
                   [param('uint8_t', 'rate')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4161
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetTsft(uint64_t tsft) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4162
    cls.add_method('SetTsft', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4163
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4164
                   [param('uint64_t', 'tsft')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4165
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4166
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4167
def register_Ns3RedQueue_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4168
    ## red-queue.h (module 'network'): ns3::RedQueue::RedQueue(ns3::RedQueue const & arg0) [copy constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4169
    cls.add_constructor([param('ns3::RedQueue const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4170
    ## red-queue.h (module 'network'): ns3::RedQueue::RedQueue() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4171
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4172
    ## red-queue.h (module 'network'): ns3::RedQueue::Mode ns3::RedQueue::GetMode() [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4173
    cls.add_method('GetMode', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4174
                   'ns3::RedQueue::Mode', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4175
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4176
    ## red-queue.h (module 'network'): uint32_t ns3::RedQueue::GetQueueSize() [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4177
    cls.add_method('GetQueueSize', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4178
                   'uint32_t', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4179
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4180
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats ns3::RedQueue::GetStats() [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4181
    cls.add_method('GetStats', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4182
                   'ns3::RedQueue::Stats', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4183
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4184
    ## red-queue.h (module 'network'): static ns3::TypeId ns3::RedQueue::GetTypeId() [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4185
    cls.add_method('GetTypeId', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4186
                   'ns3::TypeId', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4187
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4188
                   is_static=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4189
    ## red-queue.h (module 'network'): void ns3::RedQueue::SetMode(ns3::RedQueue::Mode mode) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4190
    cls.add_method('SetMode', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4191
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4192
                   [param('ns3::RedQueue::Mode', 'mode')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4193
    ## red-queue.h (module 'network'): void ns3::RedQueue::SetQueueLimit(uint32_t lim) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4194
    cls.add_method('SetQueueLimit', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4195
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4196
                   [param('uint32_t', 'lim')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4197
    ## red-queue.h (module 'network'): void ns3::RedQueue::SetTh(double minTh, double maxTh) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4198
    cls.add_method('SetTh', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4199
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4200
                   [param('double', 'minTh'), param('double', 'maxTh')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4201
    ## red-queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::RedQueue::DoDequeue() [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4202
    cls.add_method('DoDequeue', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4203
                   'ns3::Ptr< ns3::Packet >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4204
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4205
                   visibility='private', is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4206
    ## red-queue.h (module 'network'): bool ns3::RedQueue::DoEnqueue(ns3::Ptr<ns3::Packet> p) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4207
    cls.add_method('DoEnqueue', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4208
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4209
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4210
                   visibility='private', is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4211
    ## red-queue.h (module 'network'): ns3::Ptr<const ns3::Packet> ns3::RedQueue::DoPeek() const [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4212
    cls.add_method('DoPeek', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4213
                   'ns3::Ptr< ns3::Packet const >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4214
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4215
                   is_const=True, visibility='private', is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4216
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4217
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4218
def register_Ns3RedQueueStats_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4219
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::Stats() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4220
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4221
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::Stats(ns3::RedQueue::Stats const & arg0) [copy constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4222
    cls.add_constructor([param('ns3::RedQueue::Stats const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4223
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::forcedDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4224
    cls.add_instance_attribute('forcedDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4225
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::qLimDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4226
    cls.add_instance_attribute('qLimDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4227
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::unforcedDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4228
    cls.add_instance_attribute('unforcedDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4229
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4230
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4231
def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4232
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4233
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4234
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4235
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4236
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4237
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4238
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4239
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4240
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4241
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4242
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4243
def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4244
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4245
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4246
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4247
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4248
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4249
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4250
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4251
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4252
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4253
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4254
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4255
def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4256
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4257
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4258
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount(ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4259
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4260
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4261
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4262
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4263
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4264
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4265
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4266
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4267
def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4268
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4269
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4270
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount(ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4271
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4272
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4273
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4274
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4275
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4276
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4277
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4278
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4279
def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4280
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4281
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4282
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount(ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4283
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4284
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4285
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4286
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4287
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4288
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4289
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4290
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4291
def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4292
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4293
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4294
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount(ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4295
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4296
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4297
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4298
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4299
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4300
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4301
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4302
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4303
def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4304
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4305
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4306
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount(ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4307
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4308
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4309
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4310
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4311
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4312
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4313
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4314
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4315
def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4316
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4317
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4318
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4319
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4320
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4321
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4322
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4323
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4324
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4325
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4326
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4327
def register_Ns3SimpleRefCount__Ns3PbbAddressBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbAddressBlock__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4328
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4329
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4330
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >::SimpleRefCount(ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4331
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter< ns3::PbbAddressBlock > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4332
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4333
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4334
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4335
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4336
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4337
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4338
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4339
def register_Ns3SimpleRefCount__Ns3PbbMessage_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbMessage__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4340
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4341
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4342
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >::SimpleRefCount(ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4343
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter< ns3::PbbMessage > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4344
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4345
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4346
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4347
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4348
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4349
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4350
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4351
def register_Ns3SimpleRefCount__Ns3PbbPacket_Ns3Header_Ns3DefaultDeleter__lt__ns3PbbPacket__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4352
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4353
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4354
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >::SimpleRefCount(ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4355
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter< ns3::PbbPacket > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4356
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4357
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4358
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4359
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4360
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4361
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4362
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4363
def register_Ns3SimpleRefCount__Ns3PbbTlv_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbTlv__gt___methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4364
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >::SimpleRefCount() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4365
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4366
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >::SimpleRefCount(ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> > const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4367
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter< ns3::PbbTlv > > const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4368
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >::Cleanup() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4369
    cls.add_method('Cleanup', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4370
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4371
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4372
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4373
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4374
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4375
def register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4376
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount() [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4377
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4378
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::SimpleRefCount(ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> > const & o) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4379
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter< ns3::TraceSourceAccessor > > const &', 'o')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4380
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >::Cleanup() [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4381
    cls.add_method('Cleanup', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4382
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4383
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4384
                   is_static=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4385
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4386
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4387
def register_Ns3Socket_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4388
    ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4389
    cls.add_constructor([param('ns3::Socket const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4390
    ## socket.h (module 'network'): ns3::Socket::Socket() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4391
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4392
    ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4393
    cls.add_method('Bind', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4394
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4395
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4396
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4397
    ## socket.h (module 'network'): int ns3::Socket::Bind() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4398
    cls.add_method('Bind', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4399
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4400
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4401
                   is_pure_virtual=True, is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4402
    ## socket.h (module 'network'): int ns3::Socket::Bind6() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4403
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4404
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4405
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4406
                   is_pure_virtual=True, is_virtual=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4407
    ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4408
    cls.add_method('BindToNetDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4409
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4410
                   [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4411
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4412
    ## socket.h (module 'network'): int ns3::Socket::Close() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4413
    cls.add_method('Close', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4414
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4415
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4416
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4417
    ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4418
    cls.add_method('Connect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4419
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4420
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4421
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4422
    ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4423
    cls.add_method('CreateSocket', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4424
                   'ns3::Ptr< ns3::Socket >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4425
                   [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4426
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4427
    ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4428
    cls.add_method('GetAllowBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4429
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4430
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4431
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4432
    ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4433
    cls.add_method('GetBoundNetDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4434
                   'ns3::Ptr< ns3::NetDevice >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4435
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4436
    ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4437
    cls.add_method('GetErrno', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4438
                   'ns3::Socket::SocketErrno', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4439
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4440
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4441
    ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4442
    cls.add_method('GetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4443
                   'ns3::Ptr< ns3::Node >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4444
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4445
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4446
    ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4447
    cls.add_method('GetRxAvailable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4448
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4449
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4450
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4451
    ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4452
    cls.add_method('GetSockName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4453
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4454
                   [param('ns3::Address &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4455
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4456
    ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4457
    cls.add_method('GetSocketType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4458
                   'ns3::Socket::SocketType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4459
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4460
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4461
    ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4462
    cls.add_method('GetTxAvailable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4463
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4464
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4465
                   is_pure_virtual=True, is_const=True, is_virtual=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  4466
    ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  4467
    cls.add_method('IsRecvPktInfo', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  4468
                   'bool', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  4469
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  4470
                   is_const=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4471
    ## socket.h (module 'network'): int ns3::Socket::Listen() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4472
    cls.add_method('Listen', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4473
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4474
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4475
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4476
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4477
    cls.add_method('Recv', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4478
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4479
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4480
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4481
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4482
    cls.add_method('Recv', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4483
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4484
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4485
    ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4486
    cls.add_method('Recv', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4487
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4488
                   [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4489
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4490
    cls.add_method('RecvFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4491
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4492
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4493
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4494
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4495
    cls.add_method('RecvFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4496
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4497
                   [param('ns3::Address &', 'fromAddress')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4498
    ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4499
    cls.add_method('RecvFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4500
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4501
                   [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4502
    ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4503
    cls.add_method('Send', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4504
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4505
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4506
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4507
    ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4508
    cls.add_method('Send', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4509
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4510
                   [param('ns3::Ptr< ns3::Packet >', 'p')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4511
    ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4512
    cls.add_method('Send', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4513
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4514
                   [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4515
    ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4516
    cls.add_method('SendTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4517
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4518
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4519
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4520
    ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4521
    cls.add_method('SendTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4522
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4523
                   [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4524
    ## socket.h (module 'network'): void ns3::Socket::SetAcceptCallback(ns3::Callback<bool, ns3::Ptr<ns3::Socket>, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionRequest, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::Address const&, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> newConnectionCreated) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4525
    cls.add_method('SetAcceptCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4526
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4527
                   [param('ns3::Callback< bool, ns3::Ptr< ns3::Socket >, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionRequest'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'newConnectionCreated')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4528
    ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4529
    cls.add_method('SetAllowBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4530
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4531
                   [param('bool', 'allowBroadcast')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4532
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4533
    ## socket.h (module 'network'): void ns3::Socket::SetCloseCallbacks(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> normalClose, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> errorClose) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4534
    cls.add_method('SetCloseCallbacks', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4535
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4536
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'normalClose'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'errorClose')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4537
    ## socket.h (module 'network'): void ns3::Socket::SetConnectCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionSucceeded, ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> connectionFailed) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4538
    cls.add_method('SetConnectCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4539
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4540
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionSucceeded'), param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'connectionFailed')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4541
    ## socket.h (module 'network'): void ns3::Socket::SetDataSentCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> dataSent) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4542
    cls.add_method('SetDataSentCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4543
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4544
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'dataSent')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4545
    ## socket.h (module 'network'): void ns3::Socket::SetRecvCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> arg0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4546
    cls.add_method('SetRecvCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4547
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4548
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4549
    ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4550
    cls.add_method('SetRecvPktInfo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4551
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4552
                   [param('bool', 'flag')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4553
    ## socket.h (module 'network'): void ns3::Socket::SetSendCallback(ns3::Callback<void, ns3::Ptr<ns3::Socket>, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty> sendCb) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4554
    cls.add_method('SetSendCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4555
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4556
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Socket >, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'sendCb')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4557
    ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4558
    cls.add_method('ShutdownRecv', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4559
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4560
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4561
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4562
    ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4563
    cls.add_method('ShutdownSend', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4564
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4565
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4566
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4567
    ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4568
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4569
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4570
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4571
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4572
    ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4573
    cls.add_method('NotifyConnectionFailed', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4574
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4575
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4576
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4577
    ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4578
    cls.add_method('NotifyConnectionRequest', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4579
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4580
                   [param('ns3::Address const &', 'from')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4581
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4582
    ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4583
    cls.add_method('NotifyConnectionSucceeded', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4584
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4585
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4586
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4587
    ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4588
    cls.add_method('NotifyDataRecv', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4589
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4590
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4591
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4592
    ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4593
    cls.add_method('NotifyDataSent', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4594
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4595
                   [param('uint32_t', 'size')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4596
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4597
    ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4598
    cls.add_method('NotifyErrorClose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4599
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4600
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4601
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4602
    ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4603
    cls.add_method('NotifyNewConnectionCreated', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4604
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4605
                   [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4606
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4607
    ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4608
    cls.add_method('NotifyNormalClose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4609
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4610
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4611
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4612
    ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4613
    cls.add_method('NotifySend', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4614
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4615
                   [param('uint32_t', 'spaceAvailable')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4616
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4617
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4618
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4619
def register_Ns3SocketAddressTag_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4620
    ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4621
    cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4622
    ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4623
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4624
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4625
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4626
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4627
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4628
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4629
    ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4630
    cls.add_method('GetAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4631
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4632
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4633
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4634
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4635
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4636
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4637
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4638
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4639
    ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4640
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4641
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4642
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4643
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4644
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4645
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4646
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4647
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4648
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4649
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4650
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4651
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4652
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4653
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4654
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4655
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4656
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4657
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4658
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4659
    ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4660
    cls.add_method('SetAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4661
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4662
                   [param('ns3::Address', 'addr')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4663
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4664
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4665
def register_Ns3SocketFactory_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4666
    ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory(ns3::SocketFactory const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4667
    cls.add_constructor([param('ns3::SocketFactory const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4668
    ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4669
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4670
    ## socket-factory.h (module 'network'): ns3::Ptr<ns3::Socket> ns3::SocketFactory::CreateSocket() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4671
    cls.add_method('CreateSocket', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4672
                   'ns3::Ptr< ns3::Socket >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4673
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4674
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4675
    ## socket-factory.h (module 'network'): static ns3::TypeId ns3::SocketFactory::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4676
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4677
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4678
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4679
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4680
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4681
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4682
def register_Ns3SocketIpTtlTag_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4683
    ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4684
    cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4685
    ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4686
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4687
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4688
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4689
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4690
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4691
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4692
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4693
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4694
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4695
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4696
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4697
    ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4698
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4699
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4700
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4701
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4702
    ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4703
    cls.add_method('GetTtl', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4704
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4705
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4706
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4707
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4708
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4709
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4710
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4711
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4712
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4713
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4714
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4715
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4716
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4717
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4718
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4719
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4720
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4721
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4722
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4723
    cls.add_method('SetTtl', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4724
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4725
                   [param('uint8_t', 'ttl')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4726
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4727
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4728
def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4729
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4730
    cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4731
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4732
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4733
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4734
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4735
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4736
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4737
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4738
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4739
    cls.add_method('Disable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4740
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4741
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4742
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4743
    cls.add_method('Enable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4744
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4745
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4746
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4747
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4748
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4749
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4750
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4751
    ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4752
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4753
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4754
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4755
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4756
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4757
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4758
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4759
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4760
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4761
    ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4762
    cls.add_method('IsEnabled', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4763
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4764
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4765
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4766
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4767
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4768
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4769
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4770
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4771
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4772
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4773
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4774
                   [param('ns3::TagBuffer', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4775
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4776
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4777
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4778
def register_Ns3Time_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4779
    cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4780
    cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4781
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4782
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4783
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4784
    cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4785
    cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4786
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4787
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4788
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4789
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4790
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4791
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4792
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4793
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4794
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4795
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4796
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4797
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4798
    ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4799
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4800
    ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4801
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4802
    ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4803
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4804
    ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4805
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4806
    ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4807
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4808
    ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4809
    cls.add_constructor([param('std::string const &', 's')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4810
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4811
    cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4812
    ## nstime.h (module 'core'): int ns3::Time::Compare(ns3::Time const & o) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4813
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4814
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4815
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4816
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4817
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4818
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4819
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4820
                   [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4821
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4822
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4823
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4824
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4825
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4826
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4827
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4828
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4829
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4830
                   [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4831
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4832
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4833
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4834
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4835
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4836
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4837
    ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4838
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4839
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4840
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4841
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4842
    ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4843
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4844
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4845
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4846
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4847
    ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4848
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4849
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4850
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4851
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4852
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4853
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4854
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4855
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4856
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4857
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4858
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4859
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4860
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4861
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4862
    ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4863
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4864
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4865
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4866
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4867
    ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4868
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4869
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4870
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4871
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4872
    ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4873
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4874
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4875
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4876
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4877
    ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4878
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4879
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4880
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4881
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4882
    ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4883
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4884
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4885
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4886
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4887
    ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4888
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4889
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4890
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4891
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4892
    ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4893
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4894
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4895
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4896
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4897
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4898
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4899
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4900
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4901
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4902
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4903
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4904
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4905
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4906
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4907
    ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4908
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4909
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4910
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4911
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4912
    ## nstime.h (module 'core'): static void ns3::Time::SetResolution(ns3::Time::Unit resolution) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4913
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4914
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4915
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4916
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4917
    ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4918
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4919
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4920
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4921
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4922
    ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4923
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4924
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4925
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4926
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4927
    ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4928
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4929
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4930
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4931
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4932
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6990
diff changeset
  4933
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4934
def register_Ns3TraceSourceAccessor_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4935
    ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor(ns3::TraceSourceAccessor const & arg0) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4936
    cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4937
    ## trace-source-accessor.h (module 'core'): ns3::TraceSourceAccessor::TraceSourceAccessor() [constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4938
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4939
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Connect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4940
    cls.add_method('Connect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4941
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4942
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4943
                   is_pure_virtual=True, is_const=True, is_virtual=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4944
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::ConnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4945
    cls.add_method('ConnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4946
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4947
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4948
                   is_pure_virtual=True, is_const=True, is_virtual=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4949
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::Disconnect(ns3::ObjectBase * obj, std::string context, ns3::CallbackBase const & cb) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4950
    cls.add_method('Disconnect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4951
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4952
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4953
                   is_pure_virtual=True, is_const=True, is_virtual=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4954
    ## trace-source-accessor.h (module 'core'): bool ns3::TraceSourceAccessor::DisconnectWithoutContext(ns3::ObjectBase * obj, ns3::CallbackBase const & cb) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4955
    cls.add_method('DisconnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4956
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4957
                   [param('ns3::ObjectBase *', 'obj', transfer_ownership=False), param('ns3::CallbackBase const &', 'cb')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4958
                   is_pure_virtual=True, is_const=True, is_virtual=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4959
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4960
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4961
def register_Ns3Trailer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4962
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4963
    ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4964
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4965
    ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4966
    cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4967
    ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4968
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4969
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4970
                   [param('ns3::Buffer::Iterator', 'end')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4971
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4972
    ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4973
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4974
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4975
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4976
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4977
    ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4978
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4979
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4980
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4981
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4982
    ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4983
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4984
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4985
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4986
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4987
    ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4988
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4989
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4990
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4991
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4992
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4993
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4994
def register_Ns3Application_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4995
    ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4996
    cls.add_constructor([param('ns3::Application const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4997
    ## application.h (module 'network'): ns3::Application::Application() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4998
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4999
    ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5000
    cls.add_method('GetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5001
                   'ns3::Ptr< ns3::Node >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5002
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5003
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5004
    ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5005
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5006
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5007
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5008
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5009
    ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5010
    cls.add_method('SetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5011
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5012
                   [param('ns3::Ptr< ns3::Node >', 'node')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5013
    ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5014
    cls.add_method('SetStartTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5015
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5016
                   [param('ns3::Time', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5017
    ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5018
    cls.add_method('SetStopTime', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5019
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5020
                   [param('ns3::Time', 'stop')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5021
    ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5022
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5023
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5024
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5025
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5026
    ## application.h (module 'network'): void ns3::Application::DoStart() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5027
    cls.add_method('DoStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5028
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5029
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5030
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5031
    ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5032
    cls.add_method('StartApplication', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5033
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5034
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5035
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5036
    ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5037
    cls.add_method('StopApplication', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5038
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5039
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5040
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5041
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5042
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5043
def register_Ns3AttributeAccessor_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5044
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5045
    cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5046
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5047
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5048
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5049
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5050
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5051
                   [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5052
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5053
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5054
    cls.add_method('HasGetter', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5055
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5056
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5057
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5058
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5059
    cls.add_method('HasSetter', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5060
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5061
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5062
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5063
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5064
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5065
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5066
                   [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5067
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5068
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5069
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5070
def register_Ns3AttributeChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5071
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5072
    cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5073
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5074
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5075
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5076
    cls.add_method('Check', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5077
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5078
                   [param('ns3::AttributeValue const &', 'value')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5079
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5080
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5081
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5082
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5083
                   [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5084
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5085
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5086
    cls.add_method('Create', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5087
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5088
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5089
                   is_pure_virtual=True, is_const=True, is_virtual=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5090
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::CreateValidValue(ns3::AttributeValue const & value) const [member function]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5091
    cls.add_method('CreateValidValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5092
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5093
                   [param('ns3::AttributeValue const &', 'value')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5094
                   is_const=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5095
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5096
    cls.add_method('GetUnderlyingTypeInformation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5097
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5098
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5099
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5100
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5101
    cls.add_method('GetValueTypeName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5102
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5103
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5104
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5105
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5106
    cls.add_method('HasUnderlyingTypeInformation', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5107
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5108
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5109
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5110
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5111
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5112
def register_Ns3AttributeValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5113
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5114
    cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5115
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5116
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5117
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5118
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5119
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5120
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5121
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5122
    ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5123
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5124
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5125
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5126
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5127
    ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5128
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5129
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5130
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5131
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5132
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5133
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5134
def register_Ns3BooleanChecker_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5135
    ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5136
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5137
    ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker(ns3::BooleanChecker const & arg0) [copy constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5138
    cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5139
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5140
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5141
def register_Ns3BooleanValue_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5142
    cls.add_output_stream_operator()
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5143
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(ns3::BooleanValue const & arg0) [copy constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5144
    cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5145
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5146
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5147
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5148
    cls.add_constructor([param('bool', 'value')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5149
    ## boolean.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::BooleanValue::Copy() const [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5150
    cls.add_method('Copy', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5151
                   'ns3::Ptr< ns3::AttributeValue >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5152
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5153
                   is_const=True, is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5154
    ## boolean.h (module 'core'): bool ns3::BooleanValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5155
    cls.add_method('DeserializeFromString', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5156
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5157
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5158
                   is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5159
    ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5160
    cls.add_method('Get', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5161
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5162
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5163
                   is_const=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5164
    ## boolean.h (module 'core'): std::string ns3::BooleanValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5165
    cls.add_method('SerializeToString', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5166
                   'std::string', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5167
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5168
                   is_const=True, is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5169
    ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5170
    cls.add_method('Set', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5171
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5172
                   [param('bool', 'value')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5173
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5174
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5175
def register_Ns3CallbackChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5176
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5177
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5178
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5179
    cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5180
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5181
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5182
def register_Ns3CallbackImplBase_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5183
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5184
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5185
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5186
    cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5187
    ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5188
    cls.add_method('IsEqual', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5189
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5190
                   [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5191
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5192
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5193
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5194
def register_Ns3CallbackValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5195
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5196
    cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5197
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5198
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5199
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5200
    cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5201
    ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5202
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5203
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5204
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5205
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5206
    ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5207
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5208
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5209
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5210
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5211
    ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5212
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5213
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5214
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5215
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5216
    ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5217
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5218
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5219
                   [param('ns3::CallbackBase', 'base')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5220
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5221
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5222
def register_Ns3Channel_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5223
    ## channel.h (module 'network'): ns3::Channel::Channel(ns3::Channel const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5224
    cls.add_constructor([param('ns3::Channel const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5225
    ## channel.h (module 'network'): ns3::Channel::Channel() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5226
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5227
    ## channel.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Channel::GetDevice(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5228
    cls.add_method('GetDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5229
                   'ns3::Ptr< ns3::NetDevice >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5230
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5231
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5232
    ## channel.h (module 'network'): uint32_t ns3::Channel::GetId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5233
    cls.add_method('GetId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5234
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5235
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5236
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5237
    ## channel.h (module 'network'): uint32_t ns3::Channel::GetNDevices() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5238
    cls.add_method('GetNDevices', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5239
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5240
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5241
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5242
    ## channel.h (module 'network'): static ns3::TypeId ns3::Channel::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5243
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5244
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5245
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5246
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5247
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5248
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5249
def register_Ns3DataRateChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5250
    ## data-rate.h (module 'network'): ns3::DataRateChecker::DataRateChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5251
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5252
    ## data-rate.h (module 'network'): ns3::DataRateChecker::DataRateChecker(ns3::DataRateChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5253
    cls.add_constructor([param('ns3::DataRateChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5254
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5255
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5256
def register_Ns3DataRateValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5257
    ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5258
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5259
    ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue(ns3::DataRateValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5260
    cls.add_constructor([param('ns3::DataRateValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5261
    ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue(ns3::DataRate const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5262
    cls.add_constructor([param('ns3::DataRate const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5263
    ## data-rate.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::DataRateValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5264
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5265
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5266
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5267
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5268
    ## data-rate.h (module 'network'): bool ns3::DataRateValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5269
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5270
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5271
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5272
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5273
    ## data-rate.h (module 'network'): ns3::DataRate ns3::DataRateValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5274
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5275
                   'ns3::DataRate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5276
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5277
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5278
    ## data-rate.h (module 'network'): std::string ns3::DataRateValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5279
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5280
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5281
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5282
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5283
    ## data-rate.h (module 'network'): void ns3::DataRateValue::Set(ns3::DataRate const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5284
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5285
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5286
                   [param('ns3::DataRate const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5287
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5288
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5289
def register_Ns3DropTailQueue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5290
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::DropTailQueue(ns3::DropTailQueue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5291
    cls.add_constructor([param('ns3::DropTailQueue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5292
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::DropTailQueue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5293
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5294
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::Mode ns3::DropTailQueue::GetMode() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5295
    cls.add_method('GetMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5296
                   'ns3::DropTailQueue::Mode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5297
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5298
    ## drop-tail-queue.h (module 'network'): static ns3::TypeId ns3::DropTailQueue::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5299
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5300
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5301
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5302
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5303
    ## drop-tail-queue.h (module 'network'): void ns3::DropTailQueue::SetMode(ns3::DropTailQueue::Mode mode) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5304
    cls.add_method('SetMode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5305
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5306
                   [param('ns3::DropTailQueue::Mode', 'mode')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5307
    ## drop-tail-queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::DropTailQueue::DoDequeue() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5308
    cls.add_method('DoDequeue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5309
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5310
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5311
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5312
    ## drop-tail-queue.h (module 'network'): bool ns3::DropTailQueue::DoEnqueue(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5313
    cls.add_method('DoEnqueue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5314
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5315
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5316
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5317
    ## drop-tail-queue.h (module 'network'): ns3::Ptr<const ns3::Packet> ns3::DropTailQueue::DoPeek() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5318
    cls.add_method('DoPeek', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5319
                   'ns3::Ptr< ns3::Packet const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5320
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5321
                   is_const=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5322
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5323
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5324
def register_Ns3EmptyAttributeValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5325
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5326
    cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5327
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5328
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5329
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5330
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5331
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5332
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5333
                   is_const=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5334
    ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5335
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5336
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5337
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5338
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5339
    ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5340
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5341
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5342
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5343
                   is_const=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5344
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5345
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5346
def register_Ns3ErrorModel_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5347
    ## error-model.h (module 'network'): ns3::ErrorModel::ErrorModel(ns3::ErrorModel const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5348
    cls.add_constructor([param('ns3::ErrorModel const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5349
    ## error-model.h (module 'network'): ns3::ErrorModel::ErrorModel() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5350
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5351
    ## error-model.h (module 'network'): void ns3::ErrorModel::Disable() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5352
    cls.add_method('Disable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5353
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5354
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5355
    ## error-model.h (module 'network'): void ns3::ErrorModel::Enable() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5356
    cls.add_method('Enable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5357
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5358
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5359
    ## error-model.h (module 'network'): static ns3::TypeId ns3::ErrorModel::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5360
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5361
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5362
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5363
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5364
    ## error-model.h (module 'network'): bool ns3::ErrorModel::IsCorrupt(ns3::Ptr<ns3::Packet> pkt) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5365
    cls.add_method('IsCorrupt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5366
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5367
                   [param('ns3::Ptr< ns3::Packet >', 'pkt')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5368
    ## error-model.h (module 'network'): bool ns3::ErrorModel::IsEnabled() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5369
    cls.add_method('IsEnabled', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5370
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5371
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5372
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5373
    ## error-model.h (module 'network'): void ns3::ErrorModel::Reset() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5374
    cls.add_method('Reset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5375
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5376
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5377
    ## error-model.h (module 'network'): bool ns3::ErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> arg0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5378
    cls.add_method('DoCorrupt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5379
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5380
                   [param('ns3::Ptr< ns3::Packet >', 'arg0')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5381
                   is_pure_virtual=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5382
    ## error-model.h (module 'network'): void ns3::ErrorModel::DoReset() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5383
    cls.add_method('DoReset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5384
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5385
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5386
                   is_pure_virtual=True, visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5387
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5388
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5389
def register_Ns3EthernetHeader_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5390
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader::EthernetHeader(ns3::EthernetHeader const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5391
    cls.add_constructor([param('ns3::EthernetHeader const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5392
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader::EthernetHeader(bool hasPreamble) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5393
    cls.add_constructor([param('bool', 'hasPreamble')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5394
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader::EthernetHeader() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5395
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5396
    ## ethernet-header.h (module 'network'): uint32_t ns3::EthernetHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5397
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5398
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5399
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5400
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5401
    ## ethernet-header.h (module 'network'): ns3::Mac48Address ns3::EthernetHeader::GetDestination() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5402
    cls.add_method('GetDestination', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5403
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5404
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5405
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5406
    ## ethernet-header.h (module 'network'): uint32_t ns3::EthernetHeader::GetHeaderSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5407
    cls.add_method('GetHeaderSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5408
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5409
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5410
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5411
    ## ethernet-header.h (module 'network'): ns3::TypeId ns3::EthernetHeader::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5412
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5413
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5414
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5415
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5416
    ## ethernet-header.h (module 'network'): uint16_t ns3::EthernetHeader::GetLengthType() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5417
    cls.add_method('GetLengthType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5418
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5419
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5420
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5421
    ## ethernet-header.h (module 'network'): ns3::ethernet_header_t ns3::EthernetHeader::GetPacketType() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5422
    cls.add_method('GetPacketType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5423
                   'ns3::ethernet_header_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5424
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5425
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5426
    ## ethernet-header.h (module 'network'): uint64_t ns3::EthernetHeader::GetPreambleSfd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5427
    cls.add_method('GetPreambleSfd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5428
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5429
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5430
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5431
    ## ethernet-header.h (module 'network'): uint32_t ns3::EthernetHeader::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5432
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5433
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5434
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5435
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5436
    ## ethernet-header.h (module 'network'): ns3::Mac48Address ns3::EthernetHeader::GetSource() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5437
    cls.add_method('GetSource', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5438
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5439
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5440
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5441
    ## ethernet-header.h (module 'network'): static ns3::TypeId ns3::EthernetHeader::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5442
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5443
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5444
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5445
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5446
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5447
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5448
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5449
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5450
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5451
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5452
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5453
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5454
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5455
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5456
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetDestination(ns3::Mac48Address destination) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5457
    cls.add_method('SetDestination', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5458
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5459
                   [param('ns3::Mac48Address', 'destination')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5460
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetLengthType(uint16_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5461
    cls.add_method('SetLengthType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5462
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5463
                   [param('uint16_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5464
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetPreambleSfd(uint64_t preambleSfd) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5465
    cls.add_method('SetPreambleSfd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5466
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5467
                   [param('uint64_t', 'preambleSfd')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5468
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetSource(ns3::Mac48Address source) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5469
    cls.add_method('SetSource', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5470
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5471
                   [param('ns3::Mac48Address', 'source')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5472
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5473
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5474
def register_Ns3EthernetTrailer_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5475
    ## ethernet-trailer.h (module 'network'): ns3::EthernetTrailer::EthernetTrailer(ns3::EthernetTrailer const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5476
    cls.add_constructor([param('ns3::EthernetTrailer const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5477
    ## ethernet-trailer.h (module 'network'): ns3::EthernetTrailer::EthernetTrailer() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5478
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5479
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::CalcFcs(ns3::Ptr<const ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5480
    cls.add_method('CalcFcs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5481
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5482
                   [param('ns3::Ptr< ns3::Packet const >', 'p')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5483
    ## ethernet-trailer.h (module 'network'): bool ns3::EthernetTrailer::CheckFcs(ns3::Ptr<const ns3::Packet> p) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5484
    cls.add_method('CheckFcs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5485
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5486
                   [param('ns3::Ptr< ns3::Packet const >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5487
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5488
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::Deserialize(ns3::Buffer::Iterator end) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5489
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5490
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5491
                   [param('ns3::Buffer::Iterator', 'end')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5492
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5493
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::EnableFcs(bool enable) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5494
    cls.add_method('EnableFcs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5495
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5496
                   [param('bool', 'enable')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5497
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::GetFcs() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5498
    cls.add_method('GetFcs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5499
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5500
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5501
    ## ethernet-trailer.h (module 'network'): ns3::TypeId ns3::EthernetTrailer::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5502
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5503
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5504
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5505
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5506
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5507
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5508
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5509
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5510
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5511
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::GetTrailerSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5512
    cls.add_method('GetTrailerSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5513
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5514
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5515
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5516
    ## ethernet-trailer.h (module 'network'): static ns3::TypeId ns3::EthernetTrailer::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5517
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5518
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5519
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5520
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5521
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5522
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5523
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5524
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5525
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5526
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::Serialize(ns3::Buffer::Iterator end) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5527
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5528
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5529
                   [param('ns3::Buffer::Iterator', 'end')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5530
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5531
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::SetFcs(uint32_t fcs) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5532
    cls.add_method('SetFcs', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5533
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5534
                   [param('uint32_t', 'fcs')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5535
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5536
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5537
def register_Ns3EventImpl_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5538
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5539
    cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5540
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5541
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5542
    ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5543
    cls.add_method('Cancel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5544
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5545
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5546
    ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5547
    cls.add_method('Invoke', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5548
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5549
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5550
    ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5551
    cls.add_method('IsCancelled', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5552
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5553
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5554
    ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5555
    cls.add_method('Notify', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5556
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5557
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5558
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5559
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5560
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5561
def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5562
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5563
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5564
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5565
    cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5566
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5567
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5568
def register_Ns3Ipv4AddressValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5569
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5570
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5571
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5572
    cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5573
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5574
    cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5575
    ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5576
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5577
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5578
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5579
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5580
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5581
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5582
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5583
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5584
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5585
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5586
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5587
                   'ns3::Ipv4Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5588
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5589
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5590
    ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5591
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5592
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5593
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5594
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5595
    ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5596
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5597
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5598
                   [param('ns3::Ipv4Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5599
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5600
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5601
def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5602
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5603
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5604
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5605
    cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5606
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5607
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5608
def register_Ns3Ipv4MaskValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5609
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5610
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5611
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5612
    cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5613
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5614
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5615
    ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5616
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5617
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5618
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5619
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5620
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5621
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5622
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5623
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5624
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5625
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5626
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5627
                   'ns3::Ipv4Mask', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5628
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5629
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5630
    ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5631
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5632
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5633
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5634
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5635
    ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5636
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5637
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5638
                   [param('ns3::Ipv4Mask const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5639
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5640
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5641
def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5642
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5643
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5644
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5645
    cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5646
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5647
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5648
def register_Ns3Ipv6AddressValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5649
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5650
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5651
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5652
    cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5653
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5654
    cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5655
    ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5656
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5657
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5658
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5659
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5660
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5661
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5662
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5663
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5664
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5665
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5666
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5667
                   'ns3::Ipv6Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5668
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5669
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5670
    ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5671
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5672
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5673
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5674
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5675
    ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5676
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5677
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5678
                   [param('ns3::Ipv6Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5679
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5680
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5681
def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5682
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5683
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5684
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5685
    cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5686
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5687
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5688
def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5689
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5690
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5691
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5692
    cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5693
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5694
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5695
    ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5696
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5697
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5698
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5699
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5700
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5701
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5702
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5703
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5704
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5705
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5706
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5707
                   'ns3::Ipv6Prefix', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5708
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5709
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5710
    ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5711
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5712
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5713
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5714
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5715
    ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5716
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5717
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5718
                   [param('ns3::Ipv6Prefix const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5719
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5720
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5721
def register_Ns3ListErrorModel_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5722
    ## error-model.h (module 'network'): ns3::ListErrorModel::ListErrorModel(ns3::ListErrorModel const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5723
    cls.add_constructor([param('ns3::ListErrorModel const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5724
    ## error-model.h (module 'network'): ns3::ListErrorModel::ListErrorModel() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5725
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5726
    ## error-model.h (module 'network'): std::list<unsigned int, std::allocator<unsigned int> > ns3::ListErrorModel::GetList() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5727
    cls.add_method('GetList', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5728
                   'std::list< unsigned int >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5729
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5730
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5731
    ## error-model.h (module 'network'): static ns3::TypeId ns3::ListErrorModel::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5732
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5733
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5734
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5735
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5736
    ## error-model.h (module 'network'): void ns3::ListErrorModel::SetList(std::list<unsigned int, std::allocator<unsigned int> > const & packetlist) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5737
    cls.add_method('SetList', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5738
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5739
                   [param('std::list< unsigned int > const &', 'packetlist')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5740
    ## error-model.h (module 'network'): bool ns3::ListErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5741
    cls.add_method('DoCorrupt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5742
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5743
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5744
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5745
    ## error-model.h (module 'network'): void ns3::ListErrorModel::DoReset() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5746
    cls.add_method('DoReset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5747
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5748
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5749
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5750
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5751
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5752
def register_Ns3Mac48AddressChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5753
    ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker::Mac48AddressChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5754
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5755
    ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker::Mac48AddressChecker(ns3::Mac48AddressChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5756
    cls.add_constructor([param('ns3::Mac48AddressChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5757
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5758
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5759
def register_Ns3Mac48AddressValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5760
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5761
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5762
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue(ns3::Mac48AddressValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5763
    cls.add_constructor([param('ns3::Mac48AddressValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5764
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue(ns3::Mac48Address const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5765
    cls.add_constructor([param('ns3::Mac48Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5766
    ## mac48-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Mac48AddressValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5767
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5768
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5769
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5770
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5771
    ## mac48-address.h (module 'network'): bool ns3::Mac48AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5772
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5773
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5774
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5775
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5776
    ## mac48-address.h (module 'network'): ns3::Mac48Address ns3::Mac48AddressValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5777
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5778
                   'ns3::Mac48Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5779
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5780
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5781
    ## mac48-address.h (module 'network'): std::string ns3::Mac48AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5782
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5783
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5784
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5785
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5786
    ## mac48-address.h (module 'network'): void ns3::Mac48AddressValue::Set(ns3::Mac48Address const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5787
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5788
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5789
                   [param('ns3::Mac48Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5790
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5791
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5792
def register_Ns3NetDevice_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5793
    ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5794
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5795
    ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5796
    cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5797
    ## net-device.h (module 'network'): void ns3::NetDevice::AddLinkChangeCallback(ns3::Callback<void,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5798
    cls.add_method('AddLinkChangeCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5799
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5800
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5801
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5802
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5803
    cls.add_method('GetAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5804
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5805
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5806
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5807
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5808
    cls.add_method('GetBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5809
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5810
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5811
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5812
    ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5813
    cls.add_method('GetChannel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5814
                   'ns3::Ptr< ns3::Channel >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5815
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5816
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5817
    ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5818
    cls.add_method('GetIfIndex', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5819
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5820
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5821
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5822
    ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5823
    cls.add_method('GetMtu', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5824
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5825
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5826
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5827
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5828
    cls.add_method('GetMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5829
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5830
                   [param('ns3::Ipv4Address', 'multicastGroup')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5831
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5832
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5833
    cls.add_method('GetMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5834
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5835
                   [param('ns3::Ipv6Address', 'addr')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5836
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5837
    ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5838
    cls.add_method('GetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5839
                   'ns3::Ptr< ns3::Node >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5840
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5841
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5842
    ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5843
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5844
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5845
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5846
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5847
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5848
    cls.add_method('IsBridge', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5849
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5850
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5851
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5852
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5853
    cls.add_method('IsBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5854
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5855
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5856
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5857
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5858
    cls.add_method('IsLinkUp', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5859
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5860
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5861
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5862
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5863
    cls.add_method('IsMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5864
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5865
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5866
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5867
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5868
    cls.add_method('IsPointToPoint', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5869
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5870
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5871
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5872
    ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5873
    cls.add_method('NeedsArp', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5874
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5875
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5876
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5877
    ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5878
    cls.add_method('Send', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5879
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5880
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5881
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5882
    ## net-device.h (module 'network'): bool ns3::NetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5883
    cls.add_method('SendFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5884
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5885
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5886
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5887
    ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5888
    cls.add_method('SetAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5889
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5890
                   [param('ns3::Address', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5891
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5892
    ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5893
    cls.add_method('SetIfIndex', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5894
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5895
                   [param('uint32_t const', 'index')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5896
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5897
    ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5898
    cls.add_method('SetMtu', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5899
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5900
                   [param('uint16_t const', 'mtu')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5901
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5902
    ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5903
    cls.add_method('SetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5904
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5905
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5906
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5907
    ## net-device.h (module 'network'): void ns3::NetDevice::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]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5908
    cls.add_method('SetPromiscReceiveCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5909
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5910
                   [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')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5911
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5912
    ## net-device.h (module 'network'): void ns3::NetDevice::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]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5913
    cls.add_method('SetReceiveCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5914
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5915
                   [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')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5916
                   is_pure_virtual=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5917
    ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5918
    cls.add_method('SupportsSendFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5919
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5920
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5921
                   is_pure_virtual=True, is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5922
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5923
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5924
def register_Ns3NixVector_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5925
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5926
    ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5927
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5928
    ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5929
    cls.add_constructor([param('ns3::NixVector const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5930
    ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5931
    cls.add_method('AddNeighborIndex', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5932
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5933
                   [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5934
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5935
    cls.add_method('BitCount', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5936
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5937
                   [param('uint32_t', 'numberOfNeighbors')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5938
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5939
    ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5940
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5941
                   'ns3::Ptr< ns3::NixVector >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5942
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5943
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5944
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5945
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5946
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5947
                   [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5948
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5949
    cls.add_method('ExtractNeighborIndex', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5950
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5951
                   [param('uint32_t', 'numberOfBits')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5952
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5953
    cls.add_method('GetRemainingBits', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5954
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5955
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5956
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5957
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5958
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5959
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5960
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5961
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5962
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5963
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5964
                   [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5965
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5966
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5967
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5968
def register_Ns3Node_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5969
    ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5970
    cls.add_constructor([param('ns3::Node const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5971
    ## node.h (module 'network'): ns3::Node::Node() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5972
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5973
    ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5974
    cls.add_constructor([param('uint32_t', 'systemId')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5975
    ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5976
    cls.add_method('AddApplication', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5977
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5978
                   [param('ns3::Ptr< ns3::Application >', 'application')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5979
    ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5980
    cls.add_method('AddDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5981
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5982
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5983
    ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5984
    cls.add_method('ChecksumEnabled', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5985
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5986
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5987
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5988
    ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5989
    cls.add_method('GetApplication', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5990
                   'ns3::Ptr< ns3::Application >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5991
                   [param('uint32_t', 'index')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5992
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5993
    ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5994
    cls.add_method('GetDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5995
                   'ns3::Ptr< ns3::NetDevice >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5996
                   [param('uint32_t', 'index')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5997
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5998
    ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5999
    cls.add_method('GetId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6000
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6001
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6002
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6003
    ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6004
    cls.add_method('GetNApplications', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6005
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6006
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6007
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6008
    ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6009
    cls.add_method('GetNDevices', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6010
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6011
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6012
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6013
    ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6014
    cls.add_method('GetSystemId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6015
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6016
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6017
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6018
    ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6019
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6020
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6021
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6022
                   is_static=True)
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6023
    ## node.h (module 'network'): void ns3::Node::RegisterDeviceAdditionListener(ns3::Callback<void,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> listener) [member function]
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6024
    cls.add_method('RegisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6025
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6026
                   [param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6027
    ## node.h (module 'network'): void ns3::Node::RegisterProtocolHandler(ns3::Callback<void, 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> handler, uint16_t protocolType, ns3::Ptr<ns3::NetDevice> device, bool promiscuous=false) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6028
    cls.add_method('RegisterProtocolHandler', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6029
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6030
                   [param('ns3::Callback< void, 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 >', 'handler'), param('uint16_t', 'protocolType'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'promiscuous', default_value='false')])
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6031
    ## node.h (module 'network'): void ns3::Node::UnregisterDeviceAdditionListener(ns3::Callback<void,ns3::Ptr<ns3::NetDevice>,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> listener) [member function]
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6032
    cls.add_method('UnregisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6033
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7101
diff changeset
  6034
                   [param('ns3::Callback< void, ns3::Ptr< ns3::NetDevice >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'listener')])
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6035
    ## node.h (module 'network'): void ns3::Node::UnregisterProtocolHandler(ns3::Callback<void, 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> handler) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6036
    cls.add_method('UnregisterProtocolHandler', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6037
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6038
                   [param('ns3::Callback< void, 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 >', 'handler')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6039
    ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6040
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6041
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6042
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6043
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6044
    ## node.h (module 'network'): void ns3::Node::DoStart() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6045
    cls.add_method('DoStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6046
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6047
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6048
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6049
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6050
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6051
def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6052
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6053
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6054
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6055
    cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6056
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6057
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6058
def register_Ns3ObjectFactoryValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6059
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6060
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6061
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6062
    cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6063
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6064
    cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6065
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6066
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6067
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6068
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6069
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6070
    ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6071
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6072
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6073
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6074
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6075
    ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6076
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6077
                   'ns3::ObjectFactory', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6078
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6079
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6080
    ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6081
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6082
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6083
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6084
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6085
    ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6086
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6087
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6088
                   [param('ns3::ObjectFactory const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6089
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6090
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6091
def register_Ns3OutputStreamWrapper_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6092
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6093
    cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6094
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6095
    cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6096
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6097
    cls.add_constructor([param('std::ostream *', 'os')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6098
    ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6099
    cls.add_method('GetStream', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6100
                   'std::ostream *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6101
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6102
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6103
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6104
def register_Ns3Packet_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6105
    cls.add_output_stream_operator()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6106
    ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6107
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6108
    ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6109
    cls.add_constructor([param('ns3::Packet const &', 'o')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6110
    ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6111
    cls.add_constructor([param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6112
    ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6113
    cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6114
    ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6115
    cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6116
    ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6117
    cls.add_method('AddAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6118
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6119
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6120
    ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6121
    cls.add_method('AddByteTag', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6122
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6123
                   [param('ns3::Tag const &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6124
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6125
    ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6126
    cls.add_method('AddHeader', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6127
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6128
                   [param('ns3::Header const &', 'header')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6129
    ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6130
    cls.add_method('AddPacketTag', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6131
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6132
                   [param('ns3::Tag const &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6133
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6134
    ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6135
    cls.add_method('AddPaddingAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6136
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6137
                   [param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6138
    ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6139
    cls.add_method('AddTrailer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6140
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6141
                   [param('ns3::Trailer const &', 'trailer')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6142
    ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6143
    cls.add_method('BeginItem', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6144
                   'ns3::PacketMetadata::ItemIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6145
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6146
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6147
    ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6148
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6149
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6150
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6151
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6152
    ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6153
    cls.add_method('CopyData', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6154
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6155
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6156
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6157
    ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6158
    cls.add_method('CopyData', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6159
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6160
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6161
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6162
    ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6163
    cls.add_method('CreateFragment', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6164
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6165
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6166
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6167
    ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6168
    cls.add_method('EnableChecking', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6169
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6170
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6171
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6172
    ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6173
    cls.add_method('EnablePrinting', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6174
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6175
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6176
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6177
    ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6178
    cls.add_method('FindFirstMatchingByteTag', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6179
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6180
                   [param('ns3::Tag &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6181
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6182
    ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6183
    cls.add_method('GetByteTagIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6184
                   'ns3::ByteTagIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6185
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6186
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6187
    ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6188
    cls.add_method('GetNixVector', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6189
                   'ns3::Ptr< ns3::NixVector >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6190
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6191
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6192
    ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6193
    cls.add_method('GetPacketTagIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6194
                   'ns3::PacketTagIterator', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6195
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6196
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6197
    ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6198
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6199
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6200
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6201
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6202
    ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6203
    cls.add_method('GetSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6204
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6205
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6206
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6207
    ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6208
    cls.add_method('GetUid', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6209
                   'uint64_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6210
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6211
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6212
    ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6213
    cls.add_method('PeekData', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6214
                   'uint8_t const *', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6215
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6216
                   deprecated=True, is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6217
    ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6218
    cls.add_method('PeekHeader', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6219
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6220
                   [param('ns3::Header &', 'header')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6221
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6222
    ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6223
    cls.add_method('PeekPacketTag', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6224
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6225
                   [param('ns3::Tag &', 'tag')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6226
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6227
    ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6228
    cls.add_method('PeekTrailer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6229
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6230
                   [param('ns3::Trailer &', 'trailer')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6231
    ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6232
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6233
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6234
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6235
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6236
    ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6237
    cls.add_method('PrintByteTags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6238
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6239
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6240
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6241
    ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6242
    cls.add_method('PrintPacketTags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6243
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6244
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6245
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6246
    ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6247
    cls.add_method('RemoveAllByteTags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6248
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6249
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6250
    ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6251
    cls.add_method('RemoveAllPacketTags', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6252
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6253
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6254
    ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6255
    cls.add_method('RemoveAtEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6256
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6257
                   [param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6258
    ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6259
    cls.add_method('RemoveAtStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6260
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6261
                   [param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6262
    ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6263
    cls.add_method('RemoveHeader', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6264
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6265
                   [param('ns3::Header &', 'header')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6266
    ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6267
    cls.add_method('RemovePacketTag', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6268
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6269
                   [param('ns3::Tag &', 'tag')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6270
    ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6271
    cls.add_method('RemoveTrailer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6272
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6273
                   [param('ns3::Trailer &', 'trailer')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6274
    ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6275
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6276
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6277
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6278
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6279
    ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6280
    cls.add_method('SetNixVector', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6281
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6282
                   [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6283
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6284
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6285
def register_Ns3PacketSocket_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6286
    ## packet-socket.h (module 'network'): ns3::PacketSocket::PacketSocket(ns3::PacketSocket const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6287
    cls.add_constructor([param('ns3::PacketSocket const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6288
    ## packet-socket.h (module 'network'): ns3::PacketSocket::PacketSocket() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6289
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6290
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Bind() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6291
    cls.add_method('Bind', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6292
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6293
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6294
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6295
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Bind(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6296
    cls.add_method('Bind', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6297
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6298
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6299
                   is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  6300
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Bind6() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  6301
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  6302
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  6303
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  6304
                   is_virtual=True)
6881
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6305
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Close() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6306
    cls.add_method('Close', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6307
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6308
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6309
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6310
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Connect(ns3::Address const & address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6311
    cls.add_method('Connect', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6312
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6313
                   [param('ns3::Address const &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6314
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6315
    ## packet-socket.h (module 'network'): bool ns3::PacketSocket::GetAllowBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6316
    cls.add_method('GetAllowBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6317
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6318
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6319
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6320
    ## packet-socket.h (module 'network'): ns3::Socket::SocketErrno ns3::PacketSocket::GetErrno() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6321
    cls.add_method('GetErrno', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6322
                   'ns3::Socket::SocketErrno', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6323
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6324
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6325
    ## packet-socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::PacketSocket::GetNode() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6326
    cls.add_method('GetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6327
                   'ns3::Ptr< ns3::Node >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6328
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6329
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6330
    ## packet-socket.h (module 'network'): uint32_t ns3::PacketSocket::GetRxAvailable() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6331
    cls.add_method('GetRxAvailable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6332
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6333
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6334
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6335
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::GetSockName(ns3::Address & address) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6336
    cls.add_method('GetSockName', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6337
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6338
                   [param('ns3::Address &', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6339
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6340
    ## packet-socket.h (module 'network'): ns3::Socket::SocketType ns3::PacketSocket::GetSocketType() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6341
    cls.add_method('GetSocketType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6342
                   'ns3::Socket::SocketType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6343
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6344
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6345
    ## packet-socket.h (module 'network'): uint32_t ns3::PacketSocket::GetTxAvailable() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6346
    cls.add_method('GetTxAvailable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6347
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6348
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6349
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6350
    ## packet-socket.h (module 'network'): static ns3::TypeId ns3::PacketSocket::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6351
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6352
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6353
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6354
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6355
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Listen() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6356
    cls.add_method('Listen', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6357
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6358
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6359
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6360
    ## packet-socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::PacketSocket::Recv(uint32_t maxSize, uint32_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6361
    cls.add_method('Recv', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6362
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6363
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6364
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6365
    ## packet-socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::PacketSocket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6366
    cls.add_method('RecvFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6367
                   'ns3::Ptr< ns3::Packet >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6368
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6369
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6370
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6371
    cls.add_method('Send', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6372
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6373
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6374
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6375
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6376
    cls.add_method('SendTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6377
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6378
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6379
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6380
    ## packet-socket.h (module 'network'): bool ns3::PacketSocket::SetAllowBroadcast(bool allowBroadcast) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6381
    cls.add_method('SetAllowBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6382
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6383
                   [param('bool', 'allowBroadcast')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6384
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6385
    ## packet-socket.h (module 'network'): void ns3::PacketSocket::SetNode(ns3::Ptr<ns3::Node> node) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6386
    cls.add_method('SetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6387
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6388
                   [param('ns3::Ptr< ns3::Node >', 'node')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6389
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::ShutdownRecv() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6390
    cls.add_method('ShutdownRecv', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6391
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6392
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6393
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6394
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::ShutdownSend() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6395
    cls.add_method('ShutdownSend', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6396
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6397
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6398
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6399
    ## packet-socket.h (module 'network'): void ns3::PacketSocket::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6400
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6401
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6402
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6403
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6404
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6405
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6406
def register_Ns3PacketSocketFactory_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6407
    ## packet-socket-factory.h (module 'network'): ns3::PacketSocketFactory::PacketSocketFactory(ns3::PacketSocketFactory const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6408
    cls.add_constructor([param('ns3::PacketSocketFactory const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6409
    ## packet-socket-factory.h (module 'network'): ns3::PacketSocketFactory::PacketSocketFactory() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6410
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6411
    ## packet-socket-factory.h (module 'network'): ns3::Ptr<ns3::Socket> ns3::PacketSocketFactory::CreateSocket() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6412
    cls.add_method('CreateSocket', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6413
                   'ns3::Ptr< ns3::Socket >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6414
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6415
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6416
    ## packet-socket-factory.h (module 'network'): static ns3::TypeId ns3::PacketSocketFactory::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6417
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6418
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6419
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6420
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6421
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6422
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6423
def register_Ns3PbbAddressBlock_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6424
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6425
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6426
    ## packetbb.h (module 'network'): ns3::PbbAddressBlock::PbbAddressBlock(ns3::PbbAddressBlock const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6427
    cls.add_constructor([param('ns3::PbbAddressBlock const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6428
    ## packetbb.h (module 'network'): ns3::PbbAddressBlock::PbbAddressBlock() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6429
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6430
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlock::AddressBack() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6431
    cls.add_method('AddressBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6432
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6433
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6434
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6435
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressBegin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6436
    cls.add_method('AddressBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6437
                   'std::_List_iterator< ns3::Address >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6438
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6439
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Address> ns3::PbbAddressBlock::AddressBegin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6440
    cls.add_method('AddressBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6441
                   'std::_List_const_iterator< ns3::Address >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6442
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6443
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6444
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressClear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6445
    cls.add_method('AddressClear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6446
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6447
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6448
    ## packetbb.h (module 'network'): bool ns3::PbbAddressBlock::AddressEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6449
    cls.add_method('AddressEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6450
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6451
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6452
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6453
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6454
    cls.add_method('AddressEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6455
                   'std::_List_iterator< ns3::Address >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6456
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6457
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Address> ns3::PbbAddressBlock::AddressEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6458
    cls.add_method('AddressEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6459
                   'std::_List_const_iterator< ns3::Address >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6460
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6461
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6462
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressErase(std::_List_iterator<ns3::Address> position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6463
    cls.add_method('AddressErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6464
                   'std::_List_iterator< ns3::Address >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6465
                   [param('std::_List_iterator< ns3::Address >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6466
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressErase(std::_List_iterator<ns3::Address> first, std::_List_iterator<ns3::Address> last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6467
    cls.add_method('AddressErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6468
                   'std::_List_iterator< ns3::Address >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6469
                   [param('std::_List_iterator< ns3::Address >', 'first'), param('std::_List_iterator< ns3::Address >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6470
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlock::AddressFront() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6471
    cls.add_method('AddressFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6472
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6473
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6474
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6475
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressInsert(std::_List_iterator<ns3::Address> position, ns3::Address const value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6476
    cls.add_method('AddressInsert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6477
                   'std::_List_iterator< ns3::Address >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6478
                   [param('std::_List_iterator< ns3::Address >', 'position'), param('ns3::Address const', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6479
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6480
    cls.add_method('AddressPopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6481
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6482
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6483
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6484
    cls.add_method('AddressPopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6485
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6486
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6487
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPushBack(ns3::Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6488
    cls.add_method('AddressPushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6489
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6490
                   [param('ns3::Address', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6491
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPushFront(ns3::Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6492
    cls.add_method('AddressPushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6493
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6494
                   [param('ns3::Address', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6495
    ## packetbb.h (module 'network'): int ns3::PbbAddressBlock::AddressSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6496
    cls.add_method('AddressSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6497
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6498
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6499
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6500
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Deserialize(ns3::Buffer::Iterator & start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6501
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6502
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6503
                   [param('ns3::Buffer::Iterator &', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6504
    ## packetbb.h (module 'network'): uint32_t ns3::PbbAddressBlock::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6505
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6506
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6507
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6508
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6509
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlock::PrefixBack() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6510
    cls.add_method('PrefixBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6511
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6512
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6513
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6514
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixBegin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6515
    cls.add_method('PrefixBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6516
                   'std::_List_iterator< unsigned char >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6517
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6518
    ## packetbb.h (module 'network'): std::_List_const_iterator<unsigned char> ns3::PbbAddressBlock::PrefixBegin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6519
    cls.add_method('PrefixBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6520
                   'std::_List_const_iterator< unsigned char >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6521
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6522
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6523
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixClear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6524
    cls.add_method('PrefixClear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6525
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6526
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6527
    ## packetbb.h (module 'network'): bool ns3::PbbAddressBlock::PrefixEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6528
    cls.add_method('PrefixEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6529
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6530
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6531
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6532
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6533
    cls.add_method('PrefixEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6534
                   'std::_List_iterator< unsigned char >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6535
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6536
    ## packetbb.h (module 'network'): std::_List_const_iterator<unsigned char> ns3::PbbAddressBlock::PrefixEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6537
    cls.add_method('PrefixEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6538
                   'std::_List_const_iterator< unsigned char >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6539
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6540
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6541
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixErase(std::_List_iterator<unsigned char> position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6542
    cls.add_method('PrefixErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6543
                   'std::_List_iterator< unsigned char >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6544
                   [param('std::_List_iterator< unsigned char >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6545
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixErase(std::_List_iterator<unsigned char> first, std::_List_iterator<unsigned char> last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6546
    cls.add_method('PrefixErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6547
                   'std::_List_iterator< unsigned char >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6548
                   [param('std::_List_iterator< unsigned char >', 'first'), param('std::_List_iterator< unsigned char >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6549
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlock::PrefixFront() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6550
    cls.add_method('PrefixFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6551
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6552
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6553
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6554
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixInsert(std::_List_iterator<unsigned char> position, uint8_t const value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6555
    cls.add_method('PrefixInsert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6556
                   'std::_List_iterator< unsigned char >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6557
                   [param('std::_List_iterator< unsigned char >', 'position'), param('uint8_t const', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6558
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6559
    cls.add_method('PrefixPopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6560
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6561
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6562
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6563
    cls.add_method('PrefixPopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6564
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6565
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6566
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPushBack(uint8_t prefix) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6567
    cls.add_method('PrefixPushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6568
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6569
                   [param('uint8_t', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6570
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPushFront(uint8_t prefix) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6571
    cls.add_method('PrefixPushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6572
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6573
                   [param('uint8_t', 'prefix')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6574
    ## packetbb.h (module 'network'): int ns3::PbbAddressBlock::PrefixSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6575
    cls.add_method('PrefixSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6576
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6577
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6578
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6579
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6580
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6581
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6582
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6583
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6584
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Print(std::ostream & os, int level) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6585
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6586
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6587
                   [param('std::ostream &', 'os'), param('int', 'level')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6588
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6589
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Serialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6590
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6591
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6592
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6593
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6594
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressBlock::TlvBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6595
    cls.add_method('TlvBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6596
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6597
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6598
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> const ns3::PbbAddressBlock::TlvBack() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6599
    cls.add_method('TlvBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6600
                   'ns3::Ptr< ns3::PbbAddressTlv > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6601
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6602
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6603
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvBegin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6604
    cls.add_method('TlvBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6605
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6606
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6607
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvBegin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6608
    cls.add_method('TlvBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6609
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6610
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6611
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6612
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvClear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6613
    cls.add_method('TlvClear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6614
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6615
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6616
    ## packetbb.h (module 'network'): bool ns3::PbbAddressBlock::TlvEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6617
    cls.add_method('TlvEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6618
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6619
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6620
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6621
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6622
    cls.add_method('TlvEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6623
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6624
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6625
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6626
    cls.add_method('TlvEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6627
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6628
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6629
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6630
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvErase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6631
    cls.add_method('TlvErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6632
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6633
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6634
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvErase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > first, std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6635
    cls.add_method('TlvErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6636
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6637
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6638
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressBlock::TlvFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6639
    cls.add_method('TlvFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6640
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6641
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6642
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> const ns3::PbbAddressBlock::TlvFront() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6643
    cls.add_method('TlvFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6644
                   'ns3::Ptr< ns3::PbbAddressTlv > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6645
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6646
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6647
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvInsert(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > position, ns3::Ptr<ns3::PbbTlv> const value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6648
    cls.add_method('TlvInsert', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6649
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6650
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position'), param('ns3::Ptr< ns3::PbbTlv > const', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6651
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6652
    cls.add_method('TlvPopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6653
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6654
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6655
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6656
    cls.add_method('TlvPopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6657
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6658
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6659
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPushBack(ns3::Ptr<ns3::PbbAddressTlv> address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6660
    cls.add_method('TlvPushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6661
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6662
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6663
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPushFront(ns3::Ptr<ns3::PbbAddressTlv> address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6664
    cls.add_method('TlvPushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6665
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6666
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6667
    ## packetbb.h (module 'network'): int ns3::PbbAddressBlock::TlvSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6668
    cls.add_method('TlvSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6669
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6670
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6671
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6672
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlock::DeserializeAddress(uint8_t * buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6673
    cls.add_method('DeserializeAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6674
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6675
                   [param('uint8_t *', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6676
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6677
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlock::GetAddressLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6678
    cls.add_method('GetAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6679
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6680
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6681
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6682
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrintAddress(std::ostream & os, std::_List_const_iterator<ns3::Address> iter) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6683
    cls.add_method('PrintAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6684
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6685
                   [param('std::ostream &', 'os'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6686
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6687
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::SerializeAddress(uint8_t * buffer, std::_List_const_iterator<ns3::Address> iter) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6688
    cls.add_method('SerializeAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6689
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6690
                   [param('uint8_t *', 'buffer'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6691
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6692
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6693
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6694
def register_Ns3PbbAddressBlockIpv4_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6695
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv4::PbbAddressBlockIpv4(ns3::PbbAddressBlockIpv4 const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6696
    cls.add_constructor([param('ns3::PbbAddressBlockIpv4 const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6697
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv4::PbbAddressBlockIpv4() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6698
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6699
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlockIpv4::DeserializeAddress(uint8_t * buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6700
    cls.add_method('DeserializeAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6701
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6702
                   [param('uint8_t *', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6703
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6704
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlockIpv4::GetAddressLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6705
    cls.add_method('GetAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6706
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6707
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6708
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6709
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv4::PrintAddress(std::ostream & os, std::_List_const_iterator<ns3::Address> iter) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6710
    cls.add_method('PrintAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6711
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6712
                   [param('std::ostream &', 'os'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6713
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6714
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv4::SerializeAddress(uint8_t * buffer, std::_List_const_iterator<ns3::Address> iter) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6715
    cls.add_method('SerializeAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6716
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6717
                   [param('uint8_t *', 'buffer'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6718
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6719
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6720
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6721
def register_Ns3PbbAddressBlockIpv6_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6722
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv6::PbbAddressBlockIpv6(ns3::PbbAddressBlockIpv6 const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6723
    cls.add_constructor([param('ns3::PbbAddressBlockIpv6 const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6724
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv6::PbbAddressBlockIpv6() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6725
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6726
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlockIpv6::DeserializeAddress(uint8_t * buffer) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6727
    cls.add_method('DeserializeAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6728
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6729
                   [param('uint8_t *', 'buffer')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6730
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6731
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlockIpv6::GetAddressLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6732
    cls.add_method('GetAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6733
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6734
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6735
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6736
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv6::PrintAddress(std::ostream & os, std::_List_const_iterator<ns3::Address> iter) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6737
    cls.add_method('PrintAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6738
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6739
                   [param('std::ostream &', 'os'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6740
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6741
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv6::SerializeAddress(uint8_t * buffer, std::_List_const_iterator<ns3::Address> iter) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6742
    cls.add_method('SerializeAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6743
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6744
                   [param('uint8_t *', 'buffer'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6745
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6746
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6747
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6748
def register_Ns3PbbMessage_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6749
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6750
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6751
    ## packetbb.h (module 'network'): ns3::PbbMessage::PbbMessage(ns3::PbbMessage const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6752
    cls.add_constructor([param('ns3::PbbMessage const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6753
    ## packetbb.h (module 'network'): ns3::PbbMessage::PbbMessage() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6754
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6755
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessage::AddressBlockBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6756
    cls.add_method('AddressBlockBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6757
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6758
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6759
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> const ns3::PbbMessage::AddressBlockBack() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6760
    cls.add_method('AddressBlockBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6761
                   'ns3::Ptr< ns3::PbbAddressBlock > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6762
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6763
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6764
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockBegin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6765
    cls.add_method('AddressBlockBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6766
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6767
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6768
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockBegin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6769
    cls.add_method('AddressBlockBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6770
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6771
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6772
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6773
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockClear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6774
    cls.add_method('AddressBlockClear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6775
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6776
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6777
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::AddressBlockEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6778
    cls.add_method('AddressBlockEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6779
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6780
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6781
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6782
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6783
    cls.add_method('AddressBlockEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6784
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6785
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6786
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6787
    cls.add_method('AddressBlockEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6788
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6789
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6790
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6791
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockErase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6792
    cls.add_method('AddressBlockErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6793
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6794
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6795
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockErase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > first, std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6796
    cls.add_method('AddressBlockErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6797
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6798
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6799
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessage::AddressBlockFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6800
    cls.add_method('AddressBlockFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6801
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6802
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6803
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> const ns3::PbbMessage::AddressBlockFront() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6804
    cls.add_method('AddressBlockFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6805
                   'ns3::Ptr< ns3::PbbAddressBlock > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6806
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6807
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6808
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6809
    cls.add_method('AddressBlockPopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6810
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6811
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6812
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6813
    cls.add_method('AddressBlockPopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6814
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6815
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6816
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPushBack(ns3::Ptr<ns3::PbbAddressBlock> block) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6817
    cls.add_method('AddressBlockPushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6818
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6819
                   [param('ns3::Ptr< ns3::PbbAddressBlock >', 'block')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6820
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPushFront(ns3::Ptr<ns3::PbbAddressBlock> block) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6821
    cls.add_method('AddressBlockPushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6822
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6823
                   [param('ns3::Ptr< ns3::PbbAddressBlock >', 'block')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6824
    ## packetbb.h (module 'network'): int ns3::PbbMessage::AddressBlockSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6825
    cls.add_method('AddressBlockSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6826
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6827
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6828
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6829
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Deserialize(ns3::Buffer::Iterator & start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6830
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6831
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6832
                   [param('ns3::Buffer::Iterator &', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6833
    ## packetbb.h (module 'network'): static ns3::Ptr<ns3::PbbMessage> ns3::PbbMessage::DeserializeMessage(ns3::Buffer::Iterator & start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6834
    cls.add_method('DeserializeMessage', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6835
                   'ns3::Ptr< ns3::PbbMessage >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6836
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6837
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6838
    ## packetbb.h (module 'network'): uint8_t ns3::PbbMessage::GetHopCount() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6839
    cls.add_method('GetHopCount', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6840
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6841
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6842
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6843
    ## packetbb.h (module 'network'): uint8_t ns3::PbbMessage::GetHopLimit() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6844
    cls.add_method('GetHopLimit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6845
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6846
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6847
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6848
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessage::GetOriginatorAddress() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6849
    cls.add_method('GetOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6850
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6851
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6852
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6853
    ## packetbb.h (module 'network'): uint16_t ns3::PbbMessage::GetSequenceNumber() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6854
    cls.add_method('GetSequenceNumber', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6855
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6856
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6857
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6858
    ## packetbb.h (module 'network'): uint32_t ns3::PbbMessage::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6859
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6860
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6861
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6862
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6863
    ## packetbb.h (module 'network'): uint8_t ns3::PbbMessage::GetType() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6864
    cls.add_method('GetType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6865
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6866
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6867
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6868
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasHopCount() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6869
    cls.add_method('HasHopCount', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6870
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6871
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6872
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6873
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasHopLimit() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6874
    cls.add_method('HasHopLimit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6875
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6876
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6877
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6878
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasOriginatorAddress() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6879
    cls.add_method('HasOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6880
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6881
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6882
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6883
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasSequenceNumber() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6884
    cls.add_method('HasSequenceNumber', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6885
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6886
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6887
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6888
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6889
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6890
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6891
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6892
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6893
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Print(std::ostream & os, int level) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6894
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6895
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6896
                   [param('std::ostream &', 'os'), param('int', 'level')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6897
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6898
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Serialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6899
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6900
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6901
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6902
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6903
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetHopCount(uint8_t hopcount) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6904
    cls.add_method('SetHopCount', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6905
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6906
                   [param('uint8_t', 'hopcount')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6907
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetHopLimit(uint8_t hoplimit) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6908
    cls.add_method('SetHopLimit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6909
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6910
                   [param('uint8_t', 'hoplimit')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6911
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetOriginatorAddress(ns3::Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6912
    cls.add_method('SetOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6913
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6914
                   [param('ns3::Address', 'address')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6915
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetSequenceNumber(uint16_t seqnum) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6916
    cls.add_method('SetSequenceNumber', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6917
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6918
                   [param('uint16_t', 'seqnum')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6919
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetType(uint8_t type) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6920
    cls.add_method('SetType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6921
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6922
                   [param('uint8_t', 'type')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6923
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbMessage::TlvBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6924
    cls.add_method('TlvBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6925
                   'ns3::Ptr< ns3::PbbTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6926
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6927
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbMessage::TlvBack() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6928
    cls.add_method('TlvBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6929
                   'ns3::Ptr< ns3::PbbTlv > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6930
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6931
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6932
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvBegin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6933
    cls.add_method('TlvBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6934
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6935
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6936
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvBegin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6937
    cls.add_method('TlvBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6938
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6939
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6940
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6941
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvClear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6942
    cls.add_method('TlvClear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6943
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6944
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6945
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::TlvEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6946
    cls.add_method('TlvEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6947
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6948
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6949
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6950
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6951
    cls.add_method('TlvEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6952
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6953
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6954
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6955
    cls.add_method('TlvEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6956
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6957
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6958
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6959
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvErase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6960
    cls.add_method('TlvErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6961
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6962
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6963
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvErase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > first, std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6964
    cls.add_method('TlvErase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6965
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6966
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6967
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbMessage::TlvFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6968
    cls.add_method('TlvFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6969
                   'ns3::Ptr< ns3::PbbTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6970
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6971
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbMessage::TlvFront() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6972
    cls.add_method('TlvFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6973
                   'ns3::Ptr< ns3::PbbTlv > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6974
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6975
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6976
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6977
    cls.add_method('TlvPopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6978
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6979
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6980
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6981
    cls.add_method('TlvPopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6982
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6983
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6984
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPushBack(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6985
    cls.add_method('TlvPushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6986
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6987
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6988
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPushFront(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6989
    cls.add_method('TlvPushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6990
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6991
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6992
    ## packetbb.h (module 'network'): int ns3::PbbMessage::TlvSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6993
    cls.add_method('TlvSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6994
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6995
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6996
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6997
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessage::AddressBlockDeserialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6998
    cls.add_method('AddressBlockDeserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6999
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7000
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7001
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7002
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessage::DeserializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7003
    cls.add_method('DeserializeOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7004
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7005
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7006
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7007
    ## packetbb.h (module 'network'): ns3::PbbAddressLength ns3::PbbMessage::GetAddressLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7008
    cls.add_method('GetAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7009
                   'ns3::PbbAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7010
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7011
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7012
    ## packetbb.h (module 'network'): void ns3::PbbMessage::PrintOriginatorAddress(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7013
    cls.add_method('PrintOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7014
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7015
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7016
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7017
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SerializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7018
    cls.add_method('SerializeOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7019
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7020
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7021
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7022
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7023
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7024
def register_Ns3PbbMessageIpv4_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7025
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv4::PbbMessageIpv4(ns3::PbbMessageIpv4 const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7026
    cls.add_constructor([param('ns3::PbbMessageIpv4 const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7027
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv4::PbbMessageIpv4() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7028
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7029
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessageIpv4::AddressBlockDeserialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7030
    cls.add_method('AddressBlockDeserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7031
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7032
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7033
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7034
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessageIpv4::DeserializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7035
    cls.add_method('DeserializeOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7036
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7037
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7038
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7039
    ## packetbb.h (module 'network'): ns3::PbbAddressLength ns3::PbbMessageIpv4::GetAddressLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7040
    cls.add_method('GetAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7041
                   'ns3::PbbAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7042
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7043
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7044
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv4::PrintOriginatorAddress(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7045
    cls.add_method('PrintOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7046
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7047
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7048
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7049
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv4::SerializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7050
    cls.add_method('SerializeOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7051
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7052
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7053
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7054
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7055
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7056
def register_Ns3PbbMessageIpv6_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7057
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv6::PbbMessageIpv6(ns3::PbbMessageIpv6 const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7058
    cls.add_constructor([param('ns3::PbbMessageIpv6 const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7059
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv6::PbbMessageIpv6() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7060
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7061
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessageIpv6::AddressBlockDeserialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7062
    cls.add_method('AddressBlockDeserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7063
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7064
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7065
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7066
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessageIpv6::DeserializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7067
    cls.add_method('DeserializeOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7068
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7069
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7070
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7071
    ## packetbb.h (module 'network'): ns3::PbbAddressLength ns3::PbbMessageIpv6::GetAddressLength() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7072
    cls.add_method('GetAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7073
                   'ns3::PbbAddressLength', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7074
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7075
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7076
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv6::PrintOriginatorAddress(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7077
    cls.add_method('PrintOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7078
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7079
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7080
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7081
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv6::SerializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7082
    cls.add_method('SerializeOriginatorAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7083
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7084
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7085
                   is_const=True, visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7086
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7087
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7088
def register_Ns3PbbPacket_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7089
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7090
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7091
    ## packetbb.h (module 'network'): ns3::PbbPacket::PbbPacket(ns3::PbbPacket const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7092
    cls.add_constructor([param('ns3::PbbPacket const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7093
    ## packetbb.h (module 'network'): ns3::PbbPacket::PbbPacket() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7094
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7095
    ## packetbb.h (module 'network'): uint32_t ns3::PbbPacket::Deserialize(ns3::Buffer::Iterator start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7096
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7097
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7098
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7099
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7100
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7101
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7102
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7103
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7104
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > first, std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7105
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7106
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7107
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7108
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > position) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7109
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7110
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7111
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 'position')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7112
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > first, std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > last) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7113
    cls.add_method('Erase', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7114
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7115
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 'last')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7116
    ## packetbb.h (module 'network'): ns3::TypeId ns3::PbbPacket::GetInstanceTypeId() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7117
    cls.add_method('GetInstanceTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7118
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7119
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7120
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7121
    ## packetbb.h (module 'network'): uint16_t ns3::PbbPacket::GetSequenceNumber() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7122
    cls.add_method('GetSequenceNumber', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7123
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7124
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7125
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7126
    ## packetbb.h (module 'network'): uint32_t ns3::PbbPacket::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7127
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7128
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7129
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7130
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7131
    ## packetbb.h (module 'network'): static ns3::TypeId ns3::PbbPacket::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7132
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7133
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7134
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7135
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7136
    ## packetbb.h (module 'network'): uint8_t ns3::PbbPacket::GetVersion() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7137
    cls.add_method('GetVersion', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7138
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7139
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7140
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7141
    ## packetbb.h (module 'network'): bool ns3::PbbPacket::HasSequenceNumber() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7142
    cls.add_method('HasSequenceNumber', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7143
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7144
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7145
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7146
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> ns3::PbbPacket::MessageBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7147
    cls.add_method('MessageBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7148
                   'ns3::Ptr< ns3::PbbMessage >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7149
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7150
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> const ns3::PbbPacket::MessageBack() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7151
    cls.add_method('MessageBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7152
                   'ns3::Ptr< ns3::PbbMessage > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7153
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7154
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7155
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageBegin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7156
    cls.add_method('MessageBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7157
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7158
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7159
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageBegin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7160
    cls.add_method('MessageBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7161
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbMessage > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7162
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7163
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7164
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessageClear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7165
    cls.add_method('MessageClear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7166
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7167
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7168
    ## packetbb.h (module 'network'): bool ns3::PbbPacket::MessageEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7169
    cls.add_method('MessageEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7170
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7171
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7172
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7173
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7174
    cls.add_method('MessageEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7175
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7176
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7177
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7178
    cls.add_method('MessageEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7179
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbMessage > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7180
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7181
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7182
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> ns3::PbbPacket::MessageFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7183
    cls.add_method('MessageFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7184
                   'ns3::Ptr< ns3::PbbMessage >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7185
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7186
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> const ns3::PbbPacket::MessageFront() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7187
    cls.add_method('MessageFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7188
                   'ns3::Ptr< ns3::PbbMessage > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7189
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7190
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7191
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7192
    cls.add_method('MessagePopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7193
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7194
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7195
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7196
    cls.add_method('MessagePopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7197
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7198
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7199
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePushBack(ns3::Ptr<ns3::PbbMessage> message) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7200
    cls.add_method('MessagePushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7201
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7202
                   [param('ns3::Ptr< ns3::PbbMessage >', 'message')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7203
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePushFront(ns3::Ptr<ns3::PbbMessage> message) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7204
    cls.add_method('MessagePushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7205
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7206
                   [param('ns3::Ptr< ns3::PbbMessage >', 'message')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7207
    ## packetbb.h (module 'network'): int ns3::PbbPacket::MessageSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7208
    cls.add_method('MessageSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7209
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7210
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7211
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7212
    ## packetbb.h (module 'network'): void ns3::PbbPacket::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7213
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7214
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7215
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7216
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7217
    ## packetbb.h (module 'network'): void ns3::PbbPacket::Serialize(ns3::Buffer::Iterator start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7218
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7219
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7220
                   [param('ns3::Buffer::Iterator', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7221
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7222
    ## packetbb.h (module 'network'): void ns3::PbbPacket::SetSequenceNumber(uint16_t number) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7223
    cls.add_method('SetSequenceNumber', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7224
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7225
                   [param('uint16_t', 'number')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7226
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbPacket::TlvBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7227
    cls.add_method('TlvBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7228
                   'ns3::Ptr< ns3::PbbTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7229
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7230
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbPacket::TlvBack() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7231
    cls.add_method('TlvBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7232
                   'ns3::Ptr< ns3::PbbTlv > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7233
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7234
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7235
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvBegin() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7236
    cls.add_method('TlvBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7237
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7238
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7239
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvBegin() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7240
    cls.add_method('TlvBegin', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7241
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7242
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7243
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7244
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvClear() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7245
    cls.add_method('TlvClear', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7246
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7247
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7248
    ## packetbb.h (module 'network'): bool ns3::PbbPacket::TlvEmpty() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7249
    cls.add_method('TlvEmpty', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7250
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7251
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7252
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7253
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvEnd() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7254
    cls.add_method('TlvEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7255
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7256
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7257
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvEnd() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7258
    cls.add_method('TlvEnd', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7259
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7260
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7261
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7262
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbPacket::TlvFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7263
    cls.add_method('TlvFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7264
                   'ns3::Ptr< ns3::PbbTlv >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7265
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7266
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbPacket::TlvFront() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7267
    cls.add_method('TlvFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7268
                   'ns3::Ptr< ns3::PbbTlv > const', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7269
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7270
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7271
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPopBack() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7272
    cls.add_method('TlvPopBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7273
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7274
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7275
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPopFront() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7276
    cls.add_method('TlvPopFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7277
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7278
                   [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7279
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPushBack(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7280
    cls.add_method('TlvPushBack', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7281
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7282
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7283
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPushFront(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7284
    cls.add_method('TlvPushFront', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7285
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7286
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7287
    ## packetbb.h (module 'network'): int ns3::PbbPacket::TlvSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7288
    cls.add_method('TlvSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7289
                   'int', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7290
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7291
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7292
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7293
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7294
def register_Ns3PbbTlv_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7295
    cls.add_binary_comparison_operator('==')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7296
    cls.add_binary_comparison_operator('!=')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7297
    ## packetbb.h (module 'network'): ns3::PbbTlv::PbbTlv(ns3::PbbTlv const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7298
    cls.add_constructor([param('ns3::PbbTlv const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7299
    ## packetbb.h (module 'network'): ns3::PbbTlv::PbbTlv() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7300
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7301
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Deserialize(ns3::Buffer::Iterator & start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7302
    cls.add_method('Deserialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7303
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7304
                   [param('ns3::Buffer::Iterator &', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7305
    ## packetbb.h (module 'network'): uint32_t ns3::PbbTlv::GetSerializedSize() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7306
    cls.add_method('GetSerializedSize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7307
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7308
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7309
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7310
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetType() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7311
    cls.add_method('GetType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7312
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7313
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7314
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7315
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetTypeExt() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7316
    cls.add_method('GetTypeExt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7317
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7318
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7319
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7320
    ## packetbb.h (module 'network'): ns3::Buffer ns3::PbbTlv::GetValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7321
    cls.add_method('GetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7322
                   'ns3::Buffer', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7323
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7324
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7325
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasTypeExt() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7326
    cls.add_method('HasTypeExt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7327
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7328
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7329
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7330
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasValue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7331
    cls.add_method('HasValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7332
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7333
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7334
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7335
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Print(std::ostream & os) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7336
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7337
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7338
                   [param('std::ostream &', 'os')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7339
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7340
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Print(std::ostream & os, int level) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7341
    cls.add_method('Print', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7342
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7343
                   [param('std::ostream &', 'os'), param('int', 'level')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7344
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7345
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Serialize(ns3::Buffer::Iterator & start) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7346
    cls.add_method('Serialize', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7347
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7348
                   [param('ns3::Buffer::Iterator &', 'start')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7349
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7350
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetType(uint8_t type) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7351
    cls.add_method('SetType', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7352
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7353
                   [param('uint8_t', 'type')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7354
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetTypeExt(uint8_t type) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7355
    cls.add_method('SetTypeExt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7356
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7357
                   [param('uint8_t', 'type')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7358
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetValue(ns3::Buffer start) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7359
    cls.add_method('SetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7360
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7361
                   [param('ns3::Buffer', 'start')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7362
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetValue(uint8_t const * buffer, uint32_t size) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7363
    cls.add_method('SetValue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7364
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7365
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7366
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetIndexStart() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7367
    cls.add_method('GetIndexStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7368
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7369
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7370
                   is_const=True, visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7371
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetIndexStop() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7372
    cls.add_method('GetIndexStop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7373
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7374
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7375
                   is_const=True, visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7376
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasIndexStart() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7377
    cls.add_method('HasIndexStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7378
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7379
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7380
                   is_const=True, visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7381
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasIndexStop() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7382
    cls.add_method('HasIndexStop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7383
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7384
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7385
                   is_const=True, visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7386
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::IsMultivalue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7387
    cls.add_method('IsMultivalue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7388
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7389
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7390
                   is_const=True, visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7391
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetIndexStart(uint8_t index) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7392
    cls.add_method('SetIndexStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7393
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7394
                   [param('uint8_t', 'index')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7395
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7396
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetIndexStop(uint8_t index) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7397
    cls.add_method('SetIndexStop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7398
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7399
                   [param('uint8_t', 'index')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7400
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7401
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetMultivalue(bool isMultivalue) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7402
    cls.add_method('SetMultivalue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7403
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7404
                   [param('bool', 'isMultivalue')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7405
                   visibility='protected')
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7406
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7407
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7408
def register_Ns3RandomVariableChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7409
    ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7410
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7411
    ## random-variable.h (module 'core'): ns3::RandomVariableChecker::RandomVariableChecker(ns3::RandomVariableChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7412
    cls.add_constructor([param('ns3::RandomVariableChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7413
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7414
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7415
def register_Ns3RandomVariableValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7416
    ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7417
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7418
    ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariableValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7419
    cls.add_constructor([param('ns3::RandomVariableValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7420
    ## random-variable.h (module 'core'): ns3::RandomVariableValue::RandomVariableValue(ns3::RandomVariable const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7421
    cls.add_constructor([param('ns3::RandomVariable const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7422
    ## random-variable.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::RandomVariableValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7423
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7424
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7425
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7426
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7427
    ## random-variable.h (module 'core'): bool ns3::RandomVariableValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7428
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7429
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7430
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7431
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7432
    ## random-variable.h (module 'core'): ns3::RandomVariable ns3::RandomVariableValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7433
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7434
                   'ns3::RandomVariable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7435
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7436
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7437
    ## random-variable.h (module 'core'): std::string ns3::RandomVariableValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7438
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7439
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7440
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7441
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7442
    ## random-variable.h (module 'core'): void ns3::RandomVariableValue::Set(ns3::RandomVariable const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7443
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7444
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7445
                   [param('ns3::RandomVariable const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7446
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7447
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7448
def register_Ns3RateErrorModel_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7449
    ## error-model.h (module 'network'): ns3::RateErrorModel::RateErrorModel(ns3::RateErrorModel const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7450
    cls.add_constructor([param('ns3::RateErrorModel const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7451
    ## error-model.h (module 'network'): ns3::RateErrorModel::RateErrorModel() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7452
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7453
    ## error-model.h (module 'network'): double ns3::RateErrorModel::GetRate() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7454
    cls.add_method('GetRate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7455
                   'double', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7456
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7457
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7458
    ## error-model.h (module 'network'): static ns3::TypeId ns3::RateErrorModel::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7459
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7460
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7461
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7462
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7463
    ## error-model.h (module 'network'): ns3::ErrorUnit ns3::RateErrorModel::GetUnit() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7464
    cls.add_method('GetUnit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7465
                   'ns3::ErrorUnit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7466
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7467
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7468
    ## error-model.h (module 'network'): void ns3::RateErrorModel::SetRandomVariable(ns3::RandomVariable const & ranvar) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7469
    cls.add_method('SetRandomVariable', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7470
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7471
                   [param('ns3::RandomVariable const &', 'ranvar')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7472
    ## error-model.h (module 'network'): void ns3::RateErrorModel::SetRate(double rate) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7473
    cls.add_method('SetRate', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7474
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7475
                   [param('double', 'rate')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7476
    ## error-model.h (module 'network'): void ns3::RateErrorModel::SetUnit(ns3::ErrorUnit error_unit) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7477
    cls.add_method('SetUnit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7478
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7479
                   [param('ns3::ErrorUnit', 'error_unit')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7480
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7481
    cls.add_method('DoCorrupt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7482
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7483
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7484
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7485
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorruptBit(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7486
    cls.add_method('DoCorruptBit', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7487
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7488
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7489
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7490
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorruptByte(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7491
    cls.add_method('DoCorruptByte', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7492
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7493
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7494
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7495
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorruptPkt(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7496
    cls.add_method('DoCorruptPkt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7497
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7498
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7499
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7500
    ## error-model.h (module 'network'): void ns3::RateErrorModel::DoReset() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7501
    cls.add_method('DoReset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7502
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7503
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7504
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7505
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7506
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7507
def register_Ns3ReceiveListErrorModel_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7508
    ## error-model.h (module 'network'): ns3::ReceiveListErrorModel::ReceiveListErrorModel(ns3::ReceiveListErrorModel const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7509
    cls.add_constructor([param('ns3::ReceiveListErrorModel const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7510
    ## error-model.h (module 'network'): ns3::ReceiveListErrorModel::ReceiveListErrorModel() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7511
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7512
    ## error-model.h (module 'network'): std::list<unsigned int, std::allocator<unsigned int> > ns3::ReceiveListErrorModel::GetList() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7513
    cls.add_method('GetList', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7514
                   'std::list< unsigned int >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7515
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7516
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7517
    ## error-model.h (module 'network'): static ns3::TypeId ns3::ReceiveListErrorModel::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7518
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7519
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7520
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7521
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7522
    ## error-model.h (module 'network'): void ns3::ReceiveListErrorModel::SetList(std::list<unsigned int, std::allocator<unsigned int> > const & packetlist) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7523
    cls.add_method('SetList', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7524
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7525
                   [param('std::list< unsigned int > const &', 'packetlist')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7526
    ## error-model.h (module 'network'): bool ns3::ReceiveListErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7527
    cls.add_method('DoCorrupt', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7528
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7529
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7530
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7531
    ## error-model.h (module 'network'): void ns3::ReceiveListErrorModel::DoReset() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7532
    cls.add_method('DoReset', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7533
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7534
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7535
                   visibility='private', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7536
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7537
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7538
def register_Ns3SimpleChannel_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7539
    ## simple-channel.h (module 'network'): ns3::SimpleChannel::SimpleChannel(ns3::SimpleChannel const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7540
    cls.add_constructor([param('ns3::SimpleChannel const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7541
    ## simple-channel.h (module 'network'): ns3::SimpleChannel::SimpleChannel() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7542
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7543
    ## simple-channel.h (module 'network'): void ns3::SimpleChannel::Add(ns3::Ptr<ns3::SimpleNetDevice> device) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7544
    cls.add_method('Add', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7545
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7546
                   [param('ns3::Ptr< ns3::SimpleNetDevice >', 'device')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7547
    ## simple-channel.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::SimpleChannel::GetDevice(uint32_t i) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7548
    cls.add_method('GetDevice', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7549
                   'ns3::Ptr< ns3::NetDevice >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7550
                   [param('uint32_t', 'i')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7551
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7552
    ## simple-channel.h (module 'network'): uint32_t ns3::SimpleChannel::GetNDevices() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7553
    cls.add_method('GetNDevices', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7554
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7555
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7556
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7557
    ## simple-channel.h (module 'network'): static ns3::TypeId ns3::SimpleChannel::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7558
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7559
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7560
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7561
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7562
    ## simple-channel.h (module 'network'): void ns3::SimpleChannel::Send(ns3::Ptr<ns3::Packet> p, uint16_t protocol, ns3::Mac48Address to, ns3::Mac48Address from, ns3::Ptr<ns3::SimpleNetDevice> sender) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7563
    cls.add_method('Send', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7564
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7565
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint16_t', 'protocol'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from'), param('ns3::Ptr< ns3::SimpleNetDevice >', 'sender')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7566
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7567
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7568
def register_Ns3SimpleNetDevice_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7569
    ## simple-net-device.h (module 'network'): ns3::SimpleNetDevice::SimpleNetDevice(ns3::SimpleNetDevice const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7570
    cls.add_constructor([param('ns3::SimpleNetDevice const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7571
    ## simple-net-device.h (module 'network'): ns3::SimpleNetDevice::SimpleNetDevice() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7572
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7573
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::AddLinkChangeCallback(ns3::Callback<void,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> callback) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7574
    cls.add_method('AddLinkChangeCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7575
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7576
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7577
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7578
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetAddress() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7579
    cls.add_method('GetAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7580
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7581
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7582
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7583
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7584
    cls.add_method('GetBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7585
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7586
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7587
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7588
    ## simple-net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::SimpleNetDevice::GetChannel() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7589
    cls.add_method('GetChannel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7590
                   'ns3::Ptr< ns3::Channel >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7591
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7592
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7593
    ## simple-net-device.h (module 'network'): uint32_t ns3::SimpleNetDevice::GetIfIndex() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7594
    cls.add_method('GetIfIndex', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7595
                   'uint32_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7596
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7597
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7598
    ## simple-net-device.h (module 'network'): uint16_t ns3::SimpleNetDevice::GetMtu() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7599
    cls.add_method('GetMtu', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7600
                   'uint16_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7601
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7602
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7603
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7604
    cls.add_method('GetMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7605
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7606
                   [param('ns3::Ipv4Address', 'multicastGroup')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7607
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7608
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7609
    cls.add_method('GetMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7610
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7611
                   [param('ns3::Ipv6Address', 'addr')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7612
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7613
    ## simple-net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::SimpleNetDevice::GetNode() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7614
    cls.add_method('GetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7615
                   'ns3::Ptr< ns3::Node >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7616
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7617
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7618
    ## simple-net-device.h (module 'network'): static ns3::TypeId ns3::SimpleNetDevice::GetTypeId() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7619
    cls.add_method('GetTypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7620
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7621
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7622
                   is_static=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7623
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsBridge() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7624
    cls.add_method('IsBridge', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7625
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7626
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7627
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7628
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsBroadcast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7629
    cls.add_method('IsBroadcast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7630
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7631
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7632
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7633
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsLinkUp() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7634
    cls.add_method('IsLinkUp', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7635
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7636
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7637
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7638
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsMulticast() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7639
    cls.add_method('IsMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7640
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7641
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7642
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7643
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsPointToPoint() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7644
    cls.add_method('IsPointToPoint', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7645
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7646
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7647
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7648
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::NeedsArp() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7649
    cls.add_method('NeedsArp', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7650
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7651
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7652
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7653
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::Receive(ns3::Ptr<ns3::Packet> packet, uint16_t protocol, ns3::Mac48Address to, ns3::Mac48Address from) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7654
    cls.add_method('Receive', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7655
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7656
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('uint16_t', 'protocol'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7657
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7658
    cls.add_method('Send', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7659
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7660
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7661
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7662
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::SendFrom(ns3::Ptr<ns3::Packet> packet, ns3::Address const & source, ns3::Address const & dest, uint16_t protocolNumber) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7663
    cls.add_method('SendFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7664
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7665
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7666
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7667
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetAddress(ns3::Address address) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7668
    cls.add_method('SetAddress', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7669
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7670
                   [param('ns3::Address', 'address')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7671
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7672
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetChannel(ns3::Ptr<ns3::SimpleChannel> channel) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7673
    cls.add_method('SetChannel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7674
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7675
                   [param('ns3::Ptr< ns3::SimpleChannel >', 'channel')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7676
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetIfIndex(uint32_t const index) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7677
    cls.add_method('SetIfIndex', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7678
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7679
                   [param('uint32_t const', 'index')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7680
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7681
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::SetMtu(uint16_t const mtu) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7682
    cls.add_method('SetMtu', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7683
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7684
                   [param('uint16_t const', 'mtu')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7685
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7686
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7687
    cls.add_method('SetNode', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7688
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7689
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7690
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7691
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::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]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7692
    cls.add_method('SetPromiscReceiveCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7693
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7694
                   [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')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7695
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7696
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::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]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7697
    cls.add_method('SetReceiveCallback', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7698
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7699
                   [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')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7700
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7701
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetReceiveErrorModel(ns3::Ptr<ns3::ErrorModel> em) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7702
    cls.add_method('SetReceiveErrorModel', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7703
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7704
                   [param('ns3::Ptr< ns3::ErrorModel >', 'em')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7705
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::SupportsSendFrom() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7706
    cls.add_method('SupportsSendFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7707
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7708
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7709
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7710
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::DoDispose() [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7711
    cls.add_method('DoDispose', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7712
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7713
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7714
                   visibility='protected', is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7715
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7716
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7717
def register_Ns3TimeChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7718
    ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7719
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7720
    ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7721
    cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7722
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7723
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7724
def register_Ns3TimeValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7725
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7726
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7727
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7728
    cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7729
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7730
    cls.add_constructor([param('ns3::Time const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7731
    ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7732
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7733
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7734
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7735
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7736
    ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7737
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7738
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7739
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7740
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7741
    ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7742
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7743
                   'ns3::Time', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7744
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7745
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7746
    ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7747
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7748
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7749
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7750
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7751
    ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7752
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7753
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7754
                   [param('ns3::Time const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7755
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7756
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7757
def register_Ns3TypeIdChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7758
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7759
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7760
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7761
    cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7762
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7763
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7764
def register_Ns3TypeIdValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7765
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7766
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7767
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7768
    cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7769
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7770
    cls.add_constructor([param('ns3::TypeId const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7771
    ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7772
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7773
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7774
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7775
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7776
    ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7777
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7778
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7779
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7780
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7781
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7782
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7783
                   'ns3::TypeId', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7784
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7785
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7786
    ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7787
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7788
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7789
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7790
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7791
    ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7792
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7793
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7794
                   [param('ns3::TypeId const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7795
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7796
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7797
def register_Ns3AddressChecker_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7798
    ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7799
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7800
    ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7801
    cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7802
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7803
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7804
def register_Ns3AddressValue_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7805
    ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7806
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7807
    ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7808
    cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7809
    ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7810
    cls.add_constructor([param('ns3::Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7811
    ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7812
    cls.add_method('Copy', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7813
                   'ns3::Ptr< ns3::AttributeValue >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7814
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7815
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7816
    ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7817
    cls.add_method('DeserializeFromString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7818
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7819
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7820
                   is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7821
    ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7822
    cls.add_method('Get', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7823
                   'ns3::Address', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7824
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7825
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7826
    ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7827
    cls.add_method('SerializeToString', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7828
                   'std::string', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7829
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7830
                   is_const=True, is_virtual=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7831
    ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7832
    cls.add_method('Set', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7833
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7834
                   [param('ns3::Address const &', 'value')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7835
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7836
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7837
def register_Ns3PbbAddressTlv_methods(root_module, cls):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7838
    ## packetbb.h (module 'network'): ns3::PbbAddressTlv::PbbAddressTlv() [constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7839
    cls.add_constructor([])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7840
    ## packetbb.h (module 'network'): ns3::PbbAddressTlv::PbbAddressTlv(ns3::PbbAddressTlv const & arg0) [copy constructor]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7841
    cls.add_constructor([param('ns3::PbbAddressTlv const &', 'arg0')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7842
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressTlv::GetIndexStart() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7843
    cls.add_method('GetIndexStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7844
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7845
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7846
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7847
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressTlv::GetIndexStop() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7848
    cls.add_method('GetIndexStop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7849
                   'uint8_t', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7850
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7851
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7852
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlv::HasIndexStart() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7853
    cls.add_method('HasIndexStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7854
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7855
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7856
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7857
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlv::HasIndexStop() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7858
    cls.add_method('HasIndexStop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7859
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7860
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7861
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7862
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlv::IsMultivalue() const [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7863
    cls.add_method('IsMultivalue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7864
                   'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7865
                   [], 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7866
                   is_const=True)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7867
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlv::SetIndexStart(uint8_t index) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7868
    cls.add_method('SetIndexStart', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7869
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7870
                   [param('uint8_t', 'index')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7871
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlv::SetIndexStop(uint8_t index) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7872
    cls.add_method('SetIndexStop', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7873
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7874
                   [param('uint8_t', 'index')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7875
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlv::SetMultivalue(bool isMultivalue) [member function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7876
    cls.add_method('SetMultivalue', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7877
                   'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7878
                   [param('bool', 'isMultivalue')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7879
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7880
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7881
def register_functions(root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7882
    module = root_module
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7883
    ## address.h (module 'network'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeAddressChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7884
    module.add_function('MakeAddressChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7885
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7886
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7887
    ## data-rate.h (module 'network'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeDataRateChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7888
    module.add_function('MakeDataRateChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7889
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7890
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7891
    ## ipv4-address.h (module 'network'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeIpv4AddressChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7892
    module.add_function('MakeIpv4AddressChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7893
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7894
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7895
    ## ipv4-address.h (module 'network'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeIpv4MaskChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7896
    module.add_function('MakeIpv4MaskChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7897
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7898
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7899
    ## ipv6-address.h (module 'network'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeIpv6AddressChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7900
    module.add_function('MakeIpv6AddressChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7901
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7902
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7903
    ## ipv6-address.h (module 'network'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeIpv6PrefixChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7904
    module.add_function('MakeIpv6PrefixChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7905
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7906
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7907
    ## mac48-address.h (module 'network'): extern ns3::Ptr<ns3::AttributeChecker const> ns3::MakeMac48AddressChecker() [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7908
    module.add_function('MakeMac48AddressChecker', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7909
                        'ns3::Ptr< ns3::AttributeChecker const >', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7910
                        [])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7911
    ## address-utils.h (module 'network'): extern void ns3::ReadFrom(ns3::Buffer::Iterator & i, ns3::Address & ad, uint32_t len) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7912
    module.add_function('ReadFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7913
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7914
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Address &', 'ad'), param('uint32_t', 'len')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7915
    ## address-utils.h (module 'network'): extern void ns3::ReadFrom(ns3::Buffer::Iterator & i, ns3::Ipv4Address & ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7916
    module.add_function('ReadFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7917
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7918
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Ipv4Address &', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7919
    ## address-utils.h (module 'network'): extern void ns3::ReadFrom(ns3::Buffer::Iterator & i, ns3::Ipv6Address & ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7920
    module.add_function('ReadFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7921
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7922
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Ipv6Address &', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7923
    ## address-utils.h (module 'network'): extern void ns3::ReadFrom(ns3::Buffer::Iterator & i, ns3::Mac48Address & ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7924
    module.add_function('ReadFrom', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7925
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7926
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Mac48Address &', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7927
    ## address-utils.h (module 'network'): extern void ns3::WriteTo(ns3::Buffer::Iterator & i, ns3::Address const & ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7928
    module.add_function('WriteTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7929
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7930
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Address const &', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7931
    ## address-utils.h (module 'network'): extern void ns3::WriteTo(ns3::Buffer::Iterator & i, ns3::Ipv4Address ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7932
    module.add_function('WriteTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7933
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7934
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Ipv4Address', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7935
    ## address-utils.h (module 'network'): extern void ns3::WriteTo(ns3::Buffer::Iterator & i, ns3::Ipv6Address ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7936
    module.add_function('WriteTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7937
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7938
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Ipv6Address', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7939
    ## address-utils.h (module 'network'): extern void ns3::WriteTo(ns3::Buffer::Iterator & i, ns3::Mac48Address ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7940
    module.add_function('WriteTo', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7941
                        'void', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7942
                        [param('ns3::Buffer::Iterator &', 'i'), param('ns3::Mac48Address', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7943
    register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7944
    register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7945
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7946
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7947
def register_functions_ns3_FatalImpl(module, root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7948
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7949
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7950
def register_functions_ns3_addressUtils(module, root_module):
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7951
    ## address-utils.h (module 'network'): extern bool ns3::addressUtils::IsMulticast(ns3::Address const & ad) [free function]
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7952
    module.add_function('IsMulticast', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7953
                        'bool', 
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7954
                        [param('ns3::Address const &', 'ad')])
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7955
    return
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7956
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7957
def main():
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7958
    out = FileCodeSink(sys.stdout)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7959
    root_module = module_init()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7960
    register_types(root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7961
    register_methods(root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7962
    register_functions(root_module)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7963
    root_module.generate(out)
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7964
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7965
if __name__ == '__main__':
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7966
    main()
318bdcde36e7 Scan modular bindings for the 'core' and 'network' modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7967