src/applications/bindings/modulegen__gcc_ILP32.py
author Tom Henderson <tomh@tomh.org>
Sat, 16 Jan 2016 08:14:40 -0800
changeset 11683 9142266fbb25
parent 11654 5db1372be9a3
permissions -rw-r--r--
add figures to main documentation build
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     1
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     2
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     3
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     4
import pybindgen.settings
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     5
import warnings
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     6
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     7
class ErrorHandler(pybindgen.settings.ErrorHandler):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     8
    def handle_error(self, wrapper, exception, traceback_):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     9
        warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    10
        return True
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    11
pybindgen.settings.error_handler = ErrorHandler()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    12
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    13
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    14
import sys
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    15
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    16
def module_init():
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    17
    root_module = Module('ns.applications', cpp_namespace='::ns3')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    18
    return root_module
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    19
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    20
def register_types(module):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    21
    root_module = module.get_root()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    22
    
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    23
    ## packetbb.h (module 'network'): ns3::PbbAddressLength [enumeration]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    24
    module.add_enum('PbbAddressLength', ['IPV4', 'IPV6'], import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    25
    ## ethernet-header.h (module 'network'): ns3::ethernet_header_t [enumeration]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    26
    module.add_enum('ethernet_header_t', ['LENGTH', 'VLAN', 'QINQ'], import_from_module='ns.network')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    27
    ## address.h (module 'network'): ns3::Address [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    28
    module.add_class('Address', import_from_module='ns.network')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    29
    ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    30
    module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    31
    ## application-container.h (module 'network'): ns3::ApplicationContainer [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    32
    module.add_class('ApplicationContainer', import_from_module='ns.network')
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
    33
    ## ascii-file.h (module 'network'): ns3::AsciiFile [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
    34
    module.add_class('AsciiFile', import_from_module='ns.network')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    35
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    36
    module.add_class('AsciiTraceHelper', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    37
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    38
    module.add_class('AsciiTraceHelperForDevice', allow_subclassing=True, import_from_module='ns.network')
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'])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
    43
    ## average.h (module 'stats'): ns3::Average<double> [class]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
    44
    module.add_class('Average', import_from_module='ns.stats', template_parameters=['double'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    45
    ## buffer.h (module 'network'): ns3::Buffer [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    46
    module.add_class('Buffer', import_from_module='ns.network')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    47
    ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    48
    module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    49
    ## bulk-send-helper.h (module 'applications'): ns3::BulkSendHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    50
    module.add_class('BulkSendHelper')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    51
    ## packet.h (module 'network'): ns3::ByteTagIterator [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    52
    module.add_class('ByteTagIterator', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    53
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    54
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    55
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    56
    module.add_class('ByteTagList', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    57
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    58
    module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    59
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    60
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    61
    ## callback.h (module 'core'): ns3::CallbackBase [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    62
    module.add_class('CallbackBase', import_from_module='ns.core')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    63
    ## channel-list.h (module 'network'): ns3::ChannelList [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    64
    module.add_class('ChannelList', import_from_module='ns.network')
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
    65
    ## data-output-interface.h (module 'stats'): ns3::DataOutputCallback [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
    66
    module.add_class('DataOutputCallback', allow_subclassing=True, import_from_module='ns.stats')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    67
    ## data-rate.h (module 'network'): ns3::DataRate [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    68
    module.add_class('DataRate', import_from_module='ns.network')
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    69
    ## delay-jitter-estimation.h (module 'network'): ns3::DelayJitterEstimation [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    70
    module.add_class('DelayJitterEstimation', import_from_module='ns.network')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    71
    ## event-id.h (module 'core'): ns3::EventId [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    72
    module.add_class('EventId', import_from_module='ns.core')
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    73
    ## hash.h (module 'core'): ns3::Hasher [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    74
    module.add_class('Hasher', import_from_module='ns.core')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    75
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    76
    module.add_class('Inet6SocketAddress', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    77
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    78
    root_module['ns3::Inet6SocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    79
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    80
    module.add_class('InetSocketAddress', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    81
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    82
    root_module['ns3::InetSocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    83
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    84
    module.add_class('Ipv4Address', import_from_module='ns.network')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    85
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    86
    root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    87
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    88
    module.add_class('Ipv4Mask', import_from_module='ns.network')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    89
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    90
    module.add_class('Ipv6Address', import_from_module='ns.network')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    91
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    92
    root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    93
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    94
    module.add_class('Ipv6Prefix', import_from_module='ns.network')
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    95
    ## mac16-address.h (module 'network'): ns3::Mac16Address [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    96
    module.add_class('Mac16Address', import_from_module='ns.network')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    97
    ## mac16-address.h (module 'network'): ns3::Mac16Address [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    98
    root_module['ns3::Mac16Address'].implicitly_converts_to(root_module['ns3::Address'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
    99
    ## mac48-address.h (module 'network'): ns3::Mac48Address [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   100
    module.add_class('Mac48Address', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   101
    ## mac48-address.h (module 'network'): ns3::Mac48Address [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   102
    root_module['ns3::Mac48Address'].implicitly_converts_to(root_module['ns3::Address'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   103
    ## mac64-address.h (module 'network'): ns3::Mac64Address [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   104
    module.add_class('Mac64Address', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   105
    ## mac64-address.h (module 'network'): ns3::Mac64Address [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   106
    root_module['ns3::Mac64Address'].implicitly_converts_to(root_module['ns3::Address'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   107
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   108
    module.add_class('NetDeviceContainer', import_from_module='ns.network')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   109
    ## node-container.h (module 'network'): ns3::NodeContainer [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   110
    module.add_class('NodeContainer', import_from_module='ns.network')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   111
    ## node-list.h (module 'network'): ns3::NodeList [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   112
    module.add_class('NodeList', import_from_module='ns.network')
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   113
    ## non-copyable.h (module 'core'): ns3::NonCopyable [class]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   114
    module.add_class('NonCopyable', destructor_visibility='protected', import_from_module='ns.core')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   115
    ## object-base.h (module 'core'): ns3::ObjectBase [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   116
    module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   117
    ## object.h (module 'core'): ns3::ObjectDeleter [struct]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   118
    module.add_class('ObjectDeleter', import_from_module='ns.core')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   119
    ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   120
    module.add_class('ObjectFactory', import_from_module='ns.core')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   121
    ## on-off-helper.h (module 'applications'): ns3::OnOffHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   122
    module.add_class('OnOffHelper')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   123
    ## packet-loss-counter.h (module 'applications'): ns3::PacketLossCounter [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   124
    module.add_class('PacketLossCounter')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   125
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   126
    module.add_class('PacketMetadata', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   127
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   128
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   129
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   130
    module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   131
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   132
    module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   133
    ## packet-sink-helper.h (module 'applications'): ns3::PacketSinkHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   134
    module.add_class('PacketSinkHelper')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   135
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   136
    module.add_class('PacketSocketAddress', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   137
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   138
    root_module['ns3::PacketSocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   139
    ## packet-socket-helper.h (module 'network'): ns3::PacketSocketHelper [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   140
    module.add_class('PacketSocketHelper', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   141
    ## packet.h (module 'network'): ns3::PacketTagIterator [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   142
    module.add_class('PacketTagIterator', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   143
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   144
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   145
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   146
    module.add_class('PacketTagList', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   147
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   148
    module.add_class('TagData', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagList'])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
   149
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData_e [enumeration]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
   150
    module.add_enum('TagData_e', ['MAX_SIZE'], outer_class=root_module['ns3::PacketTagList::TagData'], import_from_module='ns.network')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   151
    ## packetbb.h (module 'network'): ns3::PbbAddressTlvBlock [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   152
    module.add_class('PbbAddressTlvBlock', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   153
    ## packetbb.h (module 'network'): ns3::PbbTlvBlock [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   154
    module.add_class('PbbTlvBlock', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   155
    ## pcap-file.h (module 'network'): ns3::PcapFile [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   156
    module.add_class('PcapFile', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   157
    ## trace-helper.h (module 'network'): ns3::PcapHelper [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   158
    module.add_class('PcapHelper', import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   159
    ## trace-helper.h (module 'network'): ns3::PcapHelper [enumeration]
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   160
    module.add_enum('', ['DLT_NULL', 'DLT_EN10MB', 'DLT_PPP', 'DLT_RAW', 'DLT_IEEE802_11', 'DLT_LINUX_SSL', 'DLT_PRISM_HEADER', 'DLT_IEEE802_11_RADIO', 'DLT_IEEE802_15_4', 'DLT_NETLINK'], outer_class=root_module['ns3::PcapHelper'], import_from_module='ns.network')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   161
    ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   162
    module.add_class('PcapHelperForDevice', allow_subclassing=True, import_from_module='ns.network')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   163
    ## ping6-helper.h (module 'applications'): ns3::Ping6Helper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   164
    module.add_class('Ping6Helper')
10132
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
   165
    ## radvd-helper.h (module 'applications'): ns3::RadvdHelper [class]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
   166
    module.add_class('RadvdHelper')
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   167
    ## simple-net-device-helper.h (module 'network'): ns3::SimpleNetDeviceHelper [class]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   168
    module.add_class('SimpleNetDeviceHelper', import_from_module='ns.network')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   169
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   170
    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'))
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   171
    ## 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: 7090
diff changeset
   172
    module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core')
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   173
    ## data-calculator.h (module 'stats'): ns3::StatisticalSummary [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   174
    module.add_class('StatisticalSummary', allow_subclassing=True, import_from_module='ns.stats')
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   175
    ## 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
   176
    module.add_class('SystemWallClockMs', import_from_module='ns.core')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   177
    ## tag.h (module 'network'): ns3::Tag [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   178
    module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   179
    ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   180
    module.add_class('TagBuffer', import_from_module='ns.network')
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   181
    ## nstime.h (module 'core'): ns3::TimeWithUnit [class]
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   182
    module.add_class('TimeWithUnit', import_from_module='ns.core')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   183
    ## type-id.h (module 'core'): ns3::TypeId [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   184
    module.add_class('TypeId', import_from_module='ns.core')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   185
    ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   186
    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
   187
    ## 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
   188
    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
   189
    ## 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
   190
    module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   191
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpClientHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   192
    module.add_class('UdpClientHelper')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   193
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoClientHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   194
    module.add_class('UdpEchoClientHelper')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   195
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoServerHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   196
    module.add_class('UdpEchoServerHelper')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   197
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpServerHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   198
    module.add_class('UdpServerHelper')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   199
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpTraceClientHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   200
    module.add_class('UdpTraceClientHelper')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   201
    ## v4ping-helper.h (module 'applications'): ns3::V4PingHelper [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   202
    module.add_class('V4PingHelper')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   203
    ## empty.h (module 'core'): ns3::empty [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   204
    module.add_class('empty', import_from_module='ns.core')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   205
    ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   206
    module.add_class('int64x64_t', import_from_module='ns.core')
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
   207
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::impl_type [enumeration]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
   208
    module.add_enum('impl_type', ['int128_impl', 'cairo_impl', 'ld_impl'], outer_class=root_module['ns3::int64x64_t'], import_from_module='ns.core')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   209
    ## chunk.h (module 'network'): ns3::Chunk [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   210
    module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   211
    ## packet-socket.h (module 'network'): ns3::DeviceNameTag [class]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   212
    module.add_class('DeviceNameTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   213
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   214
    module.add_class('FlowIdTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   215
    ## header.h (module 'network'): ns3::Header [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   216
    module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   217
    ## llc-snap-header.h (module 'network'): ns3::LlcSnapHeader [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   218
    module.add_class('LlcSnapHeader', import_from_module='ns.network', parent=root_module['ns3::Header'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   219
    ## object.h (module 'core'): ns3::Object [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   220
    module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   221
    ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   222
    module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   223
    ## packet-burst.h (module 'network'): ns3::PacketBurst [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   224
    module.add_class('PacketBurst', import_from_module='ns.network', parent=root_module['ns3::Object'])
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   225
    ## packet-socket.h (module 'network'): ns3::PacketSocketTag [class]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   226
    module.add_class('PacketSocketTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   227
    ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   228
    module.add_class('PcapFileWrapper', import_from_module='ns.network', parent=root_module['ns3::Object'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   229
    ## queue.h (module 'network'): ns3::Queue [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   230
    module.add_class('Queue', import_from_module='ns.network', parent=root_module['ns3::Object'])
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
   231
    ## queue.h (module 'network'): ns3::Queue::QueueMode [enumeration]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
   232
    module.add_enum('QueueMode', ['QUEUE_MODE_PACKETS', 'QUEUE_MODE_BYTES'], outer_class=root_module['ns3::Queue'], import_from_module='ns.network')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   233
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   234
    module.add_class('RadiotapHeader', import_from_module='ns.network', parent=root_module['ns3::Header'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   235
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   236
    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'], import_from_module='ns.network')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   237
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   238
    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'], import_from_module='ns.network')
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   239
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   240
    module.add_enum('', ['MCS_KNOWN_NONE', 'MCS_KNOWN_BANDWIDTH', 'MCS_KNOWN_INDEX', 'MCS_KNOWN_GUARD_INTERVAL', 'MCS_KNOWN_HT_FORMAT', 'MCS_KNOWN_FEC_TYPE', 'MCS_KNOWN_STBC', 'MCS_KNOWN_NESS', 'MCS_KNOWN_NESS_BIT_1'], outer_class=root_module['ns3::RadiotapHeader'], import_from_module='ns.network')
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   241
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   242
    module.add_enum('', ['MCS_FLAGS_NONE', 'MCS_FLAGS_BANDWIDTH_40', 'MCS_FLAGS_BANDWIDTH_20L', 'MCS_FLAGS_BANDWIDTH_20U', 'MCS_FLAGS_GUARD_INTERVAL', 'MCS_FLAGS_HT_GREENFIELD', 'MCS_FLAGS_FEC_TYPE', 'MCS_FLAGS_STBC_STREAMS', 'MCS_FLAGS_NESS_BIT_0'], outer_class=root_module['ns3::RadiotapHeader'], import_from_module='ns.network')
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   243
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   244
    module.add_enum('', ['A_MPDU_STATUS_NONE', 'A_MPDU_STATUS_REPORT_ZERO_LENGTH', 'A_MPDU_STATUS_IS_ZERO_LENGTH', 'A_MPDU_STATUS_LAST_KNOWN', 'A_MPDU_STATUS_LAST', 'A_MPDU_STATUS_DELIMITER_CRC_ERROR', 'A_MPDU_STATUS_DELIMITER_CRC_KNOWN'], outer_class=root_module['ns3::RadiotapHeader'], import_from_module='ns.network')
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   245
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   246
    module.add_enum('', ['VHT_KNOWN_NONE', 'VHT_KNOWN_STBC', 'VHT_KNOWN_TXOP_PS_NOT_ALLOWED', 'VHT_KNOWN_GUARD_INTERVAL', 'VHT_KNOWN_SHORT_GI_NSYM_DISAMBIGUATION', 'VHT_KNOWN_LDPC_EXTRA_OFDM_SYMBOL', 'VHT_KNOWN_BEAMFORMED', 'VHT_KNOWN_BANDWIDTH', 'VHT_KNOWN_GROUP_ID', 'VHT_KNOWN_PARTIAL_AID'], outer_class=root_module['ns3::RadiotapHeader'], import_from_module='ns.network')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   247
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader [enumeration]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   248
    module.add_enum('', ['VHT_FLAGS_NONE', 'VHT_FLAGS_STBC', 'VHT_FLAGS_TXOP_PS_NOT_ALLOWED', 'VHT_FLAGS_GUARD_INTERVAL', 'VHT_FLAGS_SHORT_GI_NSYM_DISAMBIGUATION', 'VHT_FLAGS__LDPC_EXTRA_OFDM_SYMBOL', 'VHT_FLAGS_BEAMFORMED'], outer_class=root_module['ns3::RadiotapHeader'], import_from_module='ns.network')
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   249
    ## random-variable-stream.h (module 'core'): ns3::RandomVariableStream [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   250
    module.add_class('RandomVariableStream', import_from_module='ns.core', parent=root_module['ns3::Object'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   251
    ## red-queue.h (module 'network'): ns3::RedQueue [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   252
    module.add_class('RedQueue', import_from_module='ns.network', parent=root_module['ns3::Queue'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   253
    ## red-queue.h (module 'network'): ns3::RedQueue [enumeration]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   254
    module.add_enum('', ['DTYPE_NONE', 'DTYPE_FORCED', 'DTYPE_UNFORCED'], outer_class=root_module['ns3::RedQueue'], import_from_module='ns.network')
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   255
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats [struct]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   256
    module.add_class('Stats', import_from_module='ns.network', outer_class=root_module['ns3::RedQueue'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   257
    ## seq-ts-header.h (module 'applications'): ns3::SeqTsHeader [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   258
    module.add_class('SeqTsHeader', parent=root_module['ns3::Header'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   259
    ## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   260
    module.add_class('SequentialRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   261
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   262
    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'))
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   263
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   264
    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'))
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   265
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   266
    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'))
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   267
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   268
    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'))
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   269
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   270
    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'))
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   271
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> > [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   272
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Hash::Implementation', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Hash::Implementation>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   273
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   274
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', 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'))
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   275
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   276
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', 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'))
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   277
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   278
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', 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'))
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   279
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> > [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   280
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', 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'))
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   281
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> > [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   282
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', 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'))
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   283
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> > [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   284
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', 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'))
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   285
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> > [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   286
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', 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'))
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   287
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter<ns3::RadvdInterface> > [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   288
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::RadvdInterface', 'ns3::empty', 'ns3::DefaultDeleter<ns3::RadvdInterface>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   289
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter<ns3::RadvdPrefix> > [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   290
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, template_parameters=['ns3::RadvdPrefix', 'ns3::empty', 'ns3::DefaultDeleter<ns3::RadvdPrefix>'], 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
   291
    ## 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
   292
    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'))
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   293
    ## socket.h (module 'network'): ns3::Socket [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   294
    module.add_class('Socket', import_from_module='ns.network', parent=root_module['ns3::Object'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   295
    ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
7449
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   296
    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'], import_from_module='ns.network')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   297
    ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   298
    module.add_enum('SocketType', ['NS3_SOCK_STREAM', 'NS3_SOCK_SEQPACKET', 'NS3_SOCK_DGRAM', 'NS3_SOCK_RAW'], outer_class=root_module['ns3::Socket'], import_from_module='ns.network')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   299
    ## socket.h (module 'network'): ns3::SocketAddressTag [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   300
    module.add_class('SocketAddressTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   301
    ## socket-factory.h (module 'network'): ns3::SocketFactory [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   302
    module.add_class('SocketFactory', import_from_module='ns.network', parent=root_module['ns3::Object'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   303
    ## socket.h (module 'network'): ns3::SocketIpTosTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   304
    module.add_class('SocketIpTosTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   305
    ## socket.h (module 'network'): ns3::SocketIpTtlTag [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   306
    module.add_class('SocketIpTtlTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   307
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   308
    module.add_class('SocketIpv6HopLimitTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   309
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   310
    module.add_class('SocketIpv6TclassTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   311
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   312
    module.add_class('SocketSetDontFragmentTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   313
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   314
    module.add_class('Time', import_from_module='ns.core')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   315
    ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
   316
    module.add_enum('Unit', ['Y', 'D', 'H', 'MIN', 'S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   317
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   318
    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
   319
    ## 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
   320
    module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   321
    ## trailer.h (module 'network'): ns3::Trailer [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   322
    module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   323
    ## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   324
    module.add_class('TriangularRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   325
    ## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   326
    module.add_class('UniformRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   327
    ## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   328
    module.add_class('WeibullRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   329
    ## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   330
    module.add_class('ZetaRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   331
    ## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   332
    module.add_class('ZipfRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   333
    ## application.h (module 'network'): ns3::Application [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   334
    module.add_class('Application', import_from_module='ns.network', parent=root_module['ns3::Object'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   335
    ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   336
    module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   337
    ## attribute.h (module 'core'): ns3::AttributeChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   338
    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> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   339
    ## attribute.h (module 'core'): ns3::AttributeValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   340
    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
   341
    ## boolean.h (module 'core'): ns3::BooleanChecker [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   342
    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
   343
    ## boolean.h (module 'core'): ns3::BooleanValue [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   344
    module.add_class('BooleanValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   345
    ## bulk-send-application.h (module 'applications'): ns3::BulkSendApplication [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   346
    module.add_class('BulkSendApplication', parent=root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   347
    ## callback.h (module 'core'): ns3::CallbackChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   348
    module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   349
    ## callback.h (module 'core'): ns3::CallbackImplBase [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   350
    module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   351
    ## callback.h (module 'core'): ns3::CallbackValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   352
    module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   353
    ## channel.h (module 'network'): ns3::Channel [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   354
    module.add_class('Channel', import_from_module='ns.network', parent=root_module['ns3::Object'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   355
    ## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   356
    module.add_class('ConstantRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   357
    ## data-calculator.h (module 'stats'): ns3::DataCalculator [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   358
    module.add_class('DataCalculator', import_from_module='ns.stats', parent=root_module['ns3::Object'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   359
    ## data-collection-object.h (module 'stats'): ns3::DataCollectionObject [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   360
    module.add_class('DataCollectionObject', import_from_module='ns.stats', parent=root_module['ns3::Object'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   361
    ## data-output-interface.h (module 'stats'): ns3::DataOutputInterface [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   362
    module.add_class('DataOutputInterface', import_from_module='ns.stats', parent=root_module['ns3::Object'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   363
    ## data-rate.h (module 'network'): ns3::DataRateChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   364
    module.add_class('DataRateChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   365
    ## data-rate.h (module 'network'): ns3::DataRateValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   366
    module.add_class('DataRateValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   367
    ## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   368
    module.add_class('DeterministicRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   369
    ## double.h (module 'core'): ns3::DoubleValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   370
    module.add_class('DoubleValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   371
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   372
    module.add_class('DropTailQueue', import_from_module='ns.network', parent=root_module['ns3::Queue'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   373
    ## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   374
    module.add_class('EmpiricalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   375
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   376
    module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   377
    ## enum.h (module 'core'): ns3::EnumChecker [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   378
    module.add_class('EnumChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   379
    ## enum.h (module 'core'): ns3::EnumValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   380
    module.add_class('EnumValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   381
    ## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   382
    module.add_class('ErlangRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   383
    ## error-model.h (module 'network'): ns3::ErrorModel [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   384
    module.add_class('ErrorModel', import_from_module='ns.network', parent=root_module['ns3::Object'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   385
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   386
    module.add_class('EthernetHeader', import_from_module='ns.network', parent=root_module['ns3::Header'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   387
    ## ethernet-trailer.h (module 'network'): ns3::EthernetTrailer [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   388
    module.add_class('EthernetTrailer', import_from_module='ns.network', parent=root_module['ns3::Trailer'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   389
    ## event-impl.h (module 'core'): ns3::EventImpl [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   390
    module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   391
    ## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   392
    module.add_class('ExponentialRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   393
    ## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   394
    module.add_class('GammaRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   395
    ## integer.h (module 'core'): ns3::IntegerValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   396
    module.add_class('IntegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   397
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   398
    module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   399
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   400
    module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   401
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   402
    module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   403
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   404
    module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   405
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   406
    module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   407
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   408
    module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   409
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   410
    module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   411
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   412
    module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   413
    ## error-model.h (module 'network'): ns3::ListErrorModel [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   414
    module.add_class('ListErrorModel', import_from_module='ns.network', parent=root_module['ns3::ErrorModel'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   415
    ## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   416
    module.add_class('LogNormalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   417
    ## mac16-address.h (module 'network'): ns3::Mac16AddressChecker [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   418
    module.add_class('Mac16AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   419
    ## mac16-address.h (module 'network'): ns3::Mac16AddressValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   420
    module.add_class('Mac16AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   421
    ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   422
    module.add_class('Mac48AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   423
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   424
    module.add_class('Mac48AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   425
    ## mac64-address.h (module 'network'): ns3::Mac64AddressChecker [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   426
    module.add_class('Mac64AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   427
    ## mac64-address.h (module 'network'): ns3::Mac64AddressValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   428
    module.add_class('Mac64AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   429
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double> [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   430
    module.add_class('MinMaxAvgTotalCalculator', import_from_module='ns.stats', template_parameters=['double'], parent=[root_module['ns3::DataCalculator'], root_module['ns3::StatisticalSummary']])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   431
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<unsigned int> [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   432
    module.add_class('MinMaxAvgTotalCalculator', import_from_module='ns.stats', template_parameters=['unsigned int'], parent=[root_module['ns3::DataCalculator'], root_module['ns3::StatisticalSummary']])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   433
    ## net-device.h (module 'network'): ns3::NetDevice [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   434
    module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   435
    ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   436
    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'], import_from_module='ns.network')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   437
    ## nix-vector.h (module 'network'): ns3::NixVector [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   438
    module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   439
    ## node.h (module 'network'): ns3::Node [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   440
    module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   441
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   442
    module.add_class('NormalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   443
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   444
    module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   445
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   446
    module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   447
    ## onoff-application.h (module 'applications'): ns3::OnOffApplication [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   448
    module.add_class('OnOffApplication', parent=root_module['ns3::Application'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   449
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   450
    module.add_class('OutputStreamWrapper', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   451
    ## packet.h (module 'network'): ns3::Packet [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   452
    module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   453
    ## packet-sink.h (module 'applications'): ns3::PacketSink [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   454
    module.add_class('PacketSink', parent=root_module['ns3::Application'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   455
    ## packet-data-calculators.h (module 'network'): ns3::PacketSizeMinMaxAvgTotalCalculator [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   456
    module.add_class('PacketSizeMinMaxAvgTotalCalculator', import_from_module='ns.network', parent=root_module['ns3::MinMaxAvgTotalCalculator< unsigned int >'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   457
    ## packet-socket.h (module 'network'): ns3::PacketSocket [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   458
    module.add_class('PacketSocket', import_from_module='ns.network', parent=root_module['ns3::Socket'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   459
    ## packet-socket-client.h (module 'network'): ns3::PacketSocketClient [class]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   460
    module.add_class('PacketSocketClient', import_from_module='ns.network', parent=root_module['ns3::Application'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   461
    ## packet-socket-factory.h (module 'network'): ns3::PacketSocketFactory [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   462
    module.add_class('PacketSocketFactory', import_from_module='ns.network', parent=root_module['ns3::SocketFactory'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   463
    ## packet-socket-server.h (module 'network'): ns3::PacketSocketServer [class]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   464
    module.add_class('PacketSocketServer', import_from_module='ns.network', parent=root_module['ns3::Application'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   465
    ## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   466
    module.add_class('ParetoRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   467
    ## packetbb.h (module 'network'): ns3::PbbAddressBlock [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   468
    module.add_class('PbbAddressBlock', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   469
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv4 [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   470
    module.add_class('PbbAddressBlockIpv4', import_from_module='ns.network', parent=root_module['ns3::PbbAddressBlock'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   471
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv6 [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   472
    module.add_class('PbbAddressBlockIpv6', import_from_module='ns.network', parent=root_module['ns3::PbbAddressBlock'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   473
    ## packetbb.h (module 'network'): ns3::PbbMessage [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   474
    module.add_class('PbbMessage', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   475
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv4 [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   476
    module.add_class('PbbMessageIpv4', import_from_module='ns.network', parent=root_module['ns3::PbbMessage'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   477
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv6 [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   478
    module.add_class('PbbMessageIpv6', import_from_module='ns.network', parent=root_module['ns3::PbbMessage'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   479
    ## packetbb.h (module 'network'): ns3::PbbPacket [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   480
    module.add_class('PbbPacket', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   481
    ## packetbb.h (module 'network'): ns3::PbbTlv [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   482
    module.add_class('PbbTlv', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   483
    ## ping6.h (module 'applications'): ns3::Ping6 [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   484
    module.add_class('Ping6', parent=root_module['ns3::Application'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   485
    ## probe.h (module 'stats'): ns3::Probe [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   486
    module.add_class('Probe', import_from_module='ns.stats', parent=root_module['ns3::DataCollectionObject'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   487
    ## radvd.h (module 'applications'): ns3::Radvd [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   488
    module.add_class('Radvd', parent=root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   489
    ## radvd-interface.h (module 'applications'): ns3::RadvdInterface [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   490
    module.add_class('RadvdInterface', parent=root_module['ns3::SimpleRefCount< ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter<ns3::RadvdInterface> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   491
    ## radvd-prefix.h (module 'applications'): ns3::RadvdPrefix [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   492
    module.add_class('RadvdPrefix', parent=root_module['ns3::SimpleRefCount< ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter<ns3::RadvdPrefix> >'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   493
    ## error-model.h (module 'network'): ns3::RateErrorModel [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   494
    module.add_class('RateErrorModel', import_from_module='ns.network', parent=root_module['ns3::ErrorModel'])
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
   495
    ## error-model.h (module 'network'): ns3::RateErrorModel::ErrorUnit [enumeration]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
   496
    module.add_enum('ErrorUnit', ['ERROR_UNIT_BIT', 'ERROR_UNIT_BYTE', 'ERROR_UNIT_PACKET'], outer_class=root_module['ns3::RateErrorModel'], import_from_module='ns.network')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   497
    ## error-model.h (module 'network'): ns3::ReceiveListErrorModel [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   498
    module.add_class('ReceiveListErrorModel', import_from_module='ns.network', parent=root_module['ns3::ErrorModel'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   499
    ## simple-channel.h (module 'network'): ns3::SimpleChannel [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   500
    module.add_class('SimpleChannel', import_from_module='ns.network', parent=root_module['ns3::Channel'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   501
    ## simple-net-device.h (module 'network'): ns3::SimpleNetDevice [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   502
    module.add_class('SimpleNetDevice', import_from_module='ns.network', parent=root_module['ns3::NetDevice'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   503
    ## nstime.h (module 'core'): ns3::TimeValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   504
    module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   505
    ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   506
    module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   507
    ## type-id.h (module 'core'): ns3::TypeIdValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   508
    module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   509
    ## udp-client.h (module 'applications'): ns3::UdpClient [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   510
    module.add_class('UdpClient', parent=root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   511
    ## udp-echo-client.h (module 'applications'): ns3::UdpEchoClient [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   512
    module.add_class('UdpEchoClient', parent=root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   513
    ## udp-echo-server.h (module 'applications'): ns3::UdpEchoServer [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   514
    module.add_class('UdpEchoServer', parent=root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   515
    ## udp-server.h (module 'applications'): ns3::UdpServer [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   516
    module.add_class('UdpServer', parent=root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   517
    ## udp-trace-client.h (module 'applications'): ns3::UdpTraceClient [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   518
    module.add_class('UdpTraceClient', parent=root_module['ns3::Application'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   519
    ## uinteger.h (module 'core'): ns3::UintegerValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   520
    module.add_class('UintegerValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   521
    ## v4ping.h (module 'applications'): ns3::V4Ping [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   522
    module.add_class('V4Ping', parent=root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   523
    ## address.h (module 'network'): ns3::AddressChecker [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   524
    module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   525
    ## address.h (module 'network'): ns3::AddressValue [class]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   526
    module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   527
    ## application-packet-probe.h (module 'applications'): ns3::ApplicationPacketProbe [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   528
    module.add_class('ApplicationPacketProbe', parent=root_module['ns3::Probe'])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
   529
    ## error-model.h (module 'network'): ns3::BurstErrorModel [class]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
   530
    module.add_class('BurstErrorModel', import_from_module='ns.network', parent=root_module['ns3::ErrorModel'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   531
    ## basic-data-calculators.h (module 'stats'): ns3::CounterCalculator<unsigned int> [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   532
    module.add_class('CounterCalculator', import_from_module='ns.stats', template_parameters=['unsigned int'], parent=root_module['ns3::DataCalculator'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   533
    ## packet-data-calculators.h (module 'network'): ns3::PacketCounterCalculator [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   534
    module.add_class('PacketCounterCalculator', import_from_module='ns.network', parent=root_module['ns3::CounterCalculator< unsigned int >'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   535
    ## packet-probe.h (module 'network'): ns3::PacketProbe [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   536
    module.add_class('PacketProbe', import_from_module='ns.network', parent=root_module['ns3::Probe'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   537
    ## packetbb.h (module 'network'): ns3::PbbAddressTlv [class]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   538
    module.add_class('PbbAddressTlv', import_from_module='ns.network', parent=root_module['ns3::PbbTlv'])
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   539
    module.add_container('std::vector< ns3::Ipv6Address >', 'ns3::Ipv6Address', container_type=u'vector')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   540
    module.add_container('std::list< ns3::Ptr< ns3::Packet > >', 'ns3::Ptr< ns3::Packet >', container_type=u'list')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   541
    module.add_container('std::list< unsigned int >', 'unsigned int', container_type=u'list')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   542
    module.add_container('std::list< ns3::Ptr< ns3::Socket > >', 'ns3::Ptr< ns3::Socket >', container_type=u'list')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   543
    module.add_container('std::list< ns3::Ptr< ns3::RadvdPrefix > >', 'ns3::Ptr< ns3::RadvdPrefix >', container_type=u'list')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   544
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', u'ns3::GenericPhyTxEndCallback')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   545
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', u'ns3::GenericPhyTxEndCallback*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   546
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', u'ns3::GenericPhyTxEndCallback&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   547
    typehandlers.add_type_alias(u'ns3::SequenceNumber< short unsigned int, short int >', u'ns3::SequenceNumber16')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   548
    typehandlers.add_type_alias(u'ns3::SequenceNumber< short unsigned int, short int >*', u'ns3::SequenceNumber16*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   549
    typehandlers.add_type_alias(u'ns3::SequenceNumber< short unsigned int, short int >&', u'ns3::SequenceNumber16&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   550
    typehandlers.add_type_alias(u'ns3::SequenceNumber< unsigned int, int >', u'ns3::SequenceNumber32')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   551
    typehandlers.add_type_alias(u'ns3::SequenceNumber< unsigned int, int >*', u'ns3::SequenceNumber32*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   552
    typehandlers.add_type_alias(u'ns3::SequenceNumber< unsigned int, int >&', u'ns3::SequenceNumber32&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   553
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', u'ns3::GenericPhyRxStartCallback')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   554
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', u'ns3::GenericPhyRxStartCallback*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   555
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', u'ns3::GenericPhyRxStartCallback&')
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   556
    typehandlers.add_type_alias(u'ns3::SequenceNumber< unsigned char, signed char >', u'ns3::SequenceNumber8')
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   557
    typehandlers.add_type_alias(u'ns3::SequenceNumber< unsigned char, signed char >*', u'ns3::SequenceNumber8*')
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   558
    typehandlers.add_type_alias(u'ns3::SequenceNumber< unsigned char, signed char >&', u'ns3::SequenceNumber8&')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   559
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', u'ns3::GenericPhyRxEndErrorCallback')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   560
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', u'ns3::GenericPhyRxEndErrorCallback*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   561
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', u'ns3::GenericPhyRxEndErrorCallback&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   562
    typehandlers.add_type_alias(u'ns3::Callback< bool, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', u'ns3::GenericPhyTxStartCallback')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   563
    typehandlers.add_type_alias(u'ns3::Callback< bool, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', u'ns3::GenericPhyTxStartCallback*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   564
    typehandlers.add_type_alias(u'ns3::Callback< bool, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', u'ns3::GenericPhyTxStartCallback&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   565
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', u'ns3::GenericPhyRxEndOkCallback')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   566
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >*', u'ns3::GenericPhyRxEndOkCallback*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   567
    typehandlers.add_type_alias(u'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >&', u'ns3::GenericPhyRxEndOkCallback&')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   568
    
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   569
    ## Register a nested module for the namespace FatalImpl
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   570
    
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   571
    nested_module = module.add_cpp_namespace('FatalImpl')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   572
    register_types_ns3_FatalImpl(nested_module)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   573
    
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   574
    
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   575
    ## Register a nested module for the namespace Hash
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   576
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   577
    nested_module = module.add_cpp_namespace('Hash')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   578
    register_types_ns3_Hash(nested_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   579
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   580
    
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   581
    ## Register a nested module for the namespace TracedValueCallback
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   582
    
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   583
    nested_module = module.add_cpp_namespace('TracedValueCallback')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   584
    register_types_ns3_TracedValueCallback(nested_module)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   585
    
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   586
    
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   587
    ## Register a nested module for the namespace addressUtils
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   588
    
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   589
    nested_module = module.add_cpp_namespace('addressUtils')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   590
    register_types_ns3_addressUtils(nested_module)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   591
    
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   592
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   593
    ## Register a nested module for the namespace internal
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   594
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   595
    nested_module = module.add_cpp_namespace('internal')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   596
    register_types_ns3_internal(nested_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   597
    
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   598
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   599
def register_types_ns3_FatalImpl(module):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   600
    root_module = module.get_root()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   601
    
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   602
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   603
def register_types_ns3_Hash(module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   604
    root_module = module.get_root()
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   605
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   606
    ## hash-function.h (module 'core'): ns3::Hash::Implementation [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   607
    module.add_class('Implementation', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >'])
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   608
    typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) *', u'ns3::Hash::Hash32Function_ptr')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   609
    typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) **', u'ns3::Hash::Hash32Function_ptr*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   610
    typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) *&', u'ns3::Hash::Hash32Function_ptr&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   611
    typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) *', u'ns3::Hash::Hash64Function_ptr')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   612
    typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) **', u'ns3::Hash::Hash64Function_ptr*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   613
    typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) *&', u'ns3::Hash::Hash64Function_ptr&')
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   614
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   615
    ## Register a nested module for the namespace Function
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   616
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   617
    nested_module = module.add_cpp_namespace('Function')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   618
    register_types_ns3_Hash_Function(nested_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   619
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   620
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   621
def register_types_ns3_Hash_Function(module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   622
    root_module = module.get_root()
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   623
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   624
    ## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   625
    module.add_class('Fnv1a', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   626
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash32 [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   627
    module.add_class('Hash32', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   628
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash64 [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   629
    module.add_class('Hash64', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   630
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3 [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   631
    module.add_class('Murmur3', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   632
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   633
def register_types_ns3_TracedValueCallback(module):
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   634
    root_module = module.get_root()
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   635
    
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   636
    typehandlers.add_type_alias(u'void ( * ) ( double, double ) *', u'ns3::TracedValueCallback::Double')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   637
    typehandlers.add_type_alias(u'void ( * ) ( double, double ) **', u'ns3::TracedValueCallback::Double*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   638
    typehandlers.add_type_alias(u'void ( * ) ( double, double ) *&', u'ns3::TracedValueCallback::Double&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   639
    typehandlers.add_type_alias(u'void ( * ) ( ns3::SequenceNumber32, ns3::SequenceNumber32 ) *', u'ns3::TracedValueCallback::SequenceNumber32')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   640
    typehandlers.add_type_alias(u'void ( * ) ( ns3::SequenceNumber32, ns3::SequenceNumber32 ) **', u'ns3::TracedValueCallback::SequenceNumber32*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   641
    typehandlers.add_type_alias(u'void ( * ) ( ns3::SequenceNumber32, ns3::SequenceNumber32 ) *&', u'ns3::TracedValueCallback::SequenceNumber32&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   642
    typehandlers.add_type_alias(u'void ( * ) ( int8_t, int8_t ) *', u'ns3::TracedValueCallback::Int8')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   643
    typehandlers.add_type_alias(u'void ( * ) ( int8_t, int8_t ) **', u'ns3::TracedValueCallback::Int8*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   644
    typehandlers.add_type_alias(u'void ( * ) ( int8_t, int8_t ) *&', u'ns3::TracedValueCallback::Int8&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   645
    typehandlers.add_type_alias(u'void ( * ) ( uint8_t, uint8_t ) *', u'ns3::TracedValueCallback::Uint8')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   646
    typehandlers.add_type_alias(u'void ( * ) ( uint8_t, uint8_t ) **', u'ns3::TracedValueCallback::Uint8*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   647
    typehandlers.add_type_alias(u'void ( * ) ( uint8_t, uint8_t ) *&', u'ns3::TracedValueCallback::Uint8&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   648
    typehandlers.add_type_alias(u'void ( * ) ( int32_t, int32_t ) *', u'ns3::TracedValueCallback::Int32')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   649
    typehandlers.add_type_alias(u'void ( * ) ( int32_t, int32_t ) **', u'ns3::TracedValueCallback::Int32*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   650
    typehandlers.add_type_alias(u'void ( * ) ( int32_t, int32_t ) *&', u'ns3::TracedValueCallback::Int32&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   651
    typehandlers.add_type_alias(u'void ( * ) ( bool, bool ) *', u'ns3::TracedValueCallback::Bool')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   652
    typehandlers.add_type_alias(u'void ( * ) ( bool, bool ) **', u'ns3::TracedValueCallback::Bool*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   653
    typehandlers.add_type_alias(u'void ( * ) ( bool, bool ) *&', u'ns3::TracedValueCallback::Bool&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   654
    typehandlers.add_type_alias(u'void ( * ) ( uint16_t, uint16_t ) *', u'ns3::TracedValueCallback::Uint16')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   655
    typehandlers.add_type_alias(u'void ( * ) ( uint16_t, uint16_t ) **', u'ns3::TracedValueCallback::Uint16*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   656
    typehandlers.add_type_alias(u'void ( * ) ( uint16_t, uint16_t ) *&', u'ns3::TracedValueCallback::Uint16&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   657
    typehandlers.add_type_alias(u'void ( * ) ( uint32_t, uint32_t ) *', u'ns3::TracedValueCallback::Uint32')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   658
    typehandlers.add_type_alias(u'void ( * ) ( uint32_t, uint32_t ) **', u'ns3::TracedValueCallback::Uint32*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   659
    typehandlers.add_type_alias(u'void ( * ) ( uint32_t, uint32_t ) *&', u'ns3::TracedValueCallback::Uint32&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   660
    typehandlers.add_type_alias(u'void ( * ) ( int16_t, int16_t ) *', u'ns3::TracedValueCallback::Int16')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   661
    typehandlers.add_type_alias(u'void ( * ) ( int16_t, int16_t ) **', u'ns3::TracedValueCallback::Int16*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   662
    typehandlers.add_type_alias(u'void ( * ) ( int16_t, int16_t ) *&', u'ns3::TracedValueCallback::Int16&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   663
    typehandlers.add_type_alias(u'void ( * ) ( ns3::Time, ns3::Time ) *', u'ns3::TracedValueCallback::Time')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   664
    typehandlers.add_type_alias(u'void ( * ) ( ns3::Time, ns3::Time ) **', u'ns3::TracedValueCallback::Time*')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   665
    typehandlers.add_type_alias(u'void ( * ) ( ns3::Time, ns3::Time ) *&', u'ns3::TracedValueCallback::Time&')
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
   666
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   667
def register_types_ns3_addressUtils(module):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   668
    root_module = module.get_root()
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   669
    
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   670
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   671
def register_types_ns3_internal(module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   672
    root_module = module.get_root()
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   673
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   674
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   675
def register_methods(root_module):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   676
    register_Ns3Address_methods(root_module, root_module['ns3::Address'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   677
    register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   678
    register_Ns3AsciiFile_methods(root_module, root_module['ns3::AsciiFile'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   679
    register_Ns3AsciiTraceHelper_methods(root_module, root_module['ns3::AsciiTraceHelper'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   680
    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
   681
    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
   682
    register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   683
    register_Ns3Average__Double_methods(root_module, root_module['ns3::Average< double >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   684
    register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   685
    register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   686
    register_Ns3BulkSendHelper_methods(root_module, root_module['ns3::BulkSendHelper'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   687
    register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   688
    register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   689
    register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   690
    register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   691
    register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   692
    register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   693
    register_Ns3ChannelList_methods(root_module, root_module['ns3::ChannelList'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   694
    register_Ns3DataOutputCallback_methods(root_module, root_module['ns3::DataOutputCallback'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   695
    register_Ns3DataRate_methods(root_module, root_module['ns3::DataRate'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   696
    register_Ns3DelayJitterEstimation_methods(root_module, root_module['ns3::DelayJitterEstimation'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   697
    register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   698
    register_Ns3Hasher_methods(root_module, root_module['ns3::Hasher'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   699
    register_Ns3Inet6SocketAddress_methods(root_module, root_module['ns3::Inet6SocketAddress'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   700
    register_Ns3InetSocketAddress_methods(root_module, root_module['ns3::InetSocketAddress'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   701
    register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   702
    register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   703
    register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   704
    register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   705
    register_Ns3Mac16Address_methods(root_module, root_module['ns3::Mac16Address'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   706
    register_Ns3Mac48Address_methods(root_module, root_module['ns3::Mac48Address'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   707
    register_Ns3Mac64Address_methods(root_module, root_module['ns3::Mac64Address'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   708
    register_Ns3NetDeviceContainer_methods(root_module, root_module['ns3::NetDeviceContainer'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   709
    register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   710
    register_Ns3NodeList_methods(root_module, root_module['ns3::NodeList'])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
   711
    register_Ns3NonCopyable_methods(root_module, root_module['ns3::NonCopyable'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   712
    register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   713
    register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   714
    register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   715
    register_Ns3OnOffHelper_methods(root_module, root_module['ns3::OnOffHelper'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   716
    register_Ns3PacketLossCounter_methods(root_module, root_module['ns3::PacketLossCounter'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   717
    register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   718
    register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   719
    register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   720
    register_Ns3PacketSinkHelper_methods(root_module, root_module['ns3::PacketSinkHelper'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   721
    register_Ns3PacketSocketAddress_methods(root_module, root_module['ns3::PacketSocketAddress'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   722
    register_Ns3PacketSocketHelper_methods(root_module, root_module['ns3::PacketSocketHelper'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   723
    register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   724
    register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   725
    register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   726
    register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   727
    register_Ns3PbbAddressTlvBlock_methods(root_module, root_module['ns3::PbbAddressTlvBlock'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   728
    register_Ns3PbbTlvBlock_methods(root_module, root_module['ns3::PbbTlvBlock'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   729
    register_Ns3PcapFile_methods(root_module, root_module['ns3::PcapFile'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   730
    register_Ns3PcapHelper_methods(root_module, root_module['ns3::PcapHelper'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   731
    register_Ns3PcapHelperForDevice_methods(root_module, root_module['ns3::PcapHelperForDevice'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   732
    register_Ns3Ping6Helper_methods(root_module, root_module['ns3::Ping6Helper'])
10132
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
   733
    register_Ns3RadvdHelper_methods(root_module, root_module['ns3::RadvdHelper'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   734
    register_Ns3SimpleNetDeviceHelper_methods(root_module, root_module['ns3::SimpleNetDeviceHelper'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   735
    register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   736
    register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   737
    register_Ns3StatisticalSummary_methods(root_module, root_module['ns3::StatisticalSummary'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   738
    register_Ns3SystemWallClockMs_methods(root_module, root_module['ns3::SystemWallClockMs'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   739
    register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   740
    register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   741
    register_Ns3TimeWithUnit_methods(root_module, root_module['ns3::TimeWithUnit'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   742
    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
   743
    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
   744
    register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   745
    register_Ns3UdpClientHelper_methods(root_module, root_module['ns3::UdpClientHelper'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   746
    register_Ns3UdpEchoClientHelper_methods(root_module, root_module['ns3::UdpEchoClientHelper'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   747
    register_Ns3UdpEchoServerHelper_methods(root_module, root_module['ns3::UdpEchoServerHelper'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   748
    register_Ns3UdpServerHelper_methods(root_module, root_module['ns3::UdpServerHelper'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   749
    register_Ns3UdpTraceClientHelper_methods(root_module, root_module['ns3::UdpTraceClientHelper'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   750
    register_Ns3V4PingHelper_methods(root_module, root_module['ns3::V4PingHelper'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   751
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   752
    register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   753
    register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   754
    register_Ns3DeviceNameTag_methods(root_module, root_module['ns3::DeviceNameTag'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   755
    register_Ns3FlowIdTag_methods(root_module, root_module['ns3::FlowIdTag'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   756
    register_Ns3Header_methods(root_module, root_module['ns3::Header'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   757
    register_Ns3LlcSnapHeader_methods(root_module, root_module['ns3::LlcSnapHeader'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   758
    register_Ns3Object_methods(root_module, root_module['ns3::Object'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   759
    register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   760
    register_Ns3PacketBurst_methods(root_module, root_module['ns3::PacketBurst'])
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   761
    register_Ns3PacketSocketTag_methods(root_module, root_module['ns3::PacketSocketTag'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   762
    register_Ns3PcapFileWrapper_methods(root_module, root_module['ns3::PcapFileWrapper'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   763
    register_Ns3Queue_methods(root_module, root_module['ns3::Queue'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   764
    register_Ns3RadiotapHeader_methods(root_module, root_module['ns3::RadiotapHeader'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   765
    register_Ns3RandomVariableStream_methods(root_module, root_module['ns3::RandomVariableStream'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   766
    register_Ns3RedQueue_methods(root_module, root_module['ns3::RedQueue'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   767
    register_Ns3RedQueueStats_methods(root_module, root_module['ns3::RedQueue::Stats'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   768
    register_Ns3SeqTsHeader_methods(root_module, root_module['ns3::SeqTsHeader'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   769
    register_Ns3SequentialRandomVariable_methods(root_module, root_module['ns3::SequentialRandomVariable'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   770
    register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   771
    register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   772
    register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   773
    register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
    register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   775
    register_Ns3SimpleRefCount__Ns3HashImplementation_Ns3Empty_Ns3DefaultDeleter__lt__ns3HashImplementation__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   776
    register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   777
    register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   778
    register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   779
    register_Ns3SimpleRefCount__Ns3PbbAddressBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbAddressBlock__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   780
    register_Ns3SimpleRefCount__Ns3PbbMessage_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbMessage__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   781
    register_Ns3SimpleRefCount__Ns3PbbPacket_Ns3Header_Ns3DefaultDeleter__lt__ns3PbbPacket__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   782
    register_Ns3SimpleRefCount__Ns3PbbTlv_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbTlv__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   783
    register_Ns3SimpleRefCount__Ns3RadvdInterface_Ns3Empty_Ns3DefaultDeleter__lt__ns3RadvdInterface__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter<ns3::RadvdInterface> >'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   784
    register_Ns3SimpleRefCount__Ns3RadvdPrefix_Ns3Empty_Ns3DefaultDeleter__lt__ns3RadvdPrefix__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter<ns3::RadvdPrefix> >'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   785
    register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   786
    register_Ns3Socket_methods(root_module, root_module['ns3::Socket'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   787
    register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   788
    register_Ns3SocketFactory_methods(root_module, root_module['ns3::SocketFactory'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   789
    register_Ns3SocketIpTosTag_methods(root_module, root_module['ns3::SocketIpTosTag'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   790
    register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   791
    register_Ns3SocketIpv6HopLimitTag_methods(root_module, root_module['ns3::SocketIpv6HopLimitTag'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   792
    register_Ns3SocketIpv6TclassTag_methods(root_module, root_module['ns3::SocketIpv6TclassTag'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   793
    register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   794
    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
   795
    register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   796
    register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   797
    register_Ns3TriangularRandomVariable_methods(root_module, root_module['ns3::TriangularRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   798
    register_Ns3UniformRandomVariable_methods(root_module, root_module['ns3::UniformRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   799
    register_Ns3WeibullRandomVariable_methods(root_module, root_module['ns3::WeibullRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   800
    register_Ns3ZetaRandomVariable_methods(root_module, root_module['ns3::ZetaRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   801
    register_Ns3ZipfRandomVariable_methods(root_module, root_module['ns3::ZipfRandomVariable'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   802
    register_Ns3Application_methods(root_module, root_module['ns3::Application'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   803
    register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   804
    register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   805
    register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   806
    register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   807
    register_Ns3BooleanValue_methods(root_module, root_module['ns3::BooleanValue'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   808
    register_Ns3BulkSendApplication_methods(root_module, root_module['ns3::BulkSendApplication'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   809
    register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   810
    register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   811
    register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   812
    register_Ns3Channel_methods(root_module, root_module['ns3::Channel'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   813
    register_Ns3ConstantRandomVariable_methods(root_module, root_module['ns3::ConstantRandomVariable'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   814
    register_Ns3DataCalculator_methods(root_module, root_module['ns3::DataCalculator'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   815
    register_Ns3DataCollectionObject_methods(root_module, root_module['ns3::DataCollectionObject'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   816
    register_Ns3DataOutputInterface_methods(root_module, root_module['ns3::DataOutputInterface'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   817
    register_Ns3DataRateChecker_methods(root_module, root_module['ns3::DataRateChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   818
    register_Ns3DataRateValue_methods(root_module, root_module['ns3::DataRateValue'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   819
    register_Ns3DeterministicRandomVariable_methods(root_module, root_module['ns3::DeterministicRandomVariable'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   820
    register_Ns3DoubleValue_methods(root_module, root_module['ns3::DoubleValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   821
    register_Ns3DropTailQueue_methods(root_module, root_module['ns3::DropTailQueue'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   822
    register_Ns3EmpiricalRandomVariable_methods(root_module, root_module['ns3::EmpiricalRandomVariable'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   823
    register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   824
    register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   825
    register_Ns3EnumValue_methods(root_module, root_module['ns3::EnumValue'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   826
    register_Ns3ErlangRandomVariable_methods(root_module, root_module['ns3::ErlangRandomVariable'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   827
    register_Ns3ErrorModel_methods(root_module, root_module['ns3::ErrorModel'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   828
    register_Ns3EthernetHeader_methods(root_module, root_module['ns3::EthernetHeader'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   829
    register_Ns3EthernetTrailer_methods(root_module, root_module['ns3::EthernetTrailer'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   830
    register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   831
    register_Ns3ExponentialRandomVariable_methods(root_module, root_module['ns3::ExponentialRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   832
    register_Ns3GammaRandomVariable_methods(root_module, root_module['ns3::GammaRandomVariable'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   833
    register_Ns3IntegerValue_methods(root_module, root_module['ns3::IntegerValue'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   834
    register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   835
    register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   836
    register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   837
    register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   838
    register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   839
    register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   840
    register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   841
    register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   842
    register_Ns3ListErrorModel_methods(root_module, root_module['ns3::ListErrorModel'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   843
    register_Ns3LogNormalRandomVariable_methods(root_module, root_module['ns3::LogNormalRandomVariable'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   844
    register_Ns3Mac16AddressChecker_methods(root_module, root_module['ns3::Mac16AddressChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   845
    register_Ns3Mac16AddressValue_methods(root_module, root_module['ns3::Mac16AddressValue'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   846
    register_Ns3Mac48AddressChecker_methods(root_module, root_module['ns3::Mac48AddressChecker'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   847
    register_Ns3Mac48AddressValue_methods(root_module, root_module['ns3::Mac48AddressValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   848
    register_Ns3Mac64AddressChecker_methods(root_module, root_module['ns3::Mac64AddressChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   849
    register_Ns3Mac64AddressValue_methods(root_module, root_module['ns3::Mac64AddressValue'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   850
    register_Ns3MinMaxAvgTotalCalculator__Double_methods(root_module, root_module['ns3::MinMaxAvgTotalCalculator< double >'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   851
    register_Ns3MinMaxAvgTotalCalculator__Unsigned_int_methods(root_module, root_module['ns3::MinMaxAvgTotalCalculator< unsigned int >'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   852
    register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   853
    register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   854
    register_Ns3Node_methods(root_module, root_module['ns3::Node'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   855
    register_Ns3NormalRandomVariable_methods(root_module, root_module['ns3::NormalRandomVariable'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   856
    register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   857
    register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   858
    register_Ns3OnOffApplication_methods(root_module, root_module['ns3::OnOffApplication'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   859
    register_Ns3OutputStreamWrapper_methods(root_module, root_module['ns3::OutputStreamWrapper'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   860
    register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   861
    register_Ns3PacketSink_methods(root_module, root_module['ns3::PacketSink'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   862
    register_Ns3PacketSizeMinMaxAvgTotalCalculator_methods(root_module, root_module['ns3::PacketSizeMinMaxAvgTotalCalculator'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   863
    register_Ns3PacketSocket_methods(root_module, root_module['ns3::PacketSocket'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   864
    register_Ns3PacketSocketClient_methods(root_module, root_module['ns3::PacketSocketClient'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   865
    register_Ns3PacketSocketFactory_methods(root_module, root_module['ns3::PacketSocketFactory'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   866
    register_Ns3PacketSocketServer_methods(root_module, root_module['ns3::PacketSocketServer'])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   867
    register_Ns3ParetoRandomVariable_methods(root_module, root_module['ns3::ParetoRandomVariable'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   868
    register_Ns3PbbAddressBlock_methods(root_module, root_module['ns3::PbbAddressBlock'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   869
    register_Ns3PbbAddressBlockIpv4_methods(root_module, root_module['ns3::PbbAddressBlockIpv4'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   870
    register_Ns3PbbAddressBlockIpv6_methods(root_module, root_module['ns3::PbbAddressBlockIpv6'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   871
    register_Ns3PbbMessage_methods(root_module, root_module['ns3::PbbMessage'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   872
    register_Ns3PbbMessageIpv4_methods(root_module, root_module['ns3::PbbMessageIpv4'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   873
    register_Ns3PbbMessageIpv6_methods(root_module, root_module['ns3::PbbMessageIpv6'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   874
    register_Ns3PbbPacket_methods(root_module, root_module['ns3::PbbPacket'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   875
    register_Ns3PbbTlv_methods(root_module, root_module['ns3::PbbTlv'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   876
    register_Ns3Ping6_methods(root_module, root_module['ns3::Ping6'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   877
    register_Ns3Probe_methods(root_module, root_module['ns3::Probe'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   878
    register_Ns3Radvd_methods(root_module, root_module['ns3::Radvd'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   879
    register_Ns3RadvdInterface_methods(root_module, root_module['ns3::RadvdInterface'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   880
    register_Ns3RadvdPrefix_methods(root_module, root_module['ns3::RadvdPrefix'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   881
    register_Ns3RateErrorModel_methods(root_module, root_module['ns3::RateErrorModel'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   882
    register_Ns3ReceiveListErrorModel_methods(root_module, root_module['ns3::ReceiveListErrorModel'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   883
    register_Ns3SimpleChannel_methods(root_module, root_module['ns3::SimpleChannel'])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   884
    register_Ns3SimpleNetDevice_methods(root_module, root_module['ns3::SimpleNetDevice'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   885
    register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   886
    register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   887
    register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   888
    register_Ns3UdpClient_methods(root_module, root_module['ns3::UdpClient'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   889
    register_Ns3UdpEchoClient_methods(root_module, root_module['ns3::UdpEchoClient'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   890
    register_Ns3UdpEchoServer_methods(root_module, root_module['ns3::UdpEchoServer'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   891
    register_Ns3UdpServer_methods(root_module, root_module['ns3::UdpServer'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   892
    register_Ns3UdpTraceClient_methods(root_module, root_module['ns3::UdpTraceClient'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   893
    register_Ns3UintegerValue_methods(root_module, root_module['ns3::UintegerValue'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   894
    register_Ns3V4Ping_methods(root_module, root_module['ns3::V4Ping'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   895
    register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   896
    register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   897
    register_Ns3ApplicationPacketProbe_methods(root_module, root_module['ns3::ApplicationPacketProbe'])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
   898
    register_Ns3BurstErrorModel_methods(root_module, root_module['ns3::BurstErrorModel'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   899
    register_Ns3CounterCalculator__Unsigned_int_methods(root_module, root_module['ns3::CounterCalculator< unsigned int >'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   900
    register_Ns3PacketCounterCalculator_methods(root_module, root_module['ns3::PacketCounterCalculator'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   901
    register_Ns3PacketProbe_methods(root_module, root_module['ns3::PacketProbe'])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   902
    register_Ns3PbbAddressTlv_methods(root_module, root_module['ns3::PbbAddressTlv'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   903
    register_Ns3HashImplementation_methods(root_module, root_module['ns3::Hash::Implementation'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   904
    register_Ns3HashFunctionFnv1a_methods(root_module, root_module['ns3::Hash::Function::Fnv1a'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   905
    register_Ns3HashFunctionHash32_methods(root_module, root_module['ns3::Hash::Function::Hash32'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   906
    register_Ns3HashFunctionHash64_methods(root_module, root_module['ns3::Hash::Function::Hash64'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   907
    register_Ns3HashFunctionMurmur3_methods(root_module, root_module['ns3::Hash::Function::Murmur3'])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   908
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   909
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   910
def register_Ns3Address_methods(root_module, cls):
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
   911
    cls.add_binary_comparison_operator('!=')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   912
    cls.add_binary_comparison_operator('<')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   913
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   914
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   915
    ## address.h (module 'network'): ns3::Address::Address() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   916
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   917
    ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   918
    cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   919
    ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   920
    cls.add_constructor([param('ns3::Address const &', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   921
    ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   922
    cls.add_method('CheckCompatible', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   923
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   924
                   [param('uint8_t', 'type'), param('uint8_t', 'len')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   925
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   926
    ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   927
    cls.add_method('CopyAllFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   928
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   929
                   [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   930
    ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   931
    cls.add_method('CopyAllTo', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   932
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   933
                   [param('uint8_t *', 'buffer'), param('uint8_t', 'len')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   934
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   935
    ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   936
    cls.add_method('CopyFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   937
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   938
                   [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   939
    ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   940
    cls.add_method('CopyTo', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   941
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   942
                   [param('uint8_t *', 'buffer')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   943
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   944
    ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   945
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   946
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   947
                   [param('ns3::TagBuffer', 'buffer')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   948
    ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   949
    cls.add_method('GetLength', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   950
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   951
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   952
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   953
    ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   954
    cls.add_method('GetSerializedSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   955
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   956
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   957
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   958
    ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   959
    cls.add_method('IsInvalid', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   960
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   961
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   962
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   963
    ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   964
    cls.add_method('IsMatchingType', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   965
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   966
                   [param('uint8_t', 'type')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   967
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   968
    ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   969
    cls.add_method('Register', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   970
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   971
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   972
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   973
    ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   974
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   975
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   976
                   [param('ns3::TagBuffer', 'buffer')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   977
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   978
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   979
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   980
def register_Ns3ApplicationContainer_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   981
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::ApplicationContainer const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   982
    cls.add_constructor([param('ns3::ApplicationContainer const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   983
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   984
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   985
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(ns3::Ptr<ns3::Application> application) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   986
    cls.add_constructor([param('ns3::Ptr< ns3::Application >', 'application')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   987
    ## application-container.h (module 'network'): ns3::ApplicationContainer::ApplicationContainer(std::string name) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   988
    cls.add_constructor([param('std::string', 'name')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   989
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::ApplicationContainer other) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   990
    cls.add_method('Add', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   991
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   992
                   [param('ns3::ApplicationContainer', 'other')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   993
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(ns3::Ptr<ns3::Application> application) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   994
    cls.add_method('Add', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   995
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   996
                   [param('ns3::Ptr< ns3::Application >', 'application')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   997
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Add(std::string name) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   998
    cls.add_method('Add', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   999
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1000
                   [param('std::string', 'name')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1001
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1002
    cls.add_method('Begin', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1003
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1004
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1005
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1006
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1007
    cls.add_method('End', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1008
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Application > const, std::vector< ns3::Ptr< ns3::Application > > >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1009
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1010
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1011
    ## application-container.h (module 'network'): ns3::Ptr<ns3::Application> ns3::ApplicationContainer::Get(uint32_t i) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1012
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1013
                   'ns3::Ptr< ns3::Application >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1014
                   [param('uint32_t', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1015
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1016
    ## application-container.h (module 'network'): uint32_t ns3::ApplicationContainer::GetN() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1017
    cls.add_method('GetN', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1018
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1019
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1020
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1021
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Start(ns3::Time start) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1022
    cls.add_method('Start', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1023
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1024
                   [param('ns3::Time', 'start')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1025
    ## application-container.h (module 'network'): void ns3::ApplicationContainer::Stop(ns3::Time stop) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1026
    cls.add_method('Stop', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1027
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1028
                   [param('ns3::Time', 'stop')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1029
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1030
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1031
def register_Ns3AsciiFile_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1032
    ## ascii-file.h (module 'network'): ns3::AsciiFile::AsciiFile() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1033
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1034
    ## ascii-file.h (module 'network'): bool ns3::AsciiFile::Fail() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1035
    cls.add_method('Fail', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1036
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1037
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1038
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1039
    ## ascii-file.h (module 'network'): bool ns3::AsciiFile::Eof() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1040
    cls.add_method('Eof', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1041
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1042
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1043
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1044
    ## ascii-file.h (module 'network'): void ns3::AsciiFile::Open(std::string const & filename, std::_Ios_Openmode mode) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1045
    cls.add_method('Open', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1046
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1047
                   [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1048
    ## ascii-file.h (module 'network'): void ns3::AsciiFile::Close() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1049
    cls.add_method('Close', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1050
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1051
                   [])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1052
    ## ascii-file.h (module 'network'): void ns3::AsciiFile::Read(std::string & line) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1053
    cls.add_method('Read', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1054
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1055
                   [param('std::string &', 'line')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1056
    ## ascii-file.h (module 'network'): static bool ns3::AsciiFile::Diff(std::string const & f1, std::string const & f2, uint64_t & lineNumber) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1057
    cls.add_method('Diff', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1058
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1059
                   [param('std::string const &', 'f1'), param('std::string const &', 'f2'), param('uint64_t &', 'lineNumber')], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1060
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1061
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1062
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1063
def register_Ns3AsciiTraceHelper_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1064
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper(ns3::AsciiTraceHelper const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1065
    cls.add_constructor([param('ns3::AsciiTraceHelper const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1066
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelper::AsciiTraceHelper() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1067
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1068
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1069
    cls.add_method('CreateFileStream', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1070
                   'ns3::Ptr< ns3::OutputStreamWrapper >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1071
                   [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode', default_value='std::ios_base::out')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1072
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1073
    cls.add_method('DefaultDequeueSinkWithContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1074
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1075
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1076
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1077
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDequeueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1078
    cls.add_method('DefaultDequeueSinkWithoutContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1079
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1080
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1081
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1082
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1083
    cls.add_method('DefaultDropSinkWithContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1084
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1085
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1086
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1087
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultDropSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1088
    cls.add_method('DefaultDropSinkWithoutContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1089
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1090
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1091
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1092
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1093
    cls.add_method('DefaultEnqueueSinkWithContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1094
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1095
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1096
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1097
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultEnqueueSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1098
    cls.add_method('DefaultEnqueueSinkWithoutContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1099
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1100
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1101
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1102
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithContext(ns3::Ptr<ns3::OutputStreamWrapper> file, std::string context, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1103
    cls.add_method('DefaultReceiveSinkWithContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1104
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1105
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('std::string', 'context'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1106
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1107
    ## trace-helper.h (module 'network'): static void ns3::AsciiTraceHelper::DefaultReceiveSinkWithoutContext(ns3::Ptr<ns3::OutputStreamWrapper> file, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1108
    cls.add_method('DefaultReceiveSinkWithoutContext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1109
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1110
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'file'), param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1111
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1112
    ## trace-helper.h (module 'network'): std::string ns3::AsciiTraceHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1113
    cls.add_method('GetFilenameFromDevice', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1114
                   'std::string', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1115
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1116
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1117
    cls.add_method('GetFilenameFromInterfacePair', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1118
                   'std::string', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1119
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1120
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1121
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1122
def register_Ns3AsciiTraceHelperForDevice_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1123
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice(ns3::AsciiTraceHelperForDevice const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1124
    cls.add_constructor([param('ns3::AsciiTraceHelperForDevice const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1125
    ## trace-helper.h (module 'network'): ns3::AsciiTraceHelperForDevice::AsciiTraceHelperForDevice() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1126
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1127
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool explicitFilename=false) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1128
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1129
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1130
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1131
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::Ptr<ns3::NetDevice> nd) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1132
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1133
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1134
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::Ptr< ns3::NetDevice >', 'nd')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1135
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, std::string ndName, bool explicitFilename=false) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1136
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1137
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1138
                   [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'explicitFilename', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1139
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, std::string ndName) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1140
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1141
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1142
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'ndName')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1143
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NetDeviceContainer d) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1144
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1145
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1146
                   [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1147
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NetDeviceContainer d) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1148
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1149
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1150
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NetDeviceContainer', 'd')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1151
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, ns3::NodeContainer n) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1152
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1153
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1154
                   [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1155
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, ns3::NodeContainer n) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1156
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1157
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1158
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('ns3::NodeContainer', 'n')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1159
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool explicitFilename) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1160
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1161
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1162
                   [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'explicitFilename')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1163
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAscii(ns3::Ptr<ns3::OutputStreamWrapper> stream, uint32_t nodeid, uint32_t deviceid) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1164
    cls.add_method('EnableAscii', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1165
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1166
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1167
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(std::string prefix) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1168
    cls.add_method('EnableAsciiAll', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1169
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1170
                   [param('std::string', 'prefix')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1171
    ## trace-helper.h (module 'network'): void ns3::AsciiTraceHelperForDevice::EnableAsciiAll(ns3::Ptr<ns3::OutputStreamWrapper> stream) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1172
    cls.add_method('EnableAsciiAll', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1173
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1174
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1175
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1176
    cls.add_method('EnableAsciiInternal', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1177
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1178
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream'), param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'explicitFilename')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1179
                   is_pure_virtual=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1180
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1181
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1182
def register_Ns3AttributeConstructionList_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1183
    ## 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
  1184
    cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1185
    ## 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
  1186
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1187
    ## 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
  1188
    cls.add_method('Add', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1189
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1190
                   [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
  1191
    ## 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
  1192
    cls.add_method('Begin', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1193
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1194
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1195
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1196
    ## 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
  1197
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1198
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1199
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1200
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1201
    ## 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
  1202
    cls.add_method('Find', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1203
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1204
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1205
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1206
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1207
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1208
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1209
    ## 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
  1210
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1211
    ## 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
  1212
    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
  1213
    ## 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
  1214
    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
  1215
    ## 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
  1216
    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
  1217
    ## 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
  1218
    cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1219
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1220
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1221
def register_Ns3Average__Double_methods(root_module, cls):
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1222
    ## average.h (module 'stats'): ns3::Average<double>::Average(ns3::Average<double> const & arg0) [copy constructor]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1223
    cls.add_constructor([param('ns3::Average< double > const &', 'arg0')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1224
    ## average.h (module 'stats'): ns3::Average<double>::Average() [constructor]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1225
    cls.add_constructor([])
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1226
    ## average.h (module 'stats'): double ns3::Average<double>::Avg() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1227
    cls.add_method('Avg', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1228
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1229
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1230
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1231
    ## average.h (module 'stats'): uint32_t ns3::Average<double>::Count() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1232
    cls.add_method('Count', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1233
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1234
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1235
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1236
    ## average.h (module 'stats'): double ns3::Average<double>::Error90() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1237
    cls.add_method('Error90', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1238
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1239
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1240
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1241
    ## average.h (module 'stats'): double ns3::Average<double>::Error95() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1242
    cls.add_method('Error95', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1243
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1244
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1245
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1246
    ## average.h (module 'stats'): double ns3::Average<double>::Error99() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1247
    cls.add_method('Error99', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1248
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1249
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1250
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1251
    ## average.h (module 'stats'): double ns3::Average<double>::Max() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1252
    cls.add_method('Max', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1253
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1254
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1255
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1256
    ## average.h (module 'stats'): double ns3::Average<double>::Mean() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1257
    cls.add_method('Mean', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1258
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1259
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1260
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1261
    ## average.h (module 'stats'): double ns3::Average<double>::Min() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1262
    cls.add_method('Min', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1263
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1264
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1265
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1266
    ## average.h (module 'stats'): void ns3::Average<double>::Reset() [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1267
    cls.add_method('Reset', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1268
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1269
                   [])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1270
    ## average.h (module 'stats'): double ns3::Average<double>::Stddev() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1271
    cls.add_method('Stddev', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1272
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1273
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1274
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1275
    ## average.h (module 'stats'): void ns3::Average<double>::Update(double const & x) [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1276
    cls.add_method('Update', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1277
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1278
                   [param('double const &', 'x')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1279
    ## average.h (module 'stats'): double ns3::Average<double>::Var() const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1280
    cls.add_method('Var', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1281
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1282
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1283
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1284
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1285
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1286
def register_Ns3Buffer_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1287
    ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1288
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1289
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1290
    cls.add_constructor([param('uint32_t', 'dataSize')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1291
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1292
    cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1293
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1294
    cls.add_constructor([param('ns3::Buffer const &', 'o')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1295
    ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(uint32_t end) [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1296
    cls.add_method('AddAtEnd', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1297
                   'void', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1298
                   [param('uint32_t', 'end')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1299
    ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1300
    cls.add_method('AddAtEnd', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1301
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1302
                   [param('ns3::Buffer const &', 'o')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1303
    ## buffer.h (module 'network'): void ns3::Buffer::AddAtStart(uint32_t start) [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1304
    cls.add_method('AddAtStart', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1305
                   'void', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1306
                   [param('uint32_t', 'start')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1307
    ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1308
    cls.add_method('Begin', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1309
                   'ns3::Buffer::Iterator', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1310
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1311
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1312
    ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1313
    cls.add_method('CopyData', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1314
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1315
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1316
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1317
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1318
    cls.add_method('CopyData', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1319
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1320
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1321
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1322
    ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1323
    cls.add_method('CreateFragment', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1324
                   'ns3::Buffer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1325
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1326
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1327
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1328
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1329
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1330
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1331
    ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1332
    cls.add_method('End', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1333
                   'ns3::Buffer::Iterator', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1334
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1335
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1336
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1337
    cls.add_method('GetSerializedSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1338
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1339
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1340
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1341
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1342
    cls.add_method('GetSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1343
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1344
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1345
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1346
    ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1347
    cls.add_method('PeekData', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1348
                   'uint8_t const *', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1349
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1350
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1351
    ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1352
    cls.add_method('RemoveAtEnd', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1353
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1354
                   [param('uint32_t', 'end')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1355
    ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1356
    cls.add_method('RemoveAtStart', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1357
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1358
                   [param('uint32_t', 'start')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1359
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1360
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1361
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1362
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1363
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1364
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1365
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1366
def register_Ns3BufferIterator_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1367
    ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1368
    cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1369
    ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1370
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1371
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1372
    cls.add_method('CalculateIpChecksum', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1373
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1374
                   [param('uint16_t', 'size')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1375
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1376
    cls.add_method('CalculateIpChecksum', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1377
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1378
                   [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1379
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1380
    cls.add_method('GetDistanceFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1381
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1382
                   [param('ns3::Buffer::Iterator const &', 'o')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1383
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1384
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1385
    cls.add_method('GetSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1386
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1387
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1388
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1389
    ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1390
    cls.add_method('IsEnd', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1391
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1392
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1393
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1394
    ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1395
    cls.add_method('IsStart', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1396
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1397
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1398
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1399
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1400
    cls.add_method('Next', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1401
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1402
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1403
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1404
    cls.add_method('Next', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1405
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1406
                   [param('uint32_t', 'delta')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1407
    ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1408
    cls.add_method('PeekU8', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1409
                   'uint8_t', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1410
                   [])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1411
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1412
    cls.add_method('Prev', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1413
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1414
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1415
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1416
    cls.add_method('Prev', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1417
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1418
                   [param('uint32_t', 'delta')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1419
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1420
    cls.add_method('Read', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1421
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1422
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1423
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1424
    cls.add_method('Read', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1425
                   'void', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1426
                   [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1427
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1428
    cls.add_method('ReadLsbtohU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1429
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1430
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1431
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1432
    cls.add_method('ReadLsbtohU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1433
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1434
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1435
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1436
    cls.add_method('ReadLsbtohU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1437
                   'uint64_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1438
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1439
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1440
    cls.add_method('ReadNtohU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1441
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1442
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1443
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1444
    cls.add_method('ReadNtohU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1445
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1446
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1447
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1448
    cls.add_method('ReadNtohU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1449
                   'uint64_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1450
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1451
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1452
    cls.add_method('ReadU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1453
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1454
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1455
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1456
    cls.add_method('ReadU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1457
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1458
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1459
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1460
    cls.add_method('ReadU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1461
                   'uint64_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1462
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1463
    ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1464
    cls.add_method('ReadU8', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1465
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1466
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1467
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1468
    cls.add_method('Write', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1469
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1470
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1471
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1472
    cls.add_method('Write', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1473
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1474
                   [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1475
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1476
    cls.add_method('WriteHtolsbU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1477
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1478
                   [param('uint16_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1479
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1480
    cls.add_method('WriteHtolsbU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1481
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1482
                   [param('uint32_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1483
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1484
    cls.add_method('WriteHtolsbU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1485
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1486
                   [param('uint64_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1487
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1488
    cls.add_method('WriteHtonU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1489
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1490
                   [param('uint16_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1491
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1492
    cls.add_method('WriteHtonU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1493
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1494
                   [param('uint32_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1495
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1496
    cls.add_method('WriteHtonU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1497
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1498
                   [param('uint64_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1499
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1500
    cls.add_method('WriteU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1501
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1502
                   [param('uint16_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1503
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1504
    cls.add_method('WriteU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1505
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1506
                   [param('uint32_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1507
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1508
    cls.add_method('WriteU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1509
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1510
                   [param('uint64_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1511
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1512
    cls.add_method('WriteU8', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1513
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1514
                   [param('uint8_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1515
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1516
    cls.add_method('WriteU8', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1517
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1518
                   [param('uint8_t', 'data'), param('uint32_t', 'len')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1519
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1520
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1521
def register_Ns3BulkSendHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1522
    ## bulk-send-helper.h (module 'applications'): ns3::BulkSendHelper::BulkSendHelper(ns3::BulkSendHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1523
    cls.add_constructor([param('ns3::BulkSendHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1524
    ## bulk-send-helper.h (module 'applications'): ns3::BulkSendHelper::BulkSendHelper(std::string protocol, ns3::Address address) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1525
    cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1526
    ## bulk-send-helper.h (module 'applications'): ns3::ApplicationContainer ns3::BulkSendHelper::Install(ns3::NodeContainer c) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1527
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1528
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1529
                   [param('ns3::NodeContainer', 'c')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1530
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1531
    ## bulk-send-helper.h (module 'applications'): ns3::ApplicationContainer ns3::BulkSendHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1532
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1533
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1534
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1535
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1536
    ## bulk-send-helper.h (module 'applications'): ns3::ApplicationContainer ns3::BulkSendHelper::Install(std::string nodeName) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1537
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1538
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1539
                   [param('std::string', 'nodeName')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1540
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1541
    ## bulk-send-helper.h (module 'applications'): void ns3::BulkSendHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1542
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1543
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1544
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1545
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1546
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1547
def register_Ns3ByteTagIterator_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1548
    ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1549
    cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1550
    ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1551
    cls.add_method('HasNext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1552
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1553
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1554
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1555
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1556
    cls.add_method('Next', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1557
                   'ns3::ByteTagIterator::Item', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1558
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1559
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1560
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1561
def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1562
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1563
    cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1564
    ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1565
    cls.add_method('GetEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1566
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1567
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1568
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1569
    ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1570
    cls.add_method('GetStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1571
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1572
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1573
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1574
    ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1575
    cls.add_method('GetTag', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1576
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1577
                   [param('ns3::Tag &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1578
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1579
    ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1580
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1581
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1582
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1583
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1584
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1585
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1586
def register_Ns3ByteTagList_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1587
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1588
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1589
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1590
    cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1591
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1592
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1593
                   'ns3::TagBuffer', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1594
                   [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1595
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1596
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1597
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1598
                   [param('ns3::ByteTagList const &', 'o')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1599
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t appendOffset) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1600
    cls.add_method('AddAtEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1601
                   'void', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1602
                   [param('int32_t', 'appendOffset')])
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1603
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t prependOffset) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1604
    cls.add_method('AddAtStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1605
                   'void', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1606
                   [param('int32_t', 'prependOffset')])
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1607
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Adjust(int32_t adjustment) [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1608
    cls.add_method('Adjust', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1609
                   'void', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  1610
                   [param('int32_t', 'adjustment')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1611
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1612
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1613
                   'ns3::ByteTagList::Iterator', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1614
                   [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1615
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1616
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1617
    cls.add_method('RemoveAll', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1618
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1619
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1620
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1621
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1622
def register_Ns3ByteTagListIterator_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1623
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1624
    cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1625
    ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1626
    cls.add_method('GetOffsetStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1627
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1628
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1629
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1630
    ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1631
    cls.add_method('HasNext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1632
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1633
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1634
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1635
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1636
    cls.add_method('Next', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1637
                   'ns3::ByteTagList::Iterator::Item', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1638
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1639
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1640
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1641
def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1642
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1643
    cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1644
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1645
    cls.add_constructor([param('ns3::TagBuffer', 'buf')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1646
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1647
    cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1648
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1649
    cls.add_instance_attribute('end', 'int32_t', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1650
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1651
    cls.add_instance_attribute('size', 'uint32_t', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1652
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1653
    cls.add_instance_attribute('start', 'int32_t', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1654
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1655
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1656
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1657
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1658
def register_Ns3CallbackBase_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1659
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1660
    cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1661
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1662
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1663
    ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1664
    cls.add_method('GetImpl', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1665
                   'ns3::Ptr< ns3::CallbackImplBase >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1666
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1667
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1668
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1669
    cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1670
                        visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1671
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1672
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1673
def register_Ns3ChannelList_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1674
    ## channel-list.h (module 'network'): ns3::ChannelList::ChannelList() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1675
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1676
    ## channel-list.h (module 'network'): ns3::ChannelList::ChannelList(ns3::ChannelList const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1677
    cls.add_constructor([param('ns3::ChannelList const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1678
    ## channel-list.h (module 'network'): static uint32_t ns3::ChannelList::Add(ns3::Ptr<ns3::Channel> channel) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1679
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1680
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1681
                   [param('ns3::Ptr< ns3::Channel >', 'channel')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1682
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1683
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1684
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1685
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Channel > const, std::vector< ns3::Ptr< ns3::Channel > > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1686
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1687
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1688
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1689
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1690
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Channel > const, std::vector< ns3::Ptr< ns3::Channel > > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1691
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1692
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1693
    ## channel-list.h (module 'network'): static ns3::Ptr<ns3::Channel> ns3::ChannelList::GetChannel(uint32_t n) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1694
    cls.add_method('GetChannel', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1695
                   'ns3::Ptr< ns3::Channel >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1696
                   [param('uint32_t', 'n')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1697
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1698
    ## channel-list.h (module 'network'): static uint32_t ns3::ChannelList::GetNChannels() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1699
    cls.add_method('GetNChannels', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1700
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1701
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1702
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1703
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1704
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1705
def register_Ns3DataOutputCallback_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1706
    ## data-output-interface.h (module 'stats'): ns3::DataOutputCallback::DataOutputCallback() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1707
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1708
    ## data-output-interface.h (module 'stats'): ns3::DataOutputCallback::DataOutputCallback(ns3::DataOutputCallback const & arg0) [copy constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1709
    cls.add_constructor([param('ns3::DataOutputCallback const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1710
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, int val) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1711
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1712
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1713
                   [param('std::string', 'key'), param('std::string', 'variable'), param('int', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1714
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1715
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, uint32_t val) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1716
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1717
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1718
                   [param('std::string', 'key'), param('std::string', 'variable'), param('uint32_t', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1719
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1720
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, double val) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1721
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1722
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1723
                   [param('std::string', 'key'), param('std::string', 'variable'), param('double', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1724
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1725
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, std::string val) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1726
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1727
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1728
                   [param('std::string', 'key'), param('std::string', 'variable'), param('std::string', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1729
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1730
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputSingleton(std::string key, std::string variable, ns3::Time val) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1731
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1732
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1733
                   [param('std::string', 'key'), param('std::string', 'variable'), param('ns3::Time', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1734
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1735
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputCallback::OutputStatistic(std::string key, std::string variable, ns3::StatisticalSummary const * statSum) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1736
    cls.add_method('OutputStatistic', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1737
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1738
                   [param('std::string', 'key'), param('std::string', 'variable'), param('ns3::StatisticalSummary const *', 'statSum')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1739
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1740
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1741
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1742
def register_Ns3DataRate_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1743
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1744
    cls.add_binary_comparison_operator('!=')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1745
    cls.add_binary_comparison_operator('<')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1746
    cls.add_binary_comparison_operator('<=')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1747
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1748
    cls.add_binary_comparison_operator('>')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1749
    cls.add_binary_comparison_operator('>=')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1750
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate(ns3::DataRate const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1751
    cls.add_constructor([param('ns3::DataRate const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1752
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1753
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1754
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate(uint64_t bps) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1755
    cls.add_constructor([param('uint64_t', 'bps')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1756
    ## data-rate.h (module 'network'): ns3::DataRate::DataRate(std::string rate) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1757
    cls.add_constructor([param('std::string', 'rate')])
11382
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1758
    ## data-rate.h (module 'network'): ns3::Time ns3::DataRate::CalculateBitsTxTime(uint32_t bits) const [member function]
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1759
    cls.add_method('CalculateBitsTxTime', 
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1760
                   'ns3::Time', 
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1761
                   [param('uint32_t', 'bits')], 
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1762
                   is_const=True)
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1763
    ## data-rate.h (module 'network'): ns3::Time ns3::DataRate::CalculateBytesTxTime(uint32_t bytes) const [member function]
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1764
    cls.add_method('CalculateBytesTxTime', 
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1765
                   'ns3::Time', 
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1766
                   [param('uint32_t', 'bytes')], 
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1767
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1768
    ## data-rate.h (module 'network'): double ns3::DataRate::CalculateTxTime(uint32_t bytes) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1769
    cls.add_method('CalculateTxTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1770
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1771
                   [param('uint32_t', 'bytes')], 
11382
dbd2787c79f6 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11114
diff changeset
  1772
                   deprecated=True, is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1773
    ## data-rate.h (module 'network'): uint64_t ns3::DataRate::GetBitRate() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1774
    cls.add_method('GetBitRate', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1775
                   'uint64_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1776
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1777
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1778
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1779
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1780
def register_Ns3DelayJitterEstimation_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1781
    ## delay-jitter-estimation.h (module 'network'): ns3::DelayJitterEstimation::DelayJitterEstimation(ns3::DelayJitterEstimation const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1782
    cls.add_constructor([param('ns3::DelayJitterEstimation const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1783
    ## delay-jitter-estimation.h (module 'network'): ns3::DelayJitterEstimation::DelayJitterEstimation() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1784
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1785
    ## delay-jitter-estimation.h (module 'network'): ns3::Time ns3::DelayJitterEstimation::GetLastDelay() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1786
    cls.add_method('GetLastDelay', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1787
                   'ns3::Time', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1788
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1789
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1790
    ## delay-jitter-estimation.h (module 'network'): uint64_t ns3::DelayJitterEstimation::GetLastJitter() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1791
    cls.add_method('GetLastJitter', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1792
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1793
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1794
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1795
    ## delay-jitter-estimation.h (module 'network'): static void ns3::DelayJitterEstimation::PrepareTx(ns3::Ptr<ns3::Packet const> packet) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1796
    cls.add_method('PrepareTx', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1797
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1798
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1799
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1800
    ## delay-jitter-estimation.h (module 'network'): void ns3::DelayJitterEstimation::RecordRx(ns3::Ptr<ns3::Packet const> packet) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1801
    cls.add_method('RecordRx', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1802
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1803
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1804
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1805
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1806
def register_Ns3EventId_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1807
    cls.add_binary_comparison_operator('!=')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1808
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1809
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1810
    cls.add_constructor([param('ns3::EventId const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1811
    ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1812
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1813
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1814
    cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1815
    ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1816
    cls.add_method('Cancel', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1817
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1818
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1819
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1820
    cls.add_method('GetContext', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1821
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1822
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1823
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1824
    ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1825
    cls.add_method('GetTs', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1826
                   'uint64_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1827
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1828
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1829
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1830
    cls.add_method('GetUid', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1831
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1832
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1833
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1834
    ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1835
    cls.add_method('IsExpired', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1836
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1837
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1838
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1839
    ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1840
    cls.add_method('IsRunning', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1841
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1842
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1843
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1844
    ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1845
    cls.add_method('PeekEventImpl', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1846
                   'ns3::EventImpl *', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1847
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1848
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1849
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1850
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1851
def register_Ns3Hasher_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1852
    ## hash.h (module 'core'): ns3::Hasher::Hasher(ns3::Hasher const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1853
    cls.add_constructor([param('ns3::Hasher const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1854
    ## hash.h (module 'core'): ns3::Hasher::Hasher() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1855
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1856
    ## hash.h (module 'core'): ns3::Hasher::Hasher(ns3::Ptr<ns3::Hash::Implementation> hp) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1857
    cls.add_constructor([param('ns3::Ptr< ns3::Hash::Implementation >', 'hp')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1858
    ## hash.h (module 'core'): uint32_t ns3::Hasher::GetHash32(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1859
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1860
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1861
                   [param('char const *', 'buffer'), param('size_t const', 'size')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1862
    ## hash.h (module 'core'): uint32_t ns3::Hasher::GetHash32(std::string const s) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1863
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1864
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1865
                   [param('std::string const', 's')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1866
    ## hash.h (module 'core'): uint64_t ns3::Hasher::GetHash64(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1867
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1868
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1869
                   [param('char const *', 'buffer'), param('size_t const', 'size')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1870
    ## hash.h (module 'core'): uint64_t ns3::Hasher::GetHash64(std::string const s) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1871
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1872
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1873
                   [param('std::string const', 's')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1874
    ## hash.h (module 'core'): ns3::Hasher & ns3::Hasher::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1875
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1876
                   'ns3::Hasher &', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1877
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1878
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1879
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1880
def register_Ns3Inet6SocketAddress_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1881
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Inet6SocketAddress const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1882
    cls.add_constructor([param('ns3::Inet6SocketAddress const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1883
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Ipv6Address ipv6, uint16_t port) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1884
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6'), param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1885
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Ipv6Address ipv6) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1886
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1887
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(uint16_t port) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1888
    cls.add_constructor([param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1889
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(char const * ipv6, uint16_t port) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1890
    cls.add_constructor([param('char const *', 'ipv6'), param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1891
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(char const * ipv6) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1892
    cls.add_constructor([param('char const *', 'ipv6')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1893
    ## inet6-socket-address.h (module 'network'): static ns3::Inet6SocketAddress ns3::Inet6SocketAddress::ConvertFrom(ns3::Address const & addr) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1894
    cls.add_method('ConvertFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1895
                   'ns3::Inet6SocketAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1896
                   [param('ns3::Address const &', 'addr')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1897
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1898
    ## inet6-socket-address.h (module 'network'): ns3::Ipv6Address ns3::Inet6SocketAddress::GetIpv6() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1899
    cls.add_method('GetIpv6', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1900
                   'ns3::Ipv6Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1901
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1902
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1903
    ## inet6-socket-address.h (module 'network'): uint16_t ns3::Inet6SocketAddress::GetPort() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1904
    cls.add_method('GetPort', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1905
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1906
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1907
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1908
    ## inet6-socket-address.h (module 'network'): static bool ns3::Inet6SocketAddress::IsMatchingType(ns3::Address const & addr) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1909
    cls.add_method('IsMatchingType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1910
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1911
                   [param('ns3::Address const &', 'addr')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1912
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1913
    ## inet6-socket-address.h (module 'network'): void ns3::Inet6SocketAddress::SetIpv6(ns3::Ipv6Address ipv6) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1914
    cls.add_method('SetIpv6', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1915
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1916
                   [param('ns3::Ipv6Address', 'ipv6')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1917
    ## inet6-socket-address.h (module 'network'): void ns3::Inet6SocketAddress::SetPort(uint16_t port) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1918
    cls.add_method('SetPort', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1919
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1920
                   [param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1921
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1922
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1923
def register_Ns3InetSocketAddress_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1924
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::InetSocketAddress const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1925
    cls.add_constructor([param('ns3::InetSocketAddress const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1926
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::Ipv4Address ipv4, uint16_t port) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1927
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4'), param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1928
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::Ipv4Address ipv4) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1929
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1930
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(uint16_t port) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1931
    cls.add_constructor([param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1932
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(char const * ipv4, uint16_t port) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1933
    cls.add_constructor([param('char const *', 'ipv4'), param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1934
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(char const * ipv4) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1935
    cls.add_constructor([param('char const *', 'ipv4')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1936
    ## inet-socket-address.h (module 'network'): static ns3::InetSocketAddress ns3::InetSocketAddress::ConvertFrom(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1937
    cls.add_method('ConvertFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1938
                   'ns3::InetSocketAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1939
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1940
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1941
    ## inet-socket-address.h (module 'network'): ns3::Ipv4Address ns3::InetSocketAddress::GetIpv4() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1942
    cls.add_method('GetIpv4', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1943
                   'ns3::Ipv4Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1944
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1945
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1946
    ## inet-socket-address.h (module 'network'): uint16_t ns3::InetSocketAddress::GetPort() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1947
    cls.add_method('GetPort', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1948
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1949
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1950
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1951
    ## inet-socket-address.h (module 'network'): static bool ns3::InetSocketAddress::IsMatchingType(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1952
    cls.add_method('IsMatchingType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1953
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1954
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1955
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1956
    ## inet-socket-address.h (module 'network'): void ns3::InetSocketAddress::SetIpv4(ns3::Ipv4Address address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1957
    cls.add_method('SetIpv4', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1958
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1959
                   [param('ns3::Ipv4Address', 'address')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1960
    ## inet-socket-address.h (module 'network'): void ns3::InetSocketAddress::SetPort(uint16_t port) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1961
    cls.add_method('SetPort', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1962
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1963
                   [param('uint16_t', 'port')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1964
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1965
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1966
def register_Ns3Ipv4Address_methods(root_module, cls):
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
  1967
    cls.add_binary_comparison_operator('!=')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1968
    cls.add_binary_comparison_operator('<')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1969
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1970
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1971
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1972
    cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1973
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1974
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1975
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1976
    cls.add_constructor([param('uint32_t', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1977
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1978
    cls.add_constructor([param('char const *', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1979
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1980
    cls.add_method('CombineMask', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1981
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1982
                   [param('ns3::Ipv4Mask const &', 'mask')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1983
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1984
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1985
    cls.add_method('ConvertFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1986
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1987
                   [param('ns3::Address const &', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1988
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1989
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1990
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1991
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1992
                   [param('uint8_t const *', 'buf')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1993
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1994
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1995
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1996
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1997
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1998
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1999
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2000
    cls.add_method('GetAny', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2001
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2002
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2003
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2004
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2005
    cls.add_method('GetBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2006
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2007
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2008
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2009
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2010
    cls.add_method('GetLoopback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2011
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2012
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2013
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2014
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2015
    cls.add_method('GetSubnetDirectedBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2016
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2017
                   [param('ns3::Ipv4Mask const &', 'mask')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2018
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2019
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2020
    cls.add_method('GetZero', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2021
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2022
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2023
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2024
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2025
    cls.add_method('IsBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2026
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2027
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2028
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2029
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2030
    cls.add_method('IsEqual', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2031
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2032
                   [param('ns3::Ipv4Address const &', 'other')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2033
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2034
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2035
    cls.add_method('IsLocalMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2036
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2037
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2038
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2039
    ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2040
    cls.add_method('IsMatchingType', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2041
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2042
                   [param('ns3::Address const &', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2043
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2044
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2045
    cls.add_method('IsMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2046
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2047
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2048
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2049
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2050
    cls.add_method('IsSubnetDirectedBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2051
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2052
                   [param('ns3::Ipv4Mask const &', 'mask')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2053
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2054
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2055
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2056
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2057
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2058
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2059
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2060
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2061
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2062
                   [param('uint8_t *', 'buf')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2063
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2064
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2065
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2066
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2067
                   [param('uint32_t', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2068
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2069
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2070
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2071
                   [param('char const *', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2072
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2073
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2074
def register_Ns3Ipv4Mask_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2075
    cls.add_binary_comparison_operator('!=')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2076
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2077
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2078
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2079
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2080
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2081
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2082
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2083
    cls.add_constructor([param('uint32_t', 'mask')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2084
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2085
    cls.add_constructor([param('char const *', 'mask')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2086
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2087
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2088
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2089
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2090
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2091
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2092
    cls.add_method('GetInverse', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2093
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2094
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2095
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2096
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2097
    cls.add_method('GetLoopback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2098
                   'ns3::Ipv4Mask', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2099
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2100
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2101
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2102
    cls.add_method('GetOnes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2103
                   'ns3::Ipv4Mask', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2104
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2105
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2106
    ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2107
    cls.add_method('GetPrefixLength', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2108
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2109
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2110
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2111
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2112
    cls.add_method('GetZero', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2113
                   'ns3::Ipv4Mask', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2114
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2115
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2116
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2117
    cls.add_method('IsEqual', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2118
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2119
                   [param('ns3::Ipv4Mask', 'other')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2120
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2121
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2122
    cls.add_method('IsMatch', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2123
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2124
                   [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2125
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2126
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2127
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2128
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2129
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2130
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2131
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2132
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2133
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2134
                   [param('uint32_t', 'mask')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2135
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2136
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2137
def register_Ns3Ipv6Address_methods(root_module, cls):
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
  2138
    cls.add_binary_comparison_operator('!=')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2139
    cls.add_binary_comparison_operator('<')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2140
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2141
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2142
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2143
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2144
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2145
    cls.add_constructor([param('char const *', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2146
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2147
    cls.add_constructor([param('uint8_t *', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2148
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2149
    cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2150
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2151
    cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2152
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2153
    cls.add_method('CombinePrefix', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2154
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2155
                   [param('ns3::Ipv6Prefix const &', 'prefix')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2156
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2157
    cls.add_method('ConvertFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2158
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2159
                   [param('ns3::Address const &', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2160
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2161
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2162
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2163
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2164
                   [param('uint8_t const *', 'buf')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2165
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2166
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2167
    cls.add_method('GetAllHostsMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2168
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2169
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2170
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2171
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2172
    cls.add_method('GetAllNodesMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2173
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2174
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2175
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2176
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2177
    cls.add_method('GetAllRoutersMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2178
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2179
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2180
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2181
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2182
    cls.add_method('GetAny', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2183
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2184
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2185
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2186
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2187
    cls.add_method('GetBytes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2188
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2189
                   [param('uint8_t *', 'buf')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2190
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2191
    ## 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
  2192
    cls.add_method('GetIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2193
                   'ns3::Ipv4Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2194
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2195
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2196
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2197
    cls.add_method('GetLoopback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2198
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2199
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2200
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2201
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2202
    cls.add_method('GetOnes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2203
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2204
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2205
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2206
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2207
    cls.add_method('GetZero', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2208
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2209
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2210
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2211
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2212
    cls.add_method('IsAllHostsMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2213
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2214
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2215
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2216
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2217
    cls.add_method('IsAllNodesMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2218
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2219
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2220
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2221
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2222
    cls.add_method('IsAllRoutersMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2223
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2224
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2225
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2226
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2227
    cls.add_method('IsAny', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2228
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2229
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2230
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2231
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsDocumentation() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2232
    cls.add_method('IsDocumentation', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2233
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2234
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2235
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2236
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2237
    cls.add_method('IsEqual', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2238
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2239
                   [param('ns3::Ipv6Address const &', 'other')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2240
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  2241
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() const [member function]
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2242
    cls.add_method('IsIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2243
                   'bool', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  2244
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  2245
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2246
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2247
    cls.add_method('IsLinkLocal', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2248
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2249
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2250
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2251
    ## 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
  2252
    cls.add_method('IsLinkLocalMulticast', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2253
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2254
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2255
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2256
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2257
    cls.add_method('IsLocalhost', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2258
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2259
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2260
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2261
    ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2262
    cls.add_method('IsMatchingType', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2263
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2264
                   [param('ns3::Address const &', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2265
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2266
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2267
    cls.add_method('IsMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2268
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2269
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2270
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2271
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2272
    cls.add_method('IsSolicitedMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2273
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2274
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2275
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2276
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac16Address addr, ns3::Ipv6Address prefix) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2277
    cls.add_method('MakeAutoconfiguredAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2278
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2279
                   [param('ns3::Mac16Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2280
                   is_static=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2281
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2282
    cls.add_method('MakeAutoconfiguredAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2283
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2284
                   [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2285
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2286
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac64Address addr, ns3::Ipv6Address prefix) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2287
    cls.add_method('MakeAutoconfiguredAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2288
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2289
                   [param('ns3::Mac64Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2290
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2291
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac16Address mac) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2292
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2293
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2294
                   [param('ns3::Mac16Address', 'mac')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2295
                   is_static=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2296
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2297
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2298
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2299
                   [param('ns3::Mac48Address', 'mac')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2300
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2301
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac64Address mac) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2302
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2303
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2304
                   [param('ns3::Mac64Address', 'mac')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2305
                   is_static=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2306
    ## 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
  2307
    cls.add_method('MakeIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2308
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2309
                   [param('ns3::Ipv4Address', 'addr')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2310
                   is_static=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2311
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2312
    cls.add_method('MakeSolicitedAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2313
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2314
                   [param('ns3::Ipv6Address', 'addr')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2315
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2316
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2317
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2318
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2319
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2320
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2321
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2322
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2323
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2324
                   [param('uint8_t *', 'buf')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2325
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2326
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2327
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2328
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2329
                   [param('char const *', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2330
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2331
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2332
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2333
                   [param('uint8_t *', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2334
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2335
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2336
def register_Ns3Ipv6Prefix_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2337
    cls.add_binary_comparison_operator('!=')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2338
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2339
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2340
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2341
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2342
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2343
    cls.add_constructor([param('uint8_t *', 'prefix')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2344
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2345
    cls.add_constructor([param('char const *', 'prefix')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2346
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2347
    cls.add_constructor([param('uint8_t', 'prefix')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2348
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2349
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2350
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2351
    cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2352
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2353
    cls.add_method('GetBytes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2354
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2355
                   [param('uint8_t *', 'buf')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2356
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2357
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2358
    cls.add_method('GetLoopback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2359
                   'ns3::Ipv6Prefix', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2360
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2361
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2362
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2363
    cls.add_method('GetOnes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2364
                   'ns3::Ipv6Prefix', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2365
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2366
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2367
    ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2368
    cls.add_method('GetPrefixLength', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2369
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2370
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2371
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2372
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2373
    cls.add_method('GetZero', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2374
                   'ns3::Ipv6Prefix', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2375
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2376
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2377
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2378
    cls.add_method('IsEqual', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2379
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2380
                   [param('ns3::Ipv6Prefix const &', 'other')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2381
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2382
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2383
    cls.add_method('IsMatch', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2384
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2385
                   [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2386
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2387
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2388
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2389
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2390
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2391
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2392
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2393
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2394
def register_Ns3Mac16Address_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2395
    cls.add_binary_comparison_operator('!=')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2396
    cls.add_binary_comparison_operator('<')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2397
    cls.add_output_stream_operator()
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2398
    cls.add_binary_comparison_operator('==')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2399
    ## mac16-address.h (module 'network'): ns3::Mac16Address::Mac16Address(ns3::Mac16Address const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2400
    cls.add_constructor([param('ns3::Mac16Address const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2401
    ## mac16-address.h (module 'network'): ns3::Mac16Address::Mac16Address() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2402
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2403
    ## mac16-address.h (module 'network'): ns3::Mac16Address::Mac16Address(char const * str) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2404
    cls.add_constructor([param('char const *', 'str')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2405
    ## mac16-address.h (module 'network'): static ns3::Mac16Address ns3::Mac16Address::Allocate() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2406
    cls.add_method('Allocate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2407
                   'ns3::Mac16Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2408
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2409
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2410
    ## mac16-address.h (module 'network'): static ns3::Mac16Address ns3::Mac16Address::ConvertFrom(ns3::Address const & address) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2411
    cls.add_method('ConvertFrom', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2412
                   'ns3::Mac16Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2413
                   [param('ns3::Address const &', 'address')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2414
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2415
    ## mac16-address.h (module 'network'): void ns3::Mac16Address::CopyFrom(uint8_t const * buffer) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2416
    cls.add_method('CopyFrom', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2417
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2418
                   [param('uint8_t const *', 'buffer')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2419
    ## mac16-address.h (module 'network'): void ns3::Mac16Address::CopyTo(uint8_t * buffer) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2420
    cls.add_method('CopyTo', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2421
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2422
                   [param('uint8_t *', 'buffer')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2423
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2424
    ## mac16-address.h (module 'network'): static bool ns3::Mac16Address::IsMatchingType(ns3::Address const & address) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2425
    cls.add_method('IsMatchingType', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2426
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2427
                   [param('ns3::Address const &', 'address')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2428
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2429
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2430
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2431
def register_Ns3Mac48Address_methods(root_module, cls):
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
  2432
    cls.add_binary_comparison_operator('!=')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2433
    cls.add_binary_comparison_operator('<')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2434
    cls.add_output_stream_operator()
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2435
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2436
    ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address(ns3::Mac48Address const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2437
    cls.add_constructor([param('ns3::Mac48Address const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2438
    ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2439
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2440
    ## mac48-address.h (module 'network'): ns3::Mac48Address::Mac48Address(char const * str) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2441
    cls.add_constructor([param('char const *', 'str')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2442
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::Allocate() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2443
    cls.add_method('Allocate', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2444
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2445
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2446
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2447
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::ConvertFrom(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2448
    cls.add_method('ConvertFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2449
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2450
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2451
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2452
    ## mac48-address.h (module 'network'): void ns3::Mac48Address::CopyFrom(uint8_t const * buffer) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2453
    cls.add_method('CopyFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2454
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2455
                   [param('uint8_t const *', 'buffer')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2456
    ## mac48-address.h (module 'network'): void ns3::Mac48Address::CopyTo(uint8_t * buffer) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2457
    cls.add_method('CopyTo', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2458
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2459
                   [param('uint8_t *', 'buffer')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2460
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2461
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetBroadcast() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2462
    cls.add_method('GetBroadcast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2463
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2464
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2465
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2466
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast(ns3::Ipv4Address address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2467
    cls.add_method('GetMulticast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2468
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2469
                   [param('ns3::Ipv4Address', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2470
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2471
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast(ns3::Ipv6Address address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2472
    cls.add_method('GetMulticast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2473
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2474
                   [param('ns3::Ipv6Address', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2475
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2476
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticast6Prefix() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2477
    cls.add_method('GetMulticast6Prefix', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2478
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2479
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2480
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2481
    ## mac48-address.h (module 'network'): static ns3::Mac48Address ns3::Mac48Address::GetMulticastPrefix() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2482
    cls.add_method('GetMulticastPrefix', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2483
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2484
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2485
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2486
    ## mac48-address.h (module 'network'): bool ns3::Mac48Address::IsBroadcast() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2487
    cls.add_method('IsBroadcast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2488
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2489
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2490
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2491
    ## mac48-address.h (module 'network'): bool ns3::Mac48Address::IsGroup() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2492
    cls.add_method('IsGroup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2493
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2494
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2495
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2496
    ## mac48-address.h (module 'network'): static bool ns3::Mac48Address::IsMatchingType(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2497
    cls.add_method('IsMatchingType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2498
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2499
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2500
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2501
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2502
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2503
def register_Ns3Mac64Address_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2504
    cls.add_binary_comparison_operator('!=')
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2505
    cls.add_binary_comparison_operator('<')
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2506
    cls.add_output_stream_operator()
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2507
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2508
    ## mac64-address.h (module 'network'): ns3::Mac64Address::Mac64Address(ns3::Mac64Address const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2509
    cls.add_constructor([param('ns3::Mac64Address const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2510
    ## mac64-address.h (module 'network'): ns3::Mac64Address::Mac64Address() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2511
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2512
    ## mac64-address.h (module 'network'): ns3::Mac64Address::Mac64Address(char const * str) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2513
    cls.add_constructor([param('char const *', 'str')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2514
    ## mac64-address.h (module 'network'): static ns3::Mac64Address ns3::Mac64Address::Allocate() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2515
    cls.add_method('Allocate', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2516
                   'ns3::Mac64Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2517
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2518
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2519
    ## mac64-address.h (module 'network'): static ns3::Mac64Address ns3::Mac64Address::ConvertFrom(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2520
    cls.add_method('ConvertFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2521
                   'ns3::Mac64Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2522
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2523
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2524
    ## mac64-address.h (module 'network'): void ns3::Mac64Address::CopyFrom(uint8_t const * buffer) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2525
    cls.add_method('CopyFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2526
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2527
                   [param('uint8_t const *', 'buffer')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2528
    ## mac64-address.h (module 'network'): void ns3::Mac64Address::CopyTo(uint8_t * buffer) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2529
    cls.add_method('CopyTo', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2530
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2531
                   [param('uint8_t *', 'buffer')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2532
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2533
    ## mac64-address.h (module 'network'): static bool ns3::Mac64Address::IsMatchingType(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2534
    cls.add_method('IsMatchingType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2535
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2536
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2537
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2538
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2539
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2540
def register_Ns3NetDeviceContainer_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2541
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2542
    cls.add_constructor([param('ns3::NetDeviceContainer const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2543
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2544
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2545
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::Ptr<ns3::NetDevice> dev) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2546
    cls.add_constructor([param('ns3::Ptr< ns3::NetDevice >', 'dev')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2547
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(std::string devName) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2548
    cls.add_constructor([param('std::string', 'devName')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2549
    ## net-device-container.h (module 'network'): ns3::NetDeviceContainer::NetDeviceContainer(ns3::NetDeviceContainer const & a, ns3::NetDeviceContainer const & b) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2550
    cls.add_constructor([param('ns3::NetDeviceContainer const &', 'a'), param('ns3::NetDeviceContainer const &', 'b')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2551
    ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::NetDeviceContainer other) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2552
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2553
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2554
                   [param('ns3::NetDeviceContainer', 'other')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2555
    ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(ns3::Ptr<ns3::NetDevice> device) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2556
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2557
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2558
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2559
    ## net-device-container.h (module 'network'): void ns3::NetDeviceContainer::Add(std::string deviceName) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2560
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2561
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2562
                   [param('std::string', 'deviceName')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2563
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2564
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2565
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2566
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2567
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2568
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2569
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2570
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::NetDevice > const, std::vector< ns3::Ptr< ns3::NetDevice > > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2571
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2572
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2573
    ## net-device-container.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::NetDeviceContainer::Get(uint32_t i) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2574
    cls.add_method('Get', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2575
                   'ns3::Ptr< ns3::NetDevice >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2576
                   [param('uint32_t', 'i')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2577
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2578
    ## net-device-container.h (module 'network'): uint32_t ns3::NetDeviceContainer::GetN() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2579
    cls.add_method('GetN', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2580
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2581
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2582
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2583
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2584
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2585
def register_Ns3NodeContainer_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2586
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2587
    cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2588
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2589
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2590
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2591
    cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2592
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2593
    cls.add_constructor([param('std::string', 'nodeName')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2594
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2595
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2596
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2597
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2598
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2599
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2600
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2601
    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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2602
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2603
    cls.add_method('Add', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2604
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2605
                   [param('ns3::NodeContainer', 'other')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2606
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2607
    cls.add_method('Add', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2608
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2609
                   [param('ns3::Ptr< ns3::Node >', 'node')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2610
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2611
    cls.add_method('Add', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2612
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2613
                   [param('std::string', 'nodeName')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2614
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2615
    cls.add_method('Begin', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2616
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2617
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2618
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2619
    ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2620
    cls.add_method('Create', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2621
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2622
                   [param('uint32_t', 'n')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2623
    ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2624
    cls.add_method('Create', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2625
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2626
                   [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2627
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2628
    cls.add_method('End', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2629
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2630
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2631
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2632
    ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2633
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2634
                   'ns3::Ptr< ns3::Node >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2635
                   [param('uint32_t', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2636
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2637
    ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2638
    cls.add_method('GetGlobal', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2639
                   'ns3::NodeContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2640
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2641
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2642
    ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2643
    cls.add_method('GetN', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2644
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2645
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2646
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2647
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2648
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2649
def register_Ns3NodeList_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2650
    ## node-list.h (module 'network'): ns3::NodeList::NodeList() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2651
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2652
    ## node-list.h (module 'network'): ns3::NodeList::NodeList(ns3::NodeList const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2653
    cls.add_constructor([param('ns3::NodeList const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2654
    ## node-list.h (module 'network'): static uint32_t ns3::NodeList::Add(ns3::Ptr<ns3::Node> node) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2655
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2656
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2657
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2658
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2659
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2660
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2661
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2662
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2663
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2664
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2665
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2666
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2667
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2668
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2669
    ## node-list.h (module 'network'): static uint32_t ns3::NodeList::GetNNodes() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2670
    cls.add_method('GetNNodes', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2671
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2672
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2673
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2674
    ## node-list.h (module 'network'): static ns3::Ptr<ns3::Node> ns3::NodeList::GetNode(uint32_t n) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2675
    cls.add_method('GetNode', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2676
                   'ns3::Ptr< ns3::Node >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2677
                   [param('uint32_t', 'n')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2678
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2679
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2680
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  2681
def register_Ns3NonCopyable_methods(root_module, cls):
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  2682
    ## non-copyable.h (module 'core'): ns3::NonCopyable::NonCopyable() [constructor]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  2683
    cls.add_constructor([], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  2684
                        visibility='protected')
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  2685
    return
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  2686
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2687
def register_Ns3ObjectBase_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2688
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2689
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2690
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2691
    cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2692
    ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2693
    cls.add_method('GetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2694
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2695
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2696
                   is_const=True)
11114
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  2697
    ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & value) const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2698
    cls.add_method('GetAttributeFailSafe', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2699
                   'bool', 
11114
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  2700
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2701
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2702
    ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2703
    cls.add_method('GetInstanceTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2704
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2705
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2706
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2707
    ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2708
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2709
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2710
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2711
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2712
    ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2713
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2714
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2715
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2716
    ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2717
    cls.add_method('SetAttributeFailSafe', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2718
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2719
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2720
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2721
    cls.add_method('TraceConnect', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2722
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2723
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2724
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2725
    cls.add_method('TraceConnectWithoutContext', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2726
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2727
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2728
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2729
    cls.add_method('TraceDisconnect', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2730
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2731
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2732
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2733
    cls.add_method('TraceDisconnectWithoutContext', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2734
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2735
                   [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
  2736
    ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2737
    cls.add_method('ConstructSelf', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2738
                   'void', 
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2739
                   [param('ns3::AttributeConstructionList const &', 'attributes')], 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2740
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2741
    ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2742
    cls.add_method('NotifyConstructionCompleted', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2743
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2744
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2745
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2746
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2747
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2748
def register_Ns3ObjectDeleter_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2749
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2750
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2751
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2752
    cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2753
    ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2754
    cls.add_method('Delete', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2755
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2756
                   [param('ns3::Object *', 'object')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2757
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2758
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2759
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2760
def register_Ns3ObjectFactory_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2761
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2762
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2763
    cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2764
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2765
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2766
    ## 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
  2767
    cls.add_constructor([param('std::string', 'typeId')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2768
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2769
    cls.add_method('Create', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2770
                   'ns3::Ptr< ns3::Object >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2771
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2772
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2773
    ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2774
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2775
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2776
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2777
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2778
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2779
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2780
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2781
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2782
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2783
    cls.add_method('SetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2784
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2785
                   [param('ns3::TypeId', 'tid')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2786
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2787
    cls.add_method('SetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2788
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2789
                   [param('char const *', 'tid')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2790
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2791
    cls.add_method('SetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2792
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2793
                   [param('std::string', 'tid')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2794
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2795
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2796
def register_Ns3OnOffHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2797
    ## on-off-helper.h (module 'applications'): ns3::OnOffHelper::OnOffHelper(ns3::OnOffHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2798
    cls.add_constructor([param('ns3::OnOffHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2799
    ## on-off-helper.h (module 'applications'): ns3::OnOffHelper::OnOffHelper(std::string protocol, ns3::Address address) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2800
    cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  2801
    ## on-off-helper.h (module 'applications'): int64_t ns3::OnOffHelper::AssignStreams(ns3::NodeContainer c, int64_t stream) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  2802
    cls.add_method('AssignStreams', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  2803
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  2804
                   [param('ns3::NodeContainer', 'c'), param('int64_t', 'stream')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2805
    ## on-off-helper.h (module 'applications'): ns3::ApplicationContainer ns3::OnOffHelper::Install(ns3::NodeContainer c) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2806
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2807
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2808
                   [param('ns3::NodeContainer', 'c')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2809
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2810
    ## on-off-helper.h (module 'applications'): ns3::ApplicationContainer ns3::OnOffHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2811
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2812
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2813
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2814
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2815
    ## on-off-helper.h (module 'applications'): ns3::ApplicationContainer ns3::OnOffHelper::Install(std::string nodeName) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2816
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2817
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2818
                   [param('std::string', 'nodeName')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2819
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2820
    ## on-off-helper.h (module 'applications'): void ns3::OnOffHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2821
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2822
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2823
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
9000
3ec20a64fd08 Add a constant rate setting function to the on-off helper
Mitch Watrous
parents: 8986
diff changeset
  2824
    ## on-off-helper.h (module 'applications'): void ns3::OnOffHelper::SetConstantRate(ns3::DataRate dataRate, uint32_t packetSize=512) [member function]
3ec20a64fd08 Add a constant rate setting function to the on-off helper
Mitch Watrous
parents: 8986
diff changeset
  2825
    cls.add_method('SetConstantRate', 
3ec20a64fd08 Add a constant rate setting function to the on-off helper
Mitch Watrous
parents: 8986
diff changeset
  2826
                   'void', 
3ec20a64fd08 Add a constant rate setting function to the on-off helper
Mitch Watrous
parents: 8986
diff changeset
  2827
                   [param('ns3::DataRate', 'dataRate'), param('uint32_t', 'packetSize', default_value='512')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2828
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2829
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2830
def register_Ns3PacketLossCounter_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2831
    ## packet-loss-counter.h (module 'applications'): ns3::PacketLossCounter::PacketLossCounter(ns3::PacketLossCounter const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2832
    cls.add_constructor([param('ns3::PacketLossCounter const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2833
    ## packet-loss-counter.h (module 'applications'): ns3::PacketLossCounter::PacketLossCounter(uint8_t bitmapSize) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2834
    cls.add_constructor([param('uint8_t', 'bitmapSize')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2835
    ## packet-loss-counter.h (module 'applications'): uint16_t ns3::PacketLossCounter::GetBitMapSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2836
    cls.add_method('GetBitMapSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2837
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2838
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2839
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2840
    ## packet-loss-counter.h (module 'applications'): uint32_t ns3::PacketLossCounter::GetLost() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2841
    cls.add_method('GetLost', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2842
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2843
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2844
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2845
    ## packet-loss-counter.h (module 'applications'): void ns3::PacketLossCounter::NotifyReceived(uint32_t seq) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2846
    cls.add_method('NotifyReceived', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2847
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2848
                   [param('uint32_t', 'seq')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2849
    ## packet-loss-counter.h (module 'applications'): void ns3::PacketLossCounter::SetBitMapSize(uint16_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2850
    cls.add_method('SetBitMapSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2851
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2852
                   [param('uint16_t', 'size')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2853
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2854
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2855
def register_Ns3PacketMetadata_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2856
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2857
    cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2858
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2859
    cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2860
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2861
    cls.add_method('AddAtEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2862
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2863
                   [param('ns3::PacketMetadata const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2864
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2865
    cls.add_method('AddHeader', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2866
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2867
                   [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2868
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2869
    cls.add_method('AddPaddingAtEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2870
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2871
                   [param('uint32_t', 'end')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2872
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2873
    cls.add_method('AddTrailer', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2874
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2875
                   [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2876
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2877
    cls.add_method('BeginItem', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2878
                   'ns3::PacketMetadata::ItemIterator', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2879
                   [param('ns3::Buffer', 'buffer')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2880
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2881
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2882
    cls.add_method('CreateFragment', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2883
                   'ns3::PacketMetadata', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2884
                   [param('uint32_t', 'start'), param('uint32_t', 'end')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2885
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2886
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2887
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2888
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2889
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2890
    ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2891
    cls.add_method('Enable', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2892
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2893
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2894
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2895
    ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2896
    cls.add_method('EnableChecking', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2897
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2898
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2899
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2900
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2901
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2902
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2903
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2904
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2905
    ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2906
    cls.add_method('GetUid', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2907
                   'uint64_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2908
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2909
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2910
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2911
    cls.add_method('RemoveAtEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2912
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2913
                   [param('uint32_t', 'end')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2914
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2915
    cls.add_method('RemoveAtStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2916
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2917
                   [param('uint32_t', 'start')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2918
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2919
    cls.add_method('RemoveHeader', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2920
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2921
                   [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2922
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2923
    cls.add_method('RemoveTrailer', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2924
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2925
                   [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2926
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2927
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2928
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2929
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2930
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2931
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2932
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2933
def register_Ns3PacketMetadataItem_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2934
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2935
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2936
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2937
    cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2938
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2939
    cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2940
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2941
    cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2942
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2943
    cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2944
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2945
    cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2946
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2947
    cls.add_instance_attribute('isFragment', 'bool', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2948
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2949
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2950
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2951
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2952
def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2953
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2954
    cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2955
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2956
    cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2957
    ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2958
    cls.add_method('HasNext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2959
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2960
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2961
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2962
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2963
    cls.add_method('Next', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2964
                   'ns3::PacketMetadata::Item', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2965
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2966
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2967
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2968
def register_Ns3PacketSinkHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2969
    ## packet-sink-helper.h (module 'applications'): ns3::PacketSinkHelper::PacketSinkHelper(ns3::PacketSinkHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2970
    cls.add_constructor([param('ns3::PacketSinkHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2971
    ## packet-sink-helper.h (module 'applications'): ns3::PacketSinkHelper::PacketSinkHelper(std::string protocol, ns3::Address address) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2972
    cls.add_constructor([param('std::string', 'protocol'), param('ns3::Address', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2973
    ## packet-sink-helper.h (module 'applications'): ns3::ApplicationContainer ns3::PacketSinkHelper::Install(ns3::NodeContainer c) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2974
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2975
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2976
                   [param('ns3::NodeContainer', 'c')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2977
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2978
    ## packet-sink-helper.h (module 'applications'): ns3::ApplicationContainer ns3::PacketSinkHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2979
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2980
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2981
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2982
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2983
    ## packet-sink-helper.h (module 'applications'): ns3::ApplicationContainer ns3::PacketSinkHelper::Install(std::string nodeName) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2984
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2985
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2986
                   [param('std::string', 'nodeName')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2987
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2988
    ## packet-sink-helper.h (module 'applications'): void ns3::PacketSinkHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2989
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2990
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2991
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2992
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2993
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2994
def register_Ns3PacketSocketAddress_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2995
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress::PacketSocketAddress(ns3::PacketSocketAddress const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2996
    cls.add_constructor([param('ns3::PacketSocketAddress const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2997
    ## packet-socket-address.h (module 'network'): ns3::PacketSocketAddress::PacketSocketAddress() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2998
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2999
    ## packet-socket-address.h (module 'network'): static ns3::PacketSocketAddress ns3::PacketSocketAddress::ConvertFrom(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3000
    cls.add_method('ConvertFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3001
                   'ns3::PacketSocketAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3002
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3003
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3004
    ## packet-socket-address.h (module 'network'): ns3::Address ns3::PacketSocketAddress::GetPhysicalAddress() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3005
    cls.add_method('GetPhysicalAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3006
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3007
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3008
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3009
    ## packet-socket-address.h (module 'network'): uint16_t ns3::PacketSocketAddress::GetProtocol() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3010
    cls.add_method('GetProtocol', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3011
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3012
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3013
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3014
    ## packet-socket-address.h (module 'network'): uint32_t ns3::PacketSocketAddress::GetSingleDevice() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3015
    cls.add_method('GetSingleDevice', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3016
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3017
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3018
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3019
    ## packet-socket-address.h (module 'network'): static bool ns3::PacketSocketAddress::IsMatchingType(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3020
    cls.add_method('IsMatchingType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3021
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3022
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3023
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3024
    ## packet-socket-address.h (module 'network'): bool ns3::PacketSocketAddress::IsSingleDevice() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3025
    cls.add_method('IsSingleDevice', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3026
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3027
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3028
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3029
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetAllDevices() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3030
    cls.add_method('SetAllDevices', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3031
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3032
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3033
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetPhysicalAddress(ns3::Address const address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3034
    cls.add_method('SetPhysicalAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3035
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3036
                   [param('ns3::Address const', 'address')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3037
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetProtocol(uint16_t protocol) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3038
    cls.add_method('SetProtocol', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3039
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3040
                   [param('uint16_t', 'protocol')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3041
    ## packet-socket-address.h (module 'network'): void ns3::PacketSocketAddress::SetSingleDevice(uint32_t device) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3042
    cls.add_method('SetSingleDevice', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3043
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3044
                   [param('uint32_t', 'device')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3045
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3046
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3047
def register_Ns3PacketSocketHelper_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3048
    ## packet-socket-helper.h (module 'network'): ns3::PacketSocketHelper::PacketSocketHelper() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3049
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3050
    ## packet-socket-helper.h (module 'network'): ns3::PacketSocketHelper::PacketSocketHelper(ns3::PacketSocketHelper const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3051
    cls.add_constructor([param('ns3::PacketSocketHelper const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3052
    ## packet-socket-helper.h (module 'network'): void ns3::PacketSocketHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3053
    cls.add_method('Install', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3054
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3055
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3056
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3057
    ## packet-socket-helper.h (module 'network'): void ns3::PacketSocketHelper::Install(std::string nodeName) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3058
    cls.add_method('Install', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3059
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3060
                   [param('std::string', 'nodeName')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3061
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3062
    ## packet-socket-helper.h (module 'network'): void ns3::PacketSocketHelper::Install(ns3::NodeContainer c) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3063
    cls.add_method('Install', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3064
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3065
                   [param('ns3::NodeContainer', 'c')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3066
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3067
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3068
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3069
def register_Ns3PacketTagIterator_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3070
    ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3071
    cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3072
    ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3073
    cls.add_method('HasNext', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3074
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3075
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3076
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3077
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3078
    cls.add_method('Next', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3079
                   'ns3::PacketTagIterator::Item', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3080
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3081
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3082
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3083
def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3084
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3085
    cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3086
    ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3087
    cls.add_method('GetTag', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3088
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3089
                   [param('ns3::Tag &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3090
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3091
    ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3092
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3093
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3094
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3095
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3096
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3097
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3098
def register_Ns3PacketTagList_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3099
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3100
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3101
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3102
    cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3103
    ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3104
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3105
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3106
                   [param('ns3::Tag const &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3107
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3108
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3109
    cls.add_method('Head', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3110
                   'ns3::PacketTagList::TagData const *', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3111
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3112
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3113
    ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3114
    cls.add_method('Peek', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3115
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3116
                   [param('ns3::Tag &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3117
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3118
    ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3119
    cls.add_method('Remove', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3120
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3121
                   [param('ns3::Tag &', 'tag')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3122
    ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3123
    cls.add_method('RemoveAll', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3124
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3125
                   [])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  3126
    ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Replace(ns3::Tag & tag) [member function]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  3127
    cls.add_method('Replace', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  3128
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  3129
                   [param('ns3::Tag &', 'tag')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3130
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3131
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3132
def register_Ns3PacketTagListTagData_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3133
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3134
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3135
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3136
    cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3137
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3138
    cls.add_instance_attribute('count', 'uint32_t', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3139
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  3140
    cls.add_instance_attribute('data', 'uint8_t [ 21 ]', is_const=False)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3141
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3142
    cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3143
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3144
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3145
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3146
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3147
def register_Ns3PbbAddressTlvBlock_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3148
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3149
    cls.add_binary_comparison_operator('!=')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3150
    ## packetbb.h (module 'network'): ns3::PbbAddressTlvBlock::PbbAddressTlvBlock(ns3::PbbAddressTlvBlock const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3151
    cls.add_constructor([param('ns3::PbbAddressTlvBlock const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3152
    ## packetbb.h (module 'network'): ns3::PbbAddressTlvBlock::PbbAddressTlvBlock() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3153
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3154
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressTlvBlock::Back() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3155
    cls.add_method('Back', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3156
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3157
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3158
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3159
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Begin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3160
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3161
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3162
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3163
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Begin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3164
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3165
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3166
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3167
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3168
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Clear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3169
    cls.add_method('Clear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3170
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3171
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3172
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Deserialize(ns3::Buffer::Iterator & start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3173
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3174
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3175
                   [param('ns3::Buffer::Iterator &', 'start')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3176
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlvBlock::Empty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3177
    cls.add_method('Empty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3178
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3179
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3180
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3181
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::End() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3182
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3183
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3184
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3185
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::End() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3186
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3187
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3188
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3189
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3190
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressTlvBlock::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3191
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3192
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3193
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3194
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3195
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3196
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3197
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3198
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressTlvBlock::Front() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3199
    cls.add_method('Front', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3200
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3201
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3202
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3203
    ## packetbb.h (module 'network'): uint32_t ns3::PbbAddressTlvBlock::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3204
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3205
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3206
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3207
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3208
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3209
    cls.add_method('Insert', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3210
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3211
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position'), param('ns3::Ptr< ns3::PbbAddressTlv > const', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3212
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3213
    cls.add_method('PopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3214
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3215
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3216
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3217
    cls.add_method('PopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3218
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3219
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3220
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3221
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3222
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3223
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3224
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3225
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Print(std::ostream & os, int level) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3226
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3227
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3228
                   [param('std::ostream &', 'os'), param('int', 'level')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3229
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3230
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PushBack(ns3::Ptr<ns3::PbbAddressTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3231
    cls.add_method('PushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3232
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3233
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3234
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::PushFront(ns3::Ptr<ns3::PbbAddressTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3235
    cls.add_method('PushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3236
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3237
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3238
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlvBlock::Serialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3239
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3240
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3241
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3242
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3243
    ## packetbb.h (module 'network'): int ns3::PbbAddressTlvBlock::Size() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3244
    cls.add_method('Size', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3245
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3246
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3247
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3248
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3249
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3250
def register_Ns3PbbTlvBlock_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3251
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3252
    cls.add_binary_comparison_operator('!=')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3253
    ## packetbb.h (module 'network'): ns3::PbbTlvBlock::PbbTlvBlock(ns3::PbbTlvBlock const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3254
    cls.add_constructor([param('ns3::PbbTlvBlock const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3255
    ## packetbb.h (module 'network'): ns3::PbbTlvBlock::PbbTlvBlock() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3256
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3257
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbTlvBlock::Back() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3258
    cls.add_method('Back', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3259
                   'ns3::Ptr< ns3::PbbTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3260
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3261
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3262
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Begin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3263
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3264
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3265
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3266
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Begin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3267
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3268
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3269
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3270
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3271
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Clear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3272
    cls.add_method('Clear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3273
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3274
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3275
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Deserialize(ns3::Buffer::Iterator & start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3276
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3277
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3278
                   [param('ns3::Buffer::Iterator &', 'start')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3279
    ## packetbb.h (module 'network'): bool ns3::PbbTlvBlock::Empty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3280
    cls.add_method('Empty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3281
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3282
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3283
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3284
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::End() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3285
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3286
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3287
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3288
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::End() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3289
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3290
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3291
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3292
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3293
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbTlvBlock::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3294
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3295
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3296
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3297
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3298
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3299
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3300
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3301
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbTlvBlock::Front() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3302
    cls.add_method('Front', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3303
                   'ns3::Ptr< ns3::PbbTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3304
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3305
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3306
    ## packetbb.h (module 'network'): uint32_t ns3::PbbTlvBlock::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3307
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3308
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3309
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3310
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3311
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3312
    cls.add_method('Insert', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3313
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3314
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position'), param('ns3::Ptr< ns3::PbbTlv > const', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3315
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3316
    cls.add_method('PopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3317
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3318
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3319
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3320
    cls.add_method('PopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3321
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3322
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3323
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3324
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3325
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3326
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3327
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3328
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Print(std::ostream & os, int level) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3329
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3330
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3331
                   [param('std::ostream &', 'os'), param('int', 'level')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3332
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3333
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PushBack(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3334
    cls.add_method('PushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3335
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3336
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3337
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::PushFront(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3338
    cls.add_method('PushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3339
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3340
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3341
    ## packetbb.h (module 'network'): void ns3::PbbTlvBlock::Serialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3342
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3343
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3344
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3345
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3346
    ## packetbb.h (module 'network'): int ns3::PbbTlvBlock::Size() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3347
    cls.add_method('Size', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3348
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3349
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3350
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3351
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3352
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3353
def register_Ns3PcapFile_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3354
    ## pcap-file.h (module 'network'): ns3::PcapFile::PcapFile() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3355
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3356
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Clear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3357
    cls.add_method('Clear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3358
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3359
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3360
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Close() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3361
    cls.add_method('Close', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3362
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3363
                   [])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  3364
    ## 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 & packets, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3365
    cls.add_method('Diff', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3366
                   'bool', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  3367
                   [param('std::string const &', 'f1'), param('std::string const &', 'f2'), param('uint32_t &', 'sec'), param('uint32_t &', 'usec'), param('uint32_t &', 'packets'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT')], 
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3368
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3369
    ## pcap-file.h (module 'network'): bool ns3::PcapFile::Eof() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3370
    cls.add_method('Eof', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3371
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3372
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3373
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3374
    ## pcap-file.h (module 'network'): bool ns3::PcapFile::Fail() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3375
    cls.add_method('Fail', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3376
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3377
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3378
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3379
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetDataLinkType() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3380
    cls.add_method('GetDataLinkType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3381
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3382
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3383
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetMagic() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3384
    cls.add_method('GetMagic', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3385
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3386
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3387
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSigFigs() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3388
    cls.add_method('GetSigFigs', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3389
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3390
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3391
    ## pcap-file.h (module 'network'): uint32_t ns3::PcapFile::GetSnapLen() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3392
    cls.add_method('GetSnapLen', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3393
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3394
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3395
    ## pcap-file.h (module 'network'): bool ns3::PcapFile::GetSwapMode() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3396
    cls.add_method('GetSwapMode', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3397
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3398
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3399
    ## pcap-file.h (module 'network'): int32_t ns3::PcapFile::GetTimeZoneOffset() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3400
    cls.add_method('GetTimeZoneOffset', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3401
                   'int32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3402
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3403
    ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMajor() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3404
    cls.add_method('GetVersionMajor', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3405
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3406
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3407
    ## pcap-file.h (module 'network'): uint16_t ns3::PcapFile::GetVersionMinor() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3408
    cls.add_method('GetVersionMinor', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3409
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3410
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3411
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3412
    cls.add_method('Init', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3413
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3414
                   [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')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3415
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Open(std::string const & filename, std::_Ios_Openmode mode) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3416
    cls.add_method('Open', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3417
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3418
                   [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3419
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3420
    cls.add_method('Read', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3421
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3422
                   [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')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3423
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3424
    cls.add_method('Write', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3425
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3426
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('uint8_t const * const', 'data'), param('uint32_t', 'totalLen')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3427
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3428
    cls.add_method('Write', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3429
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3430
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Ptr< ns3::Packet const >', 'p')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  3431
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Header const & header, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3432
    cls.add_method('Write', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3433
                   'void', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  3434
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Header const &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3435
    ## pcap-file.h (module 'network'): ns3::PcapFile::SNAPLEN_DEFAULT [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3436
    cls.add_static_attribute('SNAPLEN_DEFAULT', 'uint32_t const', is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3437
    ## pcap-file.h (module 'network'): ns3::PcapFile::ZONE_DEFAULT [variable]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3438
    cls.add_static_attribute('ZONE_DEFAULT', 'int32_t const', is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3439
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3440
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3441
def register_Ns3PcapHelper_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3442
    ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper(ns3::PcapHelper const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3443
    cls.add_constructor([param('ns3::PcapHelper const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3444
    ## trace-helper.h (module 'network'): ns3::PcapHelper::PcapHelper() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3445
    cls.add_constructor([])
10990
414d94e669c5 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10956
diff changeset
  3446
    ## 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=std::numeric_limits<unsigned int>::max(), int32_t tzCorrection=0) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3447
    cls.add_method('CreateFile', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3448
                   'ns3::Ptr< ns3::PcapFileWrapper >', 
10990
414d94e669c5 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10956
diff changeset
  3449
                   [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode'), param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='std::numeric_limits<unsigned int>::max()'), param('int32_t', 'tzCorrection', default_value='0')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3450
    ## trace-helper.h (module 'network'): std::string ns3::PcapHelper::GetFilenameFromDevice(std::string prefix, ns3::Ptr<ns3::NetDevice> device, bool useObjectNames=true) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3451
    cls.add_method('GetFilenameFromDevice', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3452
                   'std::string', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3453
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'device'), param('bool', 'useObjectNames', default_value='true')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3454
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3455
    cls.add_method('GetFilenameFromInterfacePair', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3456
                   'std::string', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3457
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::Object >', 'object'), param('uint32_t', 'interface'), param('bool', 'useObjectNames', default_value='true')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3458
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3459
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3460
def register_Ns3PcapHelperForDevice_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3461
    ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice(ns3::PcapHelperForDevice const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3462
    cls.add_constructor([param('ns3::PcapHelperForDevice const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3463
    ## trace-helper.h (module 'network'): ns3::PcapHelperForDevice::PcapHelperForDevice() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3464
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3465
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3466
    cls.add_method('EnablePcap', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3467
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3468
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3469
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, std::string ndName, bool promiscuous=false, bool explicitFilename=false) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3470
    cls.add_method('EnablePcap', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3471
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3472
                   [param('std::string', 'prefix'), param('std::string', 'ndName'), param('bool', 'promiscuous', default_value='false'), param('bool', 'explicitFilename', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3473
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NetDeviceContainer d, bool promiscuous=false) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3474
    cls.add_method('EnablePcap', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3475
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3476
                   [param('std::string', 'prefix'), param('ns3::NetDeviceContainer', 'd'), param('bool', 'promiscuous', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3477
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, ns3::NodeContainer n, bool promiscuous=false) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3478
    cls.add_method('EnablePcap', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3479
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3480
                   [param('std::string', 'prefix'), param('ns3::NodeContainer', 'n'), param('bool', 'promiscuous', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3481
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcap(std::string prefix, uint32_t nodeid, uint32_t deviceid, bool promiscuous=false) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3482
    cls.add_method('EnablePcap', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3483
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3484
                   [param('std::string', 'prefix'), param('uint32_t', 'nodeid'), param('uint32_t', 'deviceid'), param('bool', 'promiscuous', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3485
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapAll(std::string prefix, bool promiscuous=false) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3486
    cls.add_method('EnablePcapAll', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3487
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3488
                   [param('std::string', 'prefix'), param('bool', 'promiscuous', default_value='false')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3489
    ## trace-helper.h (module 'network'): void ns3::PcapHelperForDevice::EnablePcapInternal(std::string prefix, ns3::Ptr<ns3::NetDevice> nd, bool promiscuous, bool explicitFilename) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3490
    cls.add_method('EnablePcapInternal', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3491
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3492
                   [param('std::string', 'prefix'), param('ns3::Ptr< ns3::NetDevice >', 'nd'), param('bool', 'promiscuous'), param('bool', 'explicitFilename')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3493
                   is_pure_virtual=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3494
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3495
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3496
def register_Ns3Ping6Helper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3497
    ## ping6-helper.h (module 'applications'): ns3::Ping6Helper::Ping6Helper(ns3::Ping6Helper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3498
    cls.add_constructor([param('ns3::Ping6Helper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3499
    ## ping6-helper.h (module 'applications'): ns3::Ping6Helper::Ping6Helper() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3500
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3501
    ## ping6-helper.h (module 'applications'): ns3::ApplicationContainer ns3::Ping6Helper::Install(ns3::NodeContainer c) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3502
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3503
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3504
                   [param('ns3::NodeContainer', 'c')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3505
    ## ping6-helper.h (module 'applications'): void ns3::Ping6Helper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3506
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3507
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3508
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3509
    ## ping6-helper.h (module 'applications'): void ns3::Ping6Helper::SetIfIndex(uint32_t ifIndex) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3510
    cls.add_method('SetIfIndex', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3511
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3512
                   [param('uint32_t', 'ifIndex')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3513
    ## ping6-helper.h (module 'applications'): void ns3::Ping6Helper::SetLocal(ns3::Ipv6Address ip) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3514
    cls.add_method('SetLocal', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3515
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3516
                   [param('ns3::Ipv6Address', 'ip')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3517
    ## ping6-helper.h (module 'applications'): void ns3::Ping6Helper::SetRemote(ns3::Ipv6Address ip) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3518
    cls.add_method('SetRemote', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3519
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3520
                   [param('ns3::Ipv6Address', 'ip')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3521
    ## ping6-helper.h (module 'applications'): void ns3::Ping6Helper::SetRoutersAddress(std::vector<ns3::Ipv6Address, std::allocator<ns3::Ipv6Address> > routers) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3522
    cls.add_method('SetRoutersAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3523
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3524
                   [param('std::vector< ns3::Ipv6Address >', 'routers')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3525
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3526
10132
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3527
def register_Ns3RadvdHelper_methods(root_module, cls):
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3528
    ## radvd-helper.h (module 'applications'): ns3::RadvdHelper::RadvdHelper(ns3::RadvdHelper const & arg0) [copy constructor]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3529
    cls.add_constructor([param('ns3::RadvdHelper const &', 'arg0')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3530
    ## radvd-helper.h (module 'applications'): ns3::RadvdHelper::RadvdHelper() [constructor]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3531
    cls.add_constructor([])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3532
    ## radvd-helper.h (module 'applications'): void ns3::RadvdHelper::AddAnnouncedPrefix(uint32_t interface, ns3::Ipv6Address prefix, uint32_t prefixLength) [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3533
    cls.add_method('AddAnnouncedPrefix', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3534
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3535
                   [param('uint32_t', 'interface'), param('ns3::Ipv6Address', 'prefix'), param('uint32_t', 'prefixLength')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3536
    ## radvd-helper.h (module 'applications'): void ns3::RadvdHelper::ClearPrefixes() [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3537
    cls.add_method('ClearPrefixes', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3538
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3539
                   [])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3540
    ## radvd-helper.h (module 'applications'): void ns3::RadvdHelper::DisableDefaultRouterForInterface(uint32_t interface) [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3541
    cls.add_method('DisableDefaultRouterForInterface', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3542
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3543
                   [param('uint32_t', 'interface')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3544
    ## radvd-helper.h (module 'applications'): void ns3::RadvdHelper::EnableDefaultRouterForInterface(uint32_t interface) [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3545
    cls.add_method('EnableDefaultRouterForInterface', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3546
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3547
                   [param('uint32_t', 'interface')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3548
    ## radvd-helper.h (module 'applications'): ns3::Ptr<ns3::RadvdInterface> ns3::RadvdHelper::GetRadvdInterface(uint32_t interface) [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3549
    cls.add_method('GetRadvdInterface', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3550
                   'ns3::Ptr< ns3::RadvdInterface >', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3551
                   [param('uint32_t', 'interface')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3552
    ## radvd-helper.h (module 'applications'): ns3::ApplicationContainer ns3::RadvdHelper::Install(ns3::Ptr<ns3::Node> node) [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3553
    cls.add_method('Install', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3554
                   'ns3::ApplicationContainer', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3555
                   [param('ns3::Ptr< ns3::Node >', 'node')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3556
    ## radvd-helper.h (module 'applications'): void ns3::RadvdHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3557
    cls.add_method('SetAttribute', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3558
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3559
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3560
    return
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3561
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3562
def register_Ns3SimpleNetDeviceHelper_methods(root_module, cls):
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3563
    ## simple-net-device-helper.h (module 'network'): ns3::SimpleNetDeviceHelper::SimpleNetDeviceHelper(ns3::SimpleNetDeviceHelper const & arg0) [copy constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3564
    cls.add_constructor([param('ns3::SimpleNetDeviceHelper const &', 'arg0')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3565
    ## simple-net-device-helper.h (module 'network'): ns3::SimpleNetDeviceHelper::SimpleNetDeviceHelper() [constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3566
    cls.add_constructor([])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3567
    ## simple-net-device-helper.h (module 'network'): ns3::NetDeviceContainer ns3::SimpleNetDeviceHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3568
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3569
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3570
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3571
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3572
    ## simple-net-device-helper.h (module 'network'): ns3::NetDeviceContainer ns3::SimpleNetDeviceHelper::Install(ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::SimpleChannel> channel) const [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3573
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3574
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3575
                   [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::SimpleChannel >', 'channel')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3576
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3577
    ## simple-net-device-helper.h (module 'network'): ns3::NetDeviceContainer ns3::SimpleNetDeviceHelper::Install(ns3::NodeContainer const & c) const [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3578
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3579
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3580
                   [param('ns3::NodeContainer const &', 'c')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3581
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3582
    ## simple-net-device-helper.h (module 'network'): ns3::NetDeviceContainer ns3::SimpleNetDeviceHelper::Install(ns3::NodeContainer const & c, ns3::Ptr<ns3::SimpleChannel> channel) const [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3583
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3584
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3585
                   [param('ns3::NodeContainer const &', 'c'), param('ns3::Ptr< ns3::SimpleChannel >', 'channel')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3586
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3587
    ## simple-net-device-helper.h (module 'network'): void ns3::SimpleNetDeviceHelper::SetChannel(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3588
    cls.add_method('SetChannel', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3589
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3590
                   [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3591
    ## simple-net-device-helper.h (module 'network'): void ns3::SimpleNetDeviceHelper::SetChannelAttribute(std::string n1, ns3::AttributeValue const & v1) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3592
    cls.add_method('SetChannelAttribute', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3593
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3594
                   [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3595
    ## simple-net-device-helper.h (module 'network'): void ns3::SimpleNetDeviceHelper::SetDeviceAttribute(std::string n1, ns3::AttributeValue const & v1) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3596
    cls.add_method('SetDeviceAttribute', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3597
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3598
                   [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3599
    ## simple-net-device-helper.h (module 'network'): void ns3::SimpleNetDeviceHelper::SetNetDevicePointToPointMode(bool pointToPointMode) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3600
    cls.add_method('SetNetDevicePointToPointMode', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3601
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3602
                   [param('bool', 'pointToPointMode')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3603
    ## simple-net-device-helper.h (module 'network'): void ns3::SimpleNetDeviceHelper::SetQueue(std::string type, std::string n1="", ns3::AttributeValue const & v1=ns3::EmptyAttributeValue(), std::string n2="", ns3::AttributeValue const & v2=ns3::EmptyAttributeValue(), std::string n3="", ns3::AttributeValue const & v3=ns3::EmptyAttributeValue(), std::string n4="", ns3::AttributeValue const & v4=ns3::EmptyAttributeValue()) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3604
    cls.add_method('SetQueue', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3605
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3606
                   [param('std::string', 'type'), param('std::string', 'n1', default_value='""'), param('ns3::AttributeValue const &', 'v1', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n2', default_value='""'), param('ns3::AttributeValue const &', 'v2', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n3', default_value='""'), param('ns3::AttributeValue const &', 'v3', default_value='ns3::EmptyAttributeValue()'), param('std::string', 'n4', default_value='""'), param('ns3::AttributeValue const &', 'v4', default_value='ns3::EmptyAttributeValue()')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3607
    return
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3608
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3609
def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3610
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3611
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3612
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3613
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3614
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3615
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3616
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3617
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3618
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3619
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3620
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3621
def register_Ns3Simulator_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3622
    ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3623
    cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3624
    ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3625
    cls.add_method('Cancel', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3626
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3627
                   [param('ns3::EventId const &', 'id')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3628
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3629
    ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3630
    cls.add_method('Destroy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3631
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3632
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3633
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3634
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3635
    cls.add_method('GetContext', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3636
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3637
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3638
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3639
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3640
    cls.add_method('GetDelayLeft', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3641
                   'ns3::Time', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3642
                   [param('ns3::EventId const &', 'id')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3643
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3644
    ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3645
    cls.add_method('GetImplementation', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3646
                   'ns3::Ptr< ns3::SimulatorImpl >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3647
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3648
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3649
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3650
    cls.add_method('GetMaximumSimulationTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3651
                   'ns3::Time', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3652
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3653
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3654
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3655
    cls.add_method('GetSystemId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3656
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3657
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3658
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3659
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3660
    cls.add_method('IsExpired', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3661
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3662
                   [param('ns3::EventId const &', 'id')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3663
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3664
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3665
    cls.add_method('IsFinished', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3666
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3667
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3668
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3669
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3670
    cls.add_method('Now', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3671
                   'ns3::Time', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3672
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3673
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3674
    ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3675
    cls.add_method('Remove', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3676
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3677
                   [param('ns3::EventId const &', 'id')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3678
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3679
    ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3680
    cls.add_method('SetImplementation', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3681
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3682
                   [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3683
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3684
    ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3685
    cls.add_method('SetScheduler', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3686
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3687
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3688
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3689
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3690
    cls.add_method('Stop', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3691
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3692
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3693
                   is_static=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  3694
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & delay) [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3695
    cls.add_method('Stop', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3696
                   'void', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  3697
                   [param('ns3::Time const &', 'delay')], 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3698
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3699
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3700
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3701
def register_Ns3StatisticalSummary_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3702
    ## data-calculator.h (module 'stats'): ns3::StatisticalSummary::StatisticalSummary() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3703
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3704
    ## data-calculator.h (module 'stats'): ns3::StatisticalSummary::StatisticalSummary(ns3::StatisticalSummary const & arg0) [copy constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3705
    cls.add_constructor([param('ns3::StatisticalSummary const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3706
    ## data-calculator.h (module 'stats'): long int ns3::StatisticalSummary::getCount() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3707
    cls.add_method('getCount', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3708
                   'long int', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3709
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3710
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3711
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMax() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3712
    cls.add_method('getMax', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3713
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3714
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3715
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3716
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMean() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3717
    cls.add_method('getMean', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3718
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3719
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3720
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3721
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMin() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3722
    cls.add_method('getMin', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3723
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3724
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3725
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3726
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getSqrSum() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3727
    cls.add_method('getSqrSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3728
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3729
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3730
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3731
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getStddev() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3732
    cls.add_method('getStddev', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3733
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3734
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3735
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3736
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getSum() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3737
    cls.add_method('getSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3738
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3739
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3740
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3741
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getVariance() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3742
    cls.add_method('getVariance', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3743
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3744
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3745
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3746
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3747
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3748
def register_Ns3SystemWallClockMs_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3749
    ## 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
  3750
    cls.add_constructor([param('ns3::SystemWallClockMs const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3751
    ## 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
  3752
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3753
    ## 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
  3754
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3755
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3756
                   [])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3757
    ## 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
  3758
    cls.add_method('GetElapsedReal', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3759
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3760
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3761
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3762
    ## 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
  3763
    cls.add_method('GetElapsedSystem', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3764
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3765
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3766
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3767
    ## 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
  3768
    cls.add_method('GetElapsedUser', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3769
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3770
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3771
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3772
    ## 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
  3773
    cls.add_method('Start', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3774
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3775
                   [])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3776
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3777
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3778
def register_Ns3Tag_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3779
    ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3780
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3781
    ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3782
    cls.add_constructor([param('ns3::Tag const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3783
    ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3784
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3785
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3786
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3787
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3788
    ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3789
    cls.add_method('GetSerializedSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3790
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3791
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3792
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3793
    ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3794
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3795
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3796
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3797
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3798
    ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3799
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3800
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3801
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3802
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3803
    ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3804
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3805
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3806
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3807
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3808
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3809
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3810
def register_Ns3TagBuffer_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3811
    ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3812
    cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3813
    ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3814
    cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3815
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3816
    cls.add_method('CopyFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3817
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3818
                   [param('ns3::TagBuffer', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3819
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3820
    cls.add_method('Read', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3821
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3822
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3823
    ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3824
    cls.add_method('ReadDouble', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3825
                   'double', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3826
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3827
    ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3828
    cls.add_method('ReadU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3829
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3830
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3831
    ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3832
    cls.add_method('ReadU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3833
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3834
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3835
    ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3836
    cls.add_method('ReadU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3837
                   'uint64_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3838
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3839
    ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3840
    cls.add_method('ReadU8', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3841
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3842
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3843
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3844
    cls.add_method('TrimAtEnd', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3845
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3846
                   [param('uint32_t', 'trim')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3847
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3848
    cls.add_method('Write', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3849
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3850
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3851
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3852
    cls.add_method('WriteDouble', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3853
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3854
                   [param('double', 'v')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3855
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3856
    cls.add_method('WriteU16', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3857
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3858
                   [param('uint16_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3859
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3860
    cls.add_method('WriteU32', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3861
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3862
                   [param('uint32_t', 'data')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3863
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3864
    cls.add_method('WriteU64', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3865
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3866
                   [param('uint64_t', 'v')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3867
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3868
    cls.add_method('WriteU8', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3869
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3870
                   [param('uint8_t', 'v')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3871
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3872
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3873
def register_Ns3TimeWithUnit_methods(root_module, cls):
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3874
    cls.add_output_stream_operator()
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3875
    ## nstime.h (module 'core'): ns3::TimeWithUnit::TimeWithUnit(ns3::TimeWithUnit const & arg0) [copy constructor]
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3876
    cls.add_constructor([param('ns3::TimeWithUnit const &', 'arg0')])
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3877
    ## nstime.h (module 'core'): ns3::TimeWithUnit::TimeWithUnit(ns3::Time const time, ns3::Time::Unit const unit) [constructor]
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3878
    cls.add_constructor([param('ns3::Time const', 'time'), param('ns3::Time::Unit const', 'unit')])
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3879
    return
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3880
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3881
def register_Ns3TypeId_methods(root_module, cls):
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
  3882
    cls.add_binary_comparison_operator('!=')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3883
    cls.add_binary_comparison_operator('<')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3884
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3885
    cls.add_binary_comparison_operator('==')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3886
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3887
    cls.add_constructor([param('char const *', 'name')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3888
    ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3889
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3890
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3891
    cls.add_constructor([param('ns3::TypeId const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3892
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3893
    cls.add_method('AddAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3894
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3895
                   [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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3896
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3897
    cls.add_method('AddAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3898
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3899
                   [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')])
11114
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  3900
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3901
    cls.add_method('AddTraceSource', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3902
                   'ns3::TypeId', 
11114
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  3903
                   [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')], 
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  3904
                   deprecated=True)
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  3905
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor, std::string callback) [member function]
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  3906
    cls.add_method('AddTraceSource', 
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  3907
                   'ns3::TypeId', 
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  3908
                   [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor'), param('std::string', 'callback')])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3909
    ## 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
  3910
    cls.add_method('GetAttribute', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3911
                   'ns3::TypeId::AttributeInformation', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3912
                   [param('uint32_t', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3913
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3914
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3915
    cls.add_method('GetAttributeFullName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3916
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3917
                   [param('uint32_t', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3918
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3919
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3920
    cls.add_method('GetAttributeN', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3921
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3922
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3923
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3924
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3925
    cls.add_method('GetConstructor', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3926
                   'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3927
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3928
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3929
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3930
    cls.add_method('GetGroupName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3931
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3932
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3933
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3934
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetHash() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3935
    cls.add_method('GetHash', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3936
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3937
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3938
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3939
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3940
    cls.add_method('GetName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3941
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3942
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3943
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3944
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3945
    cls.add_method('GetParent', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3946
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3947
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3948
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3949
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3950
    cls.add_method('GetRegistered', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3951
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3952
                   [param('uint32_t', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3953
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3954
    ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3955
    cls.add_method('GetRegisteredN', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3956
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3957
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3958
                   is_static=True)
11018
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  3959
    ## type-id.h (module 'core'): std::size_t ns3::TypeId::GetSize() const [member function]
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  3960
    cls.add_method('GetSize', 
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  3961
                   'std::size_t', 
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  3962
                   [], 
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  3963
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3964
    ## 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
  3965
    cls.add_method('GetTraceSource', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3966
                   'ns3::TypeId::TraceSourceInformation', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3967
                   [param('uint32_t', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3968
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3969
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
    cls.add_method('GetTraceSourceN', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3971
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3972
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3973
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3974
    ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3975
    cls.add_method('GetUid', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3976
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3977
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3978
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3979
    ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3980
    cls.add_method('HasConstructor', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3981
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3982
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3983
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3984
    ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3985
    cls.add_method('HasParent', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3986
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3987
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3988
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3989
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3990
    cls.add_method('HideFromDocumentation', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3991
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3992
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3993
    ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3994
    cls.add_method('IsChildOf', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3995
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3996
                   [param('ns3::TypeId', 'other')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3997
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3998
    ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3999
    cls.add_method('LookupAttributeByName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4000
                   'bool', 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4001
                   [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4002
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4003
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByHash(uint32_t hash) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4004
    cls.add_method('LookupByHash', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4005
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4006
                   [param('uint32_t', 'hash')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4007
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4008
    ## type-id.h (module 'core'): static bool ns3::TypeId::LookupByHashFailSafe(uint32_t hash, ns3::TypeId * tid) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4009
    cls.add_method('LookupByHashFailSafe', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4010
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4011
                   [param('uint32_t', 'hash'), param('ns3::TypeId *', 'tid')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4012
                   is_static=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4013
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4014
    cls.add_method('LookupByName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4015
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4016
                   [param('std::string', 'name')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4017
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4018
    ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4019
    cls.add_method('LookupTraceSourceByName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4020
                   'ns3::Ptr< ns3::TraceSourceAccessor const >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4021
                   [param('std::string', 'name')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4022
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4023
    ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4024
    cls.add_method('MustHideFromDocumentation', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4025
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4026
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4027
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4028
    ## 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
  4029
    cls.add_method('SetAttributeInitialValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4030
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4031
                   [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4032
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4033
    cls.add_method('SetGroupName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4034
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4035
                   [param('std::string', 'groupName')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4036
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4037
    cls.add_method('SetParent', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4038
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4039
                   [param('ns3::TypeId', 'tid')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4040
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4041
    cls.add_method('SetParent', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4042
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4043
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4044
                   template_parameters=['ns3::Object'])
11018
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  4045
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetSize(std::size_t size) [member function]
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  4046
    cls.add_method('SetSize', 
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  4047
                   'ns3::TypeId', 
cde251b9024f rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10990
diff changeset
  4048
                   [param('std::size_t', 'size')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4049
    ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4050
    cls.add_method('SetUid', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4051
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4052
                   [param('uint16_t', 'tid')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4053
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4054
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4055
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4056
    ## 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
  4057
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4058
    ## 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
  4059
    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
  4060
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4061
    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
  4062
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4063
    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
  4064
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4065
    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
  4066
    ## 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
  4067
    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
  4068
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4069
    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
  4070
    ## 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
  4071
    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
  4072
    ## 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
  4073
    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
  4074
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4075
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4076
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4077
    ## 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
  4078
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4079
    ## 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
  4080
    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
  4081
    ## 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
  4082
    cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
10990
414d94e669c5 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10956
diff changeset
  4083
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::callback [variable]
414d94e669c5 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10956
diff changeset
  4084
    cls.add_instance_attribute('callback', 'std::string', is_const=False)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4085
    ## 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
  4086
    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
  4087
    ## 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
  4088
    cls.add_instance_attribute('name', 'std::string', is_const=False)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4089
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4090
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4091
def register_Ns3UdpClientHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4092
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpClientHelper::UdpClientHelper(ns3::UdpClientHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4093
    cls.add_constructor([param('ns3::UdpClientHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4094
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpClientHelper::UdpClientHelper() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4095
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4096
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpClientHelper::UdpClientHelper(ns3::Ipv4Address ip, uint16_t port) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4097
    cls.add_constructor([param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4098
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpClientHelper::UdpClientHelper(ns3::Ipv6Address ip, uint16_t port) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4099
    cls.add_constructor([param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4100
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpClientHelper::UdpClientHelper(ns3::Address ip, uint16_t port) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4101
    cls.add_constructor([param('ns3::Address', 'ip'), param('uint16_t', 'port')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4102
    ## udp-client-server-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpClientHelper::Install(ns3::NodeContainer c) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4103
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4104
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4105
                   [param('ns3::NodeContainer', 'c')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4106
    ## udp-client-server-helper.h (module 'applications'): void ns3::UdpClientHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4107
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4108
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4109
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4110
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4111
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4112
def register_Ns3UdpEchoClientHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4113
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::UdpEchoClientHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4114
    cls.add_constructor([param('ns3::UdpEchoClientHelper const &', 'arg0')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4115
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::Address ip, uint16_t port) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4116
    cls.add_constructor([param('ns3::Address', 'ip'), param('uint16_t', 'port')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4117
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::Ipv4Address ip, uint16_t port) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4118
    cls.add_constructor([param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4119
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoClientHelper::UdpEchoClientHelper(ns3::Ipv6Address ip, uint16_t port) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4120
    cls.add_constructor([param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4121
    ## udp-echo-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4122
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4123
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4124
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4125
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4126
    ## udp-echo-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(std::string nodeName) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4127
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4128
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4129
                   [param('std::string', 'nodeName')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4130
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4131
    ## udp-echo-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpEchoClientHelper::Install(ns3::NodeContainer c) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4132
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4133
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4134
                   [param('ns3::NodeContainer', 'c')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4135
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4136
    ## udp-echo-helper.h (module 'applications'): void ns3::UdpEchoClientHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4137
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4138
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4139
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4140
    ## udp-echo-helper.h (module 'applications'): void ns3::UdpEchoClientHelper::SetFill(ns3::Ptr<ns3::Application> app, std::string fill) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4141
    cls.add_method('SetFill', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4142
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4143
                   [param('ns3::Ptr< ns3::Application >', 'app'), param('std::string', 'fill')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4144
    ## udp-echo-helper.h (module 'applications'): void ns3::UdpEchoClientHelper::SetFill(ns3::Ptr<ns3::Application> app, uint8_t fill, uint32_t dataLength) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4145
    cls.add_method('SetFill', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4146
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4147
                   [param('ns3::Ptr< ns3::Application >', 'app'), param('uint8_t', 'fill'), param('uint32_t', 'dataLength')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4148
    ## udp-echo-helper.h (module 'applications'): void ns3::UdpEchoClientHelper::SetFill(ns3::Ptr<ns3::Application> app, uint8_t * fill, uint32_t fillLength, uint32_t dataLength) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4149
    cls.add_method('SetFill', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4150
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4151
                   [param('ns3::Ptr< ns3::Application >', 'app'), param('uint8_t *', 'fill'), param('uint32_t', 'fillLength'), param('uint32_t', 'dataLength')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4152
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4153
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4154
def register_Ns3UdpEchoServerHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4155
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoServerHelper::UdpEchoServerHelper(ns3::UdpEchoServerHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4156
    cls.add_constructor([param('ns3::UdpEchoServerHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4157
    ## udp-echo-helper.h (module 'applications'): ns3::UdpEchoServerHelper::UdpEchoServerHelper(uint16_t port) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4158
    cls.add_constructor([param('uint16_t', 'port')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4159
    ## udp-echo-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4160
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4161
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4162
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4163
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4164
    ## udp-echo-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(std::string nodeName) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4165
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4166
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4167
                   [param('std::string', 'nodeName')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4168
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4169
    ## udp-echo-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpEchoServerHelper::Install(ns3::NodeContainer c) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4170
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4171
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4172
                   [param('ns3::NodeContainer', 'c')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4173
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4174
    ## udp-echo-helper.h (module 'applications'): void ns3::UdpEchoServerHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4175
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4176
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4177
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4178
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4179
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4180
def register_Ns3UdpServerHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4181
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpServerHelper::UdpServerHelper(ns3::UdpServerHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4182
    cls.add_constructor([param('ns3::UdpServerHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4183
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpServerHelper::UdpServerHelper() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4184
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4185
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpServerHelper::UdpServerHelper(uint16_t port) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4186
    cls.add_constructor([param('uint16_t', 'port')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4187
    ## udp-client-server-helper.h (module 'applications'): ns3::Ptr<ns3::UdpServer> ns3::UdpServerHelper::GetServer() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4188
    cls.add_method('GetServer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4189
                   'ns3::Ptr< ns3::UdpServer >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4190
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4191
    ## udp-client-server-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpServerHelper::Install(ns3::NodeContainer c) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4192
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4193
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4194
                   [param('ns3::NodeContainer', 'c')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4195
    ## udp-client-server-helper.h (module 'applications'): void ns3::UdpServerHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4196
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4197
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4198
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4199
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4200
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4201
def register_Ns3UdpTraceClientHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4202
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpTraceClientHelper::UdpTraceClientHelper(ns3::UdpTraceClientHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4203
    cls.add_constructor([param('ns3::UdpTraceClientHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4204
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpTraceClientHelper::UdpTraceClientHelper() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4205
    cls.add_constructor([])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4206
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpTraceClientHelper::UdpTraceClientHelper(ns3::Address ip, uint16_t port, std::string filename) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4207
    cls.add_constructor([param('ns3::Address', 'ip'), param('uint16_t', 'port'), param('std::string', 'filename')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4208
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpTraceClientHelper::UdpTraceClientHelper(ns3::Ipv4Address ip, uint16_t port, std::string filename) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4209
    cls.add_constructor([param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port'), param('std::string', 'filename')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4210
    ## udp-client-server-helper.h (module 'applications'): ns3::UdpTraceClientHelper::UdpTraceClientHelper(ns3::Ipv6Address ip, uint16_t port, std::string filename) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4211
    cls.add_constructor([param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port'), param('std::string', 'filename')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4212
    ## udp-client-server-helper.h (module 'applications'): ns3::ApplicationContainer ns3::UdpTraceClientHelper::Install(ns3::NodeContainer c) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4213
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4214
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4215
                   [param('ns3::NodeContainer', 'c')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4216
    ## udp-client-server-helper.h (module 'applications'): void ns3::UdpTraceClientHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4217
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4218
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4219
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4220
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4221
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4222
def register_Ns3V4PingHelper_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4223
    ## v4ping-helper.h (module 'applications'): ns3::V4PingHelper::V4PingHelper(ns3::V4PingHelper const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4224
    cls.add_constructor([param('ns3::V4PingHelper const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4225
    ## v4ping-helper.h (module 'applications'): ns3::V4PingHelper::V4PingHelper(ns3::Ipv4Address remote) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4226
    cls.add_constructor([param('ns3::Ipv4Address', 'remote')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4227
    ## v4ping-helper.h (module 'applications'): ns3::ApplicationContainer ns3::V4PingHelper::Install(ns3::NodeContainer nodes) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4228
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4229
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4230
                   [param('ns3::NodeContainer', 'nodes')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4231
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4232
    ## v4ping-helper.h (module 'applications'): ns3::ApplicationContainer ns3::V4PingHelper::Install(ns3::Ptr<ns3::Node> node) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4233
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4234
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4235
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4236
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4237
    ## v4ping-helper.h (module 'applications'): ns3::ApplicationContainer ns3::V4PingHelper::Install(std::string nodeName) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4238
    cls.add_method('Install', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4239
                   'ns3::ApplicationContainer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4240
                   [param('std::string', 'nodeName')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4241
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4242
    ## v4ping-helper.h (module 'applications'): void ns3::V4PingHelper::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4243
    cls.add_method('SetAttribute', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4244
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4245
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4246
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4247
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4248
def register_Ns3Empty_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4249
    ## empty.h (module 'core'): ns3::empty::empty() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4250
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4251
    ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4252
    cls.add_constructor([param('ns3::empty const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4253
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4254
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4255
def register_Ns3Int64x64_t_methods(root_module, cls):
11114
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  4256
    cls.add_binary_comparison_operator('<=')
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
  4257
    cls.add_binary_comparison_operator('!=')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4258
    cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4259
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4260
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4261
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4262
    cls.add_unary_numeric_operator('-')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4263
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4264
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4265
    cls.add_binary_comparison_operator('>')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4266
    cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4267
    cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4268
    cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4269
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4270
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4271
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4272
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4273
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4274
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4275
    cls.add_constructor([param('double', 'v')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  4276
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long double v) [constructor]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  4277
    cls.add_constructor([param('long double', 'v')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4278
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4279
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4280
    ## 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: 6983
diff changeset
  4281
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4282
    ## 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: 6983
diff changeset
  4283
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4284
    ## 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: 6983
diff changeset
  4285
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4286
    ## 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: 6983
diff changeset
  4287
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4288
    ## 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: 6983
diff changeset
  4289
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4290
    ## 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: 6983
diff changeset
  4291
    cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4292
    ## 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: 6983
diff changeset
  4293
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4294
    ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4295
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4296
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4297
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4298
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4299
    ## 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: 6983
diff changeset
  4300
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4301
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4302
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4303
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4304
    ## 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: 6983
diff changeset
  4305
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4306
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4307
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4308
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4309
    ## 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: 6983
diff changeset
  4310
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4311
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4312
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4313
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4314
    ## 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: 6983
diff changeset
  4315
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4316
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4317
                   [param('ns3::int64x64_t const &', 'o')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  4318
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::implementation [variable]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  4319
    cls.add_static_attribute('implementation', 'ns3::int64x64_t::impl_type const', is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4320
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4321
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4322
def register_Ns3Chunk_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4323
    ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4324
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4325
    ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4326
    cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4327
    ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4328
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4329
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4330
                   [param('ns3::Buffer::Iterator', 'start')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4331
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4332
    ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4333
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4334
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4335
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4336
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4337
    ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4338
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4339
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4340
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4341
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4342
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4343
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4344
def register_Ns3DeviceNameTag_methods(root_module, cls):
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4345
    ## packet-socket.h (module 'network'): ns3::DeviceNameTag::DeviceNameTag(ns3::DeviceNameTag const & arg0) [copy constructor]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4346
    cls.add_constructor([param('ns3::DeviceNameTag const &', 'arg0')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4347
    ## packet-socket.h (module 'network'): ns3::DeviceNameTag::DeviceNameTag() [constructor]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4348
    cls.add_constructor([])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4349
    ## packet-socket.h (module 'network'): void ns3::DeviceNameTag::Deserialize(ns3::TagBuffer i) [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4350
    cls.add_method('Deserialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4351
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4352
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4353
                   is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4354
    ## packet-socket.h (module 'network'): std::string ns3::DeviceNameTag::GetDeviceName() const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4355
    cls.add_method('GetDeviceName', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4356
                   'std::string', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4357
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4358
                   is_const=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4359
    ## packet-socket.h (module 'network'): ns3::TypeId ns3::DeviceNameTag::GetInstanceTypeId() const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4360
    cls.add_method('GetInstanceTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4361
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4362
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4363
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4364
    ## packet-socket.h (module 'network'): uint32_t ns3::DeviceNameTag::GetSerializedSize() const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4365
    cls.add_method('GetSerializedSize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4366
                   'uint32_t', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4367
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4368
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4369
    ## packet-socket.h (module 'network'): static ns3::TypeId ns3::DeviceNameTag::GetTypeId() [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4370
    cls.add_method('GetTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4371
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4372
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4373
                   is_static=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4374
    ## packet-socket.h (module 'network'): void ns3::DeviceNameTag::Print(std::ostream & os) const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4375
    cls.add_method('Print', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4376
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4377
                   [param('std::ostream &', 'os')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4378
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4379
    ## packet-socket.h (module 'network'): void ns3::DeviceNameTag::Serialize(ns3::TagBuffer i) const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4380
    cls.add_method('Serialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4381
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4382
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4383
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4384
    ## packet-socket.h (module 'network'): void ns3::DeviceNameTag::SetDeviceName(std::string n) [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4385
    cls.add_method('SetDeviceName', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4386
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4387
                   [param('std::string', 'n')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4388
    return
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4389
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4390
def register_Ns3FlowIdTag_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4391
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag::FlowIdTag(ns3::FlowIdTag const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4392
    cls.add_constructor([param('ns3::FlowIdTag const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4393
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag::FlowIdTag() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4394
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4395
    ## flow-id-tag.h (module 'network'): ns3::FlowIdTag::FlowIdTag(uint32_t flowId) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4396
    cls.add_constructor([param('uint32_t', 'flowId')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4397
    ## flow-id-tag.h (module 'network'): static uint32_t ns3::FlowIdTag::AllocateFlowId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4398
    cls.add_method('AllocateFlowId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4399
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4400
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4401
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4402
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::Deserialize(ns3::TagBuffer buf) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4403
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4404
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4405
                   [param('ns3::TagBuffer', 'buf')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4406
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4407
    ## flow-id-tag.h (module 'network'): uint32_t ns3::FlowIdTag::GetFlowId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4408
    cls.add_method('GetFlowId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4409
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4410
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4411
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4412
    ## flow-id-tag.h (module 'network'): ns3::TypeId ns3::FlowIdTag::GetInstanceTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4413
    cls.add_method('GetInstanceTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4414
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4415
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4416
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4417
    ## flow-id-tag.h (module 'network'): uint32_t ns3::FlowIdTag::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4418
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4419
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4420
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4421
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4422
    ## flow-id-tag.h (module 'network'): static ns3::TypeId ns3::FlowIdTag::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4423
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4424
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4425
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4426
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4427
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4428
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4429
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4430
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4431
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4432
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::Serialize(ns3::TagBuffer buf) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4433
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4434
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4435
                   [param('ns3::TagBuffer', 'buf')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4436
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4437
    ## flow-id-tag.h (module 'network'): void ns3::FlowIdTag::SetFlowId(uint32_t flowId) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4438
    cls.add_method('SetFlowId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4439
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4440
                   [param('uint32_t', 'flowId')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4441
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4442
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4443
def register_Ns3Header_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4444
    cls.add_output_stream_operator()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4445
    ## header.h (module 'network'): ns3::Header::Header() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4446
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4447
    ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4448
    cls.add_constructor([param('ns3::Header const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4449
    ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4450
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4451
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4452
                   [param('ns3::Buffer::Iterator', 'start')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4453
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4454
    ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4455
    cls.add_method('GetSerializedSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4456
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4457
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4458
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4459
    ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4460
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4461
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4462
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4463
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4464
    ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4465
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4466
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4467
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4468
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4469
    ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4470
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4471
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4472
                   [param('ns3::Buffer::Iterator', 'start')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4473
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4474
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4475
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4476
def register_Ns3LlcSnapHeader_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4477
    ## llc-snap-header.h (module 'network'): ns3::LlcSnapHeader::LlcSnapHeader(ns3::LlcSnapHeader const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4478
    cls.add_constructor([param('ns3::LlcSnapHeader const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4479
    ## llc-snap-header.h (module 'network'): ns3::LlcSnapHeader::LlcSnapHeader() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4480
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4481
    ## llc-snap-header.h (module 'network'): uint32_t ns3::LlcSnapHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4482
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4483
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4484
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4485
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4486
    ## llc-snap-header.h (module 'network'): ns3::TypeId ns3::LlcSnapHeader::GetInstanceTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4487
    cls.add_method('GetInstanceTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4488
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4489
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4490
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4491
    ## llc-snap-header.h (module 'network'): uint32_t ns3::LlcSnapHeader::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4492
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4493
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4494
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4495
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4496
    ## llc-snap-header.h (module 'network'): uint16_t ns3::LlcSnapHeader::GetType() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4497
    cls.add_method('GetType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4498
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4499
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4500
    ## llc-snap-header.h (module 'network'): static ns3::TypeId ns3::LlcSnapHeader::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4501
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4502
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4503
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4504
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4505
    ## llc-snap-header.h (module 'network'): void ns3::LlcSnapHeader::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4506
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4507
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4508
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4509
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4510
    ## llc-snap-header.h (module 'network'): void ns3::LlcSnapHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4511
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4512
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4513
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4514
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4515
    ## llc-snap-header.h (module 'network'): void ns3::LlcSnapHeader::SetType(uint16_t type) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4516
    cls.add_method('SetType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4517
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4518
                   [param('uint16_t', 'type')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4519
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4520
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4521
def register_Ns3Object_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4522
    ## object.h (module 'core'): ns3::Object::Object() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4523
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4524
    ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4525
    cls.add_method('AggregateObject', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4526
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4527
                   [param('ns3::Ptr< ns3::Object >', 'other')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4528
    ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4529
    cls.add_method('Dispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4530
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4531
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4532
    ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4533
    cls.add_method('GetAggregateIterator', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4534
                   'ns3::Object::AggregateIterator', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4535
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4536
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4537
    ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4538
    cls.add_method('GetInstanceTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4539
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4540
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4541
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4542
    ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4543
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4544
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4545
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4546
                   is_static=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4547
    ## object.h (module 'core'): void ns3::Object::Initialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4548
    cls.add_method('Initialize', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4549
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4550
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4551
    ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4552
    cls.add_constructor([param('ns3::Object const &', 'o')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4553
                        visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4554
    ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4555
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4556
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4557
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4558
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4559
    ## object.h (module 'core'): void ns3::Object::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4560
    cls.add_method('DoInitialize', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4561
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4562
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4563
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4564
    ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4565
    cls.add_method('NotifyNewAggregate', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4566
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4567
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4568
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4569
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4570
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4571
def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4572
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4573
    cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4574
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4575
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4576
    ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4577
    cls.add_method('HasNext', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4578
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4579
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4580
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4581
    ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4582
    cls.add_method('Next', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4583
                   'ns3::Ptr< ns3::Object const >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4584
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4585
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4586
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4587
def register_Ns3PacketBurst_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4588
    ## packet-burst.h (module 'network'): ns3::PacketBurst::PacketBurst(ns3::PacketBurst const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4589
    cls.add_constructor([param('ns3::PacketBurst const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4590
    ## packet-burst.h (module 'network'): ns3::PacketBurst::PacketBurst() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4591
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4592
    ## packet-burst.h (module 'network'): void ns3::PacketBurst::AddPacket(ns3::Ptr<ns3::Packet> packet) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4593
    cls.add_method('AddPacket', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4594
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4595
                   [param('ns3::Ptr< ns3::Packet >', 'packet')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4596
    ## packet-burst.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::Packet> > ns3::PacketBurst::Begin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4597
    cls.add_method('Begin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4598
                   'std::_List_const_iterator< ns3::Ptr< ns3::Packet > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4599
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4600
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4601
    ## packet-burst.h (module 'network'): ns3::Ptr<ns3::PacketBurst> ns3::PacketBurst::Copy() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4602
    cls.add_method('Copy', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4603
                   'ns3::Ptr< ns3::PacketBurst >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4604
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4605
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4606
    ## packet-burst.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::Packet> > ns3::PacketBurst::End() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4607
    cls.add_method('End', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4608
                   'std::_List_const_iterator< ns3::Ptr< ns3::Packet > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4609
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4610
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4611
    ## packet-burst.h (module 'network'): uint32_t ns3::PacketBurst::GetNPackets() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4612
    cls.add_method('GetNPackets', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4613
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4614
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4615
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4616
    ## packet-burst.h (module 'network'): std::list<ns3::Ptr<ns3::Packet>, std::allocator<ns3::Ptr<ns3::Packet> > > ns3::PacketBurst::GetPackets() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4617
    cls.add_method('GetPackets', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4618
                   'std::list< ns3::Ptr< ns3::Packet > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4619
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4620
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4621
    ## packet-burst.h (module 'network'): uint32_t ns3::PacketBurst::GetSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4622
    cls.add_method('GetSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4623
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4624
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4625
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4626
    ## packet-burst.h (module 'network'): static ns3::TypeId ns3::PacketBurst::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4627
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4628
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4629
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4630
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4631
    ## packet-burst.h (module 'network'): void ns3::PacketBurst::DoDispose() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4632
    cls.add_method('DoDispose', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4633
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4634
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4635
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4636
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4637
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4638
def register_Ns3PacketSocketTag_methods(root_module, cls):
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4639
    ## packet-socket.h (module 'network'): ns3::PacketSocketTag::PacketSocketTag(ns3::PacketSocketTag const & arg0) [copy constructor]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4640
    cls.add_constructor([param('ns3::PacketSocketTag const &', 'arg0')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4641
    ## packet-socket.h (module 'network'): ns3::PacketSocketTag::PacketSocketTag() [constructor]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4642
    cls.add_constructor([])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4643
    ## packet-socket.h (module 'network'): void ns3::PacketSocketTag::Deserialize(ns3::TagBuffer i) [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4644
    cls.add_method('Deserialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4645
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4646
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4647
                   is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4648
    ## packet-socket.h (module 'network'): ns3::Address ns3::PacketSocketTag::GetDestAddress() const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4649
    cls.add_method('GetDestAddress', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4650
                   'ns3::Address', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4651
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4652
                   is_const=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4653
    ## packet-socket.h (module 'network'): ns3::TypeId ns3::PacketSocketTag::GetInstanceTypeId() const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4654
    cls.add_method('GetInstanceTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4655
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4656
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4657
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4658
    ## packet-socket.h (module 'network'): ns3::NetDevice::PacketType ns3::PacketSocketTag::GetPacketType() const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4659
    cls.add_method('GetPacketType', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4660
                   'ns3::NetDevice::PacketType', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4661
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4662
                   is_const=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4663
    ## packet-socket.h (module 'network'): uint32_t ns3::PacketSocketTag::GetSerializedSize() const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4664
    cls.add_method('GetSerializedSize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4665
                   'uint32_t', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4666
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4667
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4668
    ## packet-socket.h (module 'network'): static ns3::TypeId ns3::PacketSocketTag::GetTypeId() [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4669
    cls.add_method('GetTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4670
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4671
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4672
                   is_static=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4673
    ## packet-socket.h (module 'network'): void ns3::PacketSocketTag::Print(std::ostream & os) const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4674
    cls.add_method('Print', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4675
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4676
                   [param('std::ostream &', 'os')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4677
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4678
    ## packet-socket.h (module 'network'): void ns3::PacketSocketTag::Serialize(ns3::TagBuffer i) const [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4679
    cls.add_method('Serialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4680
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4681
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4682
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4683
    ## packet-socket.h (module 'network'): void ns3::PacketSocketTag::SetDestAddress(ns3::Address a) [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4684
    cls.add_method('SetDestAddress', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4685
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4686
                   [param('ns3::Address', 'a')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4687
    ## packet-socket.h (module 'network'): void ns3::PacketSocketTag::SetPacketType(ns3::NetDevice::PacketType t) [member function]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4688
    cls.add_method('SetPacketType', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4689
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4690
                   [param('ns3::NetDevice::PacketType', 't')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4691
    return
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4692
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4693
def register_Ns3PcapFileWrapper_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4694
    ## pcap-file-wrapper.h (module 'network'): static ns3::TypeId ns3::PcapFileWrapper::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4695
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4696
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4697
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4698
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4699
    ## pcap-file-wrapper.h (module 'network'): ns3::PcapFileWrapper::PcapFileWrapper() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4700
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4701
    ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Fail() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4702
    cls.add_method('Fail', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4703
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4704
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4705
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4706
    ## pcap-file-wrapper.h (module 'network'): bool ns3::PcapFileWrapper::Eof() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4707
    cls.add_method('Eof', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4708
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4709
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4710
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4711
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Clear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4712
    cls.add_method('Clear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4713
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4714
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4715
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Open(std::string const & filename, std::_Ios_Openmode mode) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4716
    cls.add_method('Open', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4717
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4718
                   [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4719
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Close() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4720
    cls.add_method('Close', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4721
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4722
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4723
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4724
    cls.add_method('Init', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4725
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4726
                   [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')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4727
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4728
    cls.add_method('Write', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4729
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4730
                   [param('ns3::Time', 't'), param('ns3::Ptr< ns3::Packet const >', 'p')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4731
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Header const & header, ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4732
    cls.add_method('Write', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4733
                   'void', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4734
                   [param('ns3::Time', 't'), param('ns3::Header const &', 'header'), param('ns3::Ptr< ns3::Packet const >', 'p')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4735
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, uint8_t const * buffer, uint32_t length) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4736
    cls.add_method('Write', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4737
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4738
                   [param('ns3::Time', 't'), param('uint8_t const *', 'buffer'), param('uint32_t', 'length')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4739
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetMagic() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4740
    cls.add_method('GetMagic', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4741
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4742
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4743
    ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMajor() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4744
    cls.add_method('GetVersionMajor', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4745
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4746
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4747
    ## pcap-file-wrapper.h (module 'network'): uint16_t ns3::PcapFileWrapper::GetVersionMinor() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4748
    cls.add_method('GetVersionMinor', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4749
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4750
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4751
    ## pcap-file-wrapper.h (module 'network'): int32_t ns3::PcapFileWrapper::GetTimeZoneOffset() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4752
    cls.add_method('GetTimeZoneOffset', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4753
                   'int32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4754
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4755
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSigFigs() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4756
    cls.add_method('GetSigFigs', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4757
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4758
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4759
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetSnapLen() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4760
    cls.add_method('GetSnapLen', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4761
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4762
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4763
    ## pcap-file-wrapper.h (module 'network'): uint32_t ns3::PcapFileWrapper::GetDataLinkType() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4764
    cls.add_method('GetDataLinkType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4765
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4766
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4767
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4768
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4769
def register_Ns3Queue_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4770
    ## queue.h (module 'network'): ns3::Queue::Queue(ns3::Queue const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4771
    cls.add_constructor([param('ns3::Queue const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4772
    ## queue.h (module 'network'): ns3::Queue::Queue() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4773
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4774
    ## queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Queue::Dequeue() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4775
    cls.add_method('Dequeue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4776
                   'ns3::Ptr< ns3::Packet >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4777
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4778
    ## queue.h (module 'network'): void ns3::Queue::DequeueAll() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4779
    cls.add_method('DequeueAll', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4780
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4781
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4782
    ## queue.h (module 'network'): bool ns3::Queue::Enqueue(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4783
    cls.add_method('Enqueue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4784
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4785
                   [param('ns3::Ptr< ns3::Packet >', 'p')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4786
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetNBytes() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4787
    cls.add_method('GetNBytes', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4788
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4789
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4790
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4791
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetNPackets() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4792
    cls.add_method('GetNPackets', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4793
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4794
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4795
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4796
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalDroppedBytes() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4797
    cls.add_method('GetTotalDroppedBytes', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4798
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4799
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4800
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4801
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalDroppedPackets() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4802
    cls.add_method('GetTotalDroppedPackets', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4803
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4804
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4805
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4806
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalReceivedBytes() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4807
    cls.add_method('GetTotalReceivedBytes', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4808
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4809
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4810
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4811
    ## queue.h (module 'network'): uint32_t ns3::Queue::GetTotalReceivedPackets() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4812
    cls.add_method('GetTotalReceivedPackets', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4813
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4814
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4815
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4816
    ## queue.h (module 'network'): static ns3::TypeId ns3::Queue::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4817
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4818
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4819
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4820
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4821
    ## queue.h (module 'network'): bool ns3::Queue::IsEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4822
    cls.add_method('IsEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4823
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4824
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4825
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4826
    ## queue.h (module 'network'): ns3::Ptr<ns3::Packet const> ns3::Queue::Peek() const [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4827
    cls.add_method('Peek', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4828
                   'ns3::Ptr< ns3::Packet const >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4829
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4830
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4831
    ## queue.h (module 'network'): void ns3::Queue::ResetStatistics() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4832
    cls.add_method('ResetStatistics', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4833
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4834
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4835
    ## queue.h (module 'network'): void ns3::Queue::Drop(ns3::Ptr<ns3::Packet> packet) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4836
    cls.add_method('Drop', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4837
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4838
                   [param('ns3::Ptr< ns3::Packet >', 'packet')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4839
                   visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4840
    ## queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Queue::DoDequeue() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4841
    cls.add_method('DoDequeue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4842
                   'ns3::Ptr< ns3::Packet >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4843
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4844
                   is_pure_virtual=True, visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4845
    ## queue.h (module 'network'): bool ns3::Queue::DoEnqueue(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4846
    cls.add_method('DoEnqueue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4847
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4848
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4849
                   is_pure_virtual=True, visibility='private', is_virtual=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4850
    ## queue.h (module 'network'): ns3::Ptr<ns3::Packet const> ns3::Queue::DoPeek() const [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4851
    cls.add_method('DoPeek', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4852
                   'ns3::Ptr< ns3::Packet const >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4853
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4854
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4855
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4856
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4857
def register_Ns3RadiotapHeader_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4858
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader::RadiotapHeader(ns3::RadiotapHeader const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4859
    cls.add_constructor([param('ns3::RadiotapHeader const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4860
    ## radiotap-header.h (module 'network'): ns3::RadiotapHeader::RadiotapHeader() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4861
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4862
    ## radiotap-header.h (module 'network'): uint32_t ns3::RadiotapHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4863
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4864
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4865
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4866
                   is_virtual=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4867
    ## radiotap-header.h (module 'network'): uint16_t ns3::RadiotapHeader::GetAmpduStatusFlags() const [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4868
    cls.add_method('GetAmpduStatusFlags', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4869
                   'uint16_t', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4870
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4871
                   is_const=True)
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4872
    ## radiotap-header.h (module 'network'): uint32_t ns3::RadiotapHeader::GetAmpduStatusRef() const [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4873
    cls.add_method('GetAmpduStatusRef', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4874
                   'uint32_t', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4875
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4876
                   is_const=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4877
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetAntennaNoisePower() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4878
    cls.add_method('GetAntennaNoisePower', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4879
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4880
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4881
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4882
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetAntennaSignalPower() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4883
    cls.add_method('GetAntennaSignalPower', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4884
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4885
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4886
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4887
    ## radiotap-header.h (module 'network'): uint16_t ns3::RadiotapHeader::GetChannelFlags() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4888
    cls.add_method('GetChannelFlags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4889
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4890
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4891
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4892
    ## radiotap-header.h (module 'network'): uint16_t ns3::RadiotapHeader::GetChannelFrequency() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4893
    cls.add_method('GetChannelFrequency', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4894
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4895
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4896
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4897
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetFrameFlags() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4898
    cls.add_method('GetFrameFlags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4899
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4900
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4901
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4902
    ## radiotap-header.h (module 'network'): ns3::TypeId ns3::RadiotapHeader::GetInstanceTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4903
    cls.add_method('GetInstanceTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4904
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4905
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4906
                   is_const=True, is_virtual=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4907
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetMcsFlags() const [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4908
    cls.add_method('GetMcsFlags', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4909
                   'uint8_t', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4910
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4911
                   is_const=True)
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4912
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetMcsKnown() const [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4913
    cls.add_method('GetMcsKnown', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4914
                   'uint8_t', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4915
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4916
                   is_const=True)
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4917
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetMcsRate() const [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4918
    cls.add_method('GetMcsRate', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4919
                   'uint8_t', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4920
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  4921
                   is_const=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4922
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetRate() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4923
    cls.add_method('GetRate', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4924
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4925
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4926
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4927
    ## radiotap-header.h (module 'network'): uint32_t ns3::RadiotapHeader::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4928
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4929
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4930
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4931
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4932
    ## radiotap-header.h (module 'network'): uint64_t ns3::RadiotapHeader::GetTsft() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4933
    cls.add_method('GetTsft', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4934
                   'uint64_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4935
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4936
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4937
    ## radiotap-header.h (module 'network'): static ns3::TypeId ns3::RadiotapHeader::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4938
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4939
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4940
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4941
                   is_static=True)
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4942
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtBandwidth() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4943
    cls.add_method('GetVhtBandwidth', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4944
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4945
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4946
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4947
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtCoding() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4948
    cls.add_method('GetVhtCoding', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4949
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4950
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4951
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4952
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtFlags() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4953
    cls.add_method('GetVhtFlags', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4954
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4955
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4956
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4957
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtGroupId() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4958
    cls.add_method('GetVhtGroupId', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4959
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4960
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4961
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4962
    ## radiotap-header.h (module 'network'): uint16_t ns3::RadiotapHeader::GetVhtKnown() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4963
    cls.add_method('GetVhtKnown', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4964
                   'uint16_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4965
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4966
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4967
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtMcsNssUser1() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4968
    cls.add_method('GetVhtMcsNssUser1', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4969
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4970
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4971
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4972
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtMcsNssUser2() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4973
    cls.add_method('GetVhtMcsNssUser2', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4974
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4975
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4976
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4977
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtMcsNssUser3() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4978
    cls.add_method('GetVhtMcsNssUser3', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4979
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4980
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4981
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4982
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtMcsNssUser4() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4983
    cls.add_method('GetVhtMcsNssUser4', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4984
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4985
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4986
                   is_const=True)
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4987
    ## radiotap-header.h (module 'network'): uint8_t ns3::RadiotapHeader::GetVhtPartialAid() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4988
    cls.add_method('GetVhtPartialAid', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4989
                   'uint8_t', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4990
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  4991
                   is_const=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4992
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4993
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4994
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4995
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4996
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4997
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4998
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4999
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5000
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5001
                   is_const=True, is_virtual=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5002
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetAmpduStatus(uint32_t referenceNumber, uint16_t flags, uint8_t crc) [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5003
    cls.add_method('SetAmpduStatus', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5004
                   'void', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5005
                   [param('uint32_t', 'referenceNumber'), param('uint16_t', 'flags'), param('uint8_t', 'crc')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5006
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetAntennaNoisePower(double noise) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5007
    cls.add_method('SetAntennaNoisePower', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5008
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5009
                   [param('double', 'noise')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5010
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetAntennaSignalPower(double signal) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5011
    cls.add_method('SetAntennaSignalPower', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5012
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5013
                   [param('double', 'signal')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5014
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetChannelFrequencyAndFlags(uint16_t frequency, uint16_t flags) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5015
    cls.add_method('SetChannelFrequencyAndFlags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5016
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5017
                   [param('uint16_t', 'frequency'), param('uint16_t', 'flags')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5018
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetFrameFlags(uint8_t flags) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5019
    cls.add_method('SetFrameFlags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5020
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5021
                   [param('uint8_t', 'flags')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5022
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetMcsFields(uint8_t known, uint8_t flags, uint8_t mcs) [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5023
    cls.add_method('SetMcsFields', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5024
                   'void', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  5025
                   [param('uint8_t', 'known'), param('uint8_t', 'flags'), param('uint8_t', 'mcs')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5026
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetRate(uint8_t rate) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5027
    cls.add_method('SetRate', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5028
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5029
                   [param('uint8_t', 'rate')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5030
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetTsft(uint64_t tsft) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5031
    cls.add_method('SetTsft', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5032
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5033
                   [param('uint64_t', 'tsft')])
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  5034
    ## radiotap-header.h (module 'network'): void ns3::RadiotapHeader::SetVhtFields(uint16_t known, uint8_t flags, uint8_t bandwidth, uint8_t * mcs_nss, uint8_t coding, uint8_t group_id, uint16_t partial_aid) [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  5035
    cls.add_method('SetVhtFields', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  5036
                   'void', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  5037
                   [param('uint16_t', 'known'), param('uint8_t', 'flags'), param('uint8_t', 'bandwidth'), param('uint8_t *', 'mcs_nss'), param('uint8_t', 'coding'), param('uint8_t', 'group_id'), param('uint16_t', 'partial_aid')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5038
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5039
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5040
def register_Ns3RandomVariableStream_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5041
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::RandomVariableStream::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5042
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5043
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5044
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5045
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5046
    ## random-variable-stream.h (module 'core'): ns3::RandomVariableStream::RandomVariableStream() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5047
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5048
    ## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetStream(int64_t stream) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5049
    cls.add_method('SetStream', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5050
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5051
                   [param('int64_t', 'stream')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5052
    ## random-variable-stream.h (module 'core'): int64_t ns3::RandomVariableStream::GetStream() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5053
    cls.add_method('GetStream', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5054
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5055
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5056
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5057
    ## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetAntithetic(bool isAntithetic) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5058
    cls.add_method('SetAntithetic', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5059
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5060
                   [param('bool', 'isAntithetic')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5061
    ## random-variable-stream.h (module 'core'): bool ns3::RandomVariableStream::IsAntithetic() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5062
    cls.add_method('IsAntithetic', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5063
                   'bool', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5064
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5065
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5066
    ## random-variable-stream.h (module 'core'): double ns3::RandomVariableStream::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5067
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5068
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5069
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5070
                   is_pure_virtual=True, is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5071
    ## random-variable-stream.h (module 'core'): uint32_t ns3::RandomVariableStream::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5072
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5073
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5074
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5075
                   is_pure_virtual=True, is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5076
    ## random-variable-stream.h (module 'core'): ns3::RngStream * ns3::RandomVariableStream::Peek() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5077
    cls.add_method('Peek', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5078
                   'ns3::RngStream *', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5079
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5080
                   is_const=True, visibility='protected')
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5081
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5082
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5083
def register_Ns3RedQueue_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5084
    ## 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
  5085
    cls.add_constructor([param('ns3::RedQueue const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5086
    ## red-queue.h (module 'network'): ns3::RedQueue::RedQueue() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5087
    cls.add_constructor([])
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
  5088
    ## red-queue.h (module 'network'): int64_t ns3::RedQueue::AssignStreams(int64_t stream) [member function]
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
  5089
    cls.add_method('AssignStreams', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
  5090
                   'int64_t', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
  5091
                   [param('int64_t', 'stream')])
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5092
    ## red-queue.h (module 'network'): ns3::Queue::QueueMode ns3::RedQueue::GetMode() [member function]
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5093
    cls.add_method('GetMode', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5094
                   'ns3::Queue::QueueMode', 
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5095
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5096
    ## red-queue.h (module 'network'): uint32_t ns3::RedQueue::GetQueueSize() [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5097
    cls.add_method('GetQueueSize', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5098
                   'uint32_t', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5099
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5100
    ## 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
  5101
    cls.add_method('GetStats', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5102
                   'ns3::RedQueue::Stats', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5103
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5104
    ## 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
  5105
    cls.add_method('GetTypeId', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5106
                   'ns3::TypeId', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5107
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5108
                   is_static=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5109
    ## red-queue.h (module 'network'): void ns3::RedQueue::SetMode(ns3::Queue::QueueMode mode) [member function]
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5110
    cls.add_method('SetMode', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5111
                   'void', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5112
                   [param('ns3::Queue::QueueMode', 'mode')])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5113
    ## 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
  5114
    cls.add_method('SetQueueLimit', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5115
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5116
                   [param('uint32_t', 'lim')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5117
    ## 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
  5118
    cls.add_method('SetTh', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5119
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5120
                   [param('double', 'minTh'), param('double', 'maxTh')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5121
    ## 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
  5122
    cls.add_method('DoDequeue', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5123
                   'ns3::Ptr< ns3::Packet >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5124
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5125
                   visibility='private', is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5126
    ## 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
  5127
    cls.add_method('DoEnqueue', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5128
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5129
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5130
                   visibility='private', is_virtual=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5131
    ## red-queue.h (module 'network'): ns3::Ptr<ns3::Packet const> ns3::RedQueue::DoPeek() const [member function]
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5132
    cls.add_method('DoPeek', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5133
                   'ns3::Ptr< ns3::Packet const >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5134
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5135
                   is_const=True, visibility='private', is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5136
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5137
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5138
def register_Ns3RedQueueStats_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5139
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::Stats() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5140
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5141
    ## 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
  5142
    cls.add_constructor([param('ns3::RedQueue::Stats const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5143
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::forcedDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5144
    cls.add_instance_attribute('forcedDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5145
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::qLimDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5146
    cls.add_instance_attribute('qLimDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5147
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::unforcedDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5148
    cls.add_instance_attribute('unforcedDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5149
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  5150
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5151
def register_Ns3SeqTsHeader_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5152
    ## seq-ts-header.h (module 'applications'): ns3::SeqTsHeader::SeqTsHeader(ns3::SeqTsHeader const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5153
    cls.add_constructor([param('ns3::SeqTsHeader const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5154
    ## seq-ts-header.h (module 'applications'): ns3::SeqTsHeader::SeqTsHeader() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5155
    cls.add_constructor([])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5156
    ## seq-ts-header.h (module 'applications'): uint32_t ns3::SeqTsHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5157
    cls.add_method('Deserialize', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5158
                   'uint32_t', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5159
                   [param('ns3::Buffer::Iterator', 'start')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5160
                   is_virtual=True)
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5161
    ## seq-ts-header.h (module 'applications'): ns3::TypeId ns3::SeqTsHeader::GetInstanceTypeId() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5162
    cls.add_method('GetInstanceTypeId', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5163
                   'ns3::TypeId', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5164
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5165
                   is_const=True, is_virtual=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5166
    ## seq-ts-header.h (module 'applications'): uint32_t ns3::SeqTsHeader::GetSeq() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5167
    cls.add_method('GetSeq', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5168
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5169
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5170
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5171
    ## seq-ts-header.h (module 'applications'): uint32_t ns3::SeqTsHeader::GetSerializedSize() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5172
    cls.add_method('GetSerializedSize', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5173
                   'uint32_t', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5174
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5175
                   is_const=True, is_virtual=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5176
    ## seq-ts-header.h (module 'applications'): ns3::Time ns3::SeqTsHeader::GetTs() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5177
    cls.add_method('GetTs', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5178
                   'ns3::Time', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5179
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5180
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5181
    ## seq-ts-header.h (module 'applications'): static ns3::TypeId ns3::SeqTsHeader::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5182
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5183
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5184
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5185
                   is_static=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5186
    ## seq-ts-header.h (module 'applications'): void ns3::SeqTsHeader::Print(std::ostream & os) const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5187
    cls.add_method('Print', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5188
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5189
                   [param('std::ostream &', 'os')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5190
                   is_const=True, is_virtual=True)
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5191
    ## seq-ts-header.h (module 'applications'): void ns3::SeqTsHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5192
    cls.add_method('Serialize', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5193
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5194
                   [param('ns3::Buffer::Iterator', 'start')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5195
                   is_const=True, is_virtual=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5196
    ## seq-ts-header.h (module 'applications'): void ns3::SeqTsHeader::SetSeq(uint32_t seq) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5197
    cls.add_method('SetSeq', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5198
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5199
                   [param('uint32_t', 'seq')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5200
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5201
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5202
def register_Ns3SequentialRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5203
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::SequentialRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5204
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5205
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5206
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5207
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5208
    ## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable::SequentialRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5209
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5210
    ## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMin() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5211
    cls.add_method('GetMin', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5212
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5213
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5214
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5215
    ## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMax() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5216
    cls.add_method('GetMax', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5217
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5218
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5219
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5220
    ## random-variable-stream.h (module 'core'): ns3::Ptr<ns3::RandomVariableStream> ns3::SequentialRandomVariable::GetIncrement() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5221
    cls.add_method('GetIncrement', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5222
                   'ns3::Ptr< ns3::RandomVariableStream >', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5223
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5224
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5225
    ## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetConsecutive() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5226
    cls.add_method('GetConsecutive', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5227
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5228
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5229
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5230
    ## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5231
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5232
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5233
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5234
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5235
    ## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5236
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5237
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5238
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5239
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5240
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5241
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5242
def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5243
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5244
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5245
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5246
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5247
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5248
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5249
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5250
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5251
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5252
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5253
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5254
def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5255
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5256
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5257
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5258
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5259
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5260
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5261
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5262
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5263
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5264
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5265
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5266
def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5267
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5268
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5269
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5270
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5271
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5272
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5273
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5274
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5275
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5276
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5277
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5278
def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5279
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5280
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5281
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5282
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5283
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5284
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5285
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5286
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5287
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5288
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5289
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5290
def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5291
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5292
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5293
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5294
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5295
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5296
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5297
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5298
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5299
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5300
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5301
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5302
def register_Ns3SimpleRefCount__Ns3HashImplementation_Ns3Empty_Ns3DefaultDeleter__lt__ns3HashImplementation__gt___methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5303
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::SimpleRefCount() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5304
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5305
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> > const & o) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5306
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter< ns3::Hash::Implementation > > const &', 'o')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5307
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::Cleanup() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5308
    cls.add_method('Cleanup', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5309
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5310
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5311
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5312
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5313
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5314
def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5315
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5316
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5317
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5318
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5319
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5320
    cls.add_method('Cleanup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5321
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5322
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5323
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5324
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5325
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5326
def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5327
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5328
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5329
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5330
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5331
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5332
    cls.add_method('Cleanup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5333
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5334
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5335
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5336
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5337
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5338
def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5339
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5340
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5341
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5342
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5343
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5344
    cls.add_method('Cleanup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5345
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5346
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5347
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5348
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5349
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5350
def register_Ns3SimpleRefCount__Ns3PbbAddressBlock_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbAddressBlock__gt___methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5351
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >::SimpleRefCount() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5352
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5353
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5354
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter< ns3::PbbAddressBlock > > const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5355
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbAddressBlock, ns3::empty, ns3::DefaultDeleter<ns3::PbbAddressBlock> >::Cleanup() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5356
    cls.add_method('Cleanup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5357
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5358
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5359
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5360
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5361
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5362
def register_Ns3SimpleRefCount__Ns3PbbMessage_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbMessage__gt___methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5363
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >::SimpleRefCount() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5364
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5365
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5366
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter< ns3::PbbMessage > > const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5367
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbMessage, ns3::empty, ns3::DefaultDeleter<ns3::PbbMessage> >::Cleanup() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5368
    cls.add_method('Cleanup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5369
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5370
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5371
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5372
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5373
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5374
def register_Ns3SimpleRefCount__Ns3PbbPacket_Ns3Header_Ns3DefaultDeleter__lt__ns3PbbPacket__gt___methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5375
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >::SimpleRefCount() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5376
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5377
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5378
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter< ns3::PbbPacket > > const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5379
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbPacket, ns3::Header, ns3::DefaultDeleter<ns3::PbbPacket> >::Cleanup() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5380
    cls.add_method('Cleanup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5381
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5382
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5383
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5384
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5385
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5386
def register_Ns3SimpleRefCount__Ns3PbbTlv_Ns3Empty_Ns3DefaultDeleter__lt__ns3PbbTlv__gt___methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5387
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >::SimpleRefCount() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5388
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5389
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5390
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter< ns3::PbbTlv > > const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5391
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::PbbTlv, ns3::empty, ns3::DefaultDeleter<ns3::PbbTlv> >::Cleanup() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5392
    cls.add_method('Cleanup', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5393
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5394
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5395
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5396
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5397
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5398
def register_Ns3SimpleRefCount__Ns3RadvdInterface_Ns3Empty_Ns3DefaultDeleter__lt__ns3RadvdInterface__gt___methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5399
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter<ns3::RadvdInterface> >::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5400
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5401
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter<ns3::RadvdInterface> >::SimpleRefCount(ns3::SimpleRefCount<ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter<ns3::RadvdInterface> > const & o) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5402
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter< ns3::RadvdInterface > > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5403
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::RadvdInterface, ns3::empty, ns3::DefaultDeleter<ns3::RadvdInterface> >::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5404
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5405
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5406
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5407
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5408
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5409
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5410
def register_Ns3SimpleRefCount__Ns3RadvdPrefix_Ns3Empty_Ns3DefaultDeleter__lt__ns3RadvdPrefix__gt___methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5411
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter<ns3::RadvdPrefix> >::SimpleRefCount() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5412
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5413
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter<ns3::RadvdPrefix> >::SimpleRefCount(ns3::SimpleRefCount<ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter<ns3::RadvdPrefix> > const & o) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5414
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter< ns3::RadvdPrefix > > const &', 'o')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5415
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::RadvdPrefix, ns3::empty, ns3::DefaultDeleter<ns3::RadvdPrefix> >::Cleanup() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5416
    cls.add_method('Cleanup', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5417
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5418
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5419
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5420
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5421
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5422
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
  5423
    ## 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
  5424
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5425
    ## 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
  5426
    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
  5427
    ## 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
  5428
    cls.add_method('Cleanup', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5429
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5430
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5431
                   is_static=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5432
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5433
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5434
def register_Ns3Socket_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5435
    ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5436
    cls.add_constructor([param('ns3::Socket const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5437
    ## socket.h (module 'network'): ns3::Socket::Socket() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5438
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5439
    ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5440
    cls.add_method('Bind', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5441
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5442
                   [param('ns3::Address const &', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5443
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5444
    ## socket.h (module 'network'): int ns3::Socket::Bind() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5445
    cls.add_method('Bind', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5446
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5447
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5448
                   is_pure_virtual=True, is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5449
    ## 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
  5450
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5451
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5452
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5453
                   is_pure_virtual=True, is_virtual=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5454
    ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5455
    cls.add_method('BindToNetDevice', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5456
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5457
                   [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5458
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5459
    ## socket.h (module 'network'): int ns3::Socket::Close() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5460
    cls.add_method('Close', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5461
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5462
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5463
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5464
    ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5465
    cls.add_method('Connect', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5466
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5467
                   [param('ns3::Address const &', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5468
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5469
    ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5470
    cls.add_method('CreateSocket', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5471
                   'ns3::Ptr< ns3::Socket >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5472
                   [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5473
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5474
    ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5475
    cls.add_method('GetAllowBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5476
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5477
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5478
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5479
    ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5480
    cls.add_method('GetBoundNetDevice', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5481
                   'ns3::Ptr< ns3::NetDevice >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5482
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5483
    ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5484
    cls.add_method('GetErrno', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5485
                   'ns3::Socket::SocketErrno', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5486
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5487
                   is_pure_virtual=True, is_const=True, is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5488
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5489
    cls.add_method('GetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5490
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5491
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5492
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5493
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5494
    cls.add_method('GetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5495
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5496
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5497
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5498
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5499
    cls.add_method('GetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5500
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5501
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5502
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5503
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5504
    cls.add_method('GetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5505
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5506
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5507
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5508
    ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5509
    cls.add_method('GetNode', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5510
                   'ns3::Ptr< ns3::Node >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5511
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5512
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5513
    ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5514
    cls.add_method('GetRxAvailable', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5515
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5516
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5517
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5518
    ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5519
    cls.add_method('GetSockName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5520
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5521
                   [param('ns3::Address &', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5522
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5523
    ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5524
    cls.add_method('GetSocketType', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5525
                   'ns3::Socket::SocketType', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5526
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5527
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5528
    ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5529
    cls.add_method('GetTxAvailable', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5530
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5531
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5532
                   is_pure_virtual=True, is_const=True, is_virtual=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5533
    ## socket.h (module 'network'): static ns3::TypeId ns3::Socket::GetTypeId() [member function]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5534
    cls.add_method('GetTypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5535
                   'ns3::TypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5536
                   [], 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5537
                   is_static=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5538
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5539
    cls.add_method('IsIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5540
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5541
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5542
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5543
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5544
    cls.add_method('IsIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5545
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5546
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5547
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5548
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5549
    cls.add_method('IsIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5550
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5551
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5552
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5553
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5554
    cls.add_method('IsIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5555
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5556
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5557
                   is_const=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5558
    ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5559
    cls.add_method('IsRecvPktInfo', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5560
                   'bool', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5561
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5562
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5563
    ## socket.h (module 'network'): int ns3::Socket::Listen() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5564
    cls.add_method('Listen', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5565
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5566
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5567
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5568
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5569
    cls.add_method('Recv', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5570
                   'ns3::Ptr< ns3::Packet >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5571
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5572
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5573
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5574
    cls.add_method('Recv', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5575
                   'ns3::Ptr< ns3::Packet >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5576
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5577
    ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5578
    cls.add_method('Recv', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5579
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5580
                   [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5581
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5582
    cls.add_method('RecvFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5583
                   'ns3::Ptr< ns3::Packet >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5584
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5585
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5586
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5587
    cls.add_method('RecvFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5588
                   'ns3::Ptr< ns3::Packet >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5589
                   [param('ns3::Address &', 'fromAddress')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5590
    ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5591
    cls.add_method('RecvFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5592
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5593
                   [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5594
    ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5595
    cls.add_method('Send', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5596
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5597
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5598
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5599
    ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5600
    cls.add_method('Send', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5601
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5602
                   [param('ns3::Ptr< ns3::Packet >', 'p')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5603
    ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5604
    cls.add_method('Send', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5605
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5606
                   [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5607
    ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5608
    cls.add_method('SendTo', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5609
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5610
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5611
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5612
    ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5613
    cls.add_method('SendTo', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5614
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5615
                   [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5616
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5617
    cls.add_method('SetAcceptCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5618
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5619
                   [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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5620
    ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5621
    cls.add_method('SetAllowBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5622
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5623
                   [param('bool', 'allowBroadcast')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5624
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5625
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5626
    cls.add_method('SetCloseCallbacks', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5627
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5628
                   [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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5629
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5630
    cls.add_method('SetConnectCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5631
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5632
                   [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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5633
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5634
    cls.add_method('SetDataSentCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5635
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5636
                   [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')])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5637
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTos(bool ipv4RecvTos) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5638
    cls.add_method('SetIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5639
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5640
                   [param('bool', 'ipv4RecvTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5641
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTtl(bool ipv4RecvTtl) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5642
    cls.add_method('SetIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5643
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5644
                   [param('bool', 'ipv4RecvTtl')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5645
    ## socket.h (module 'network'): void ns3::Socket::SetIpTos(uint8_t ipTos) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5646
    cls.add_method('SetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5647
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5648
                   [param('uint8_t', 'ipTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5649
    ## socket.h (module 'network'): void ns3::Socket::SetIpTtl(uint8_t ipTtl) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5650
    cls.add_method('SetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5651
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5652
                   [param('uint8_t', 'ipTtl')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5653
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5654
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6HopLimit(uint8_t ipHopLimit) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5655
    cls.add_method('SetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5656
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5657
                   [param('uint8_t', 'ipHopLimit')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5658
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5659
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvHopLimit(bool ipv6RecvHopLimit) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5660
    cls.add_method('SetIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5661
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5662
                   [param('bool', 'ipv6RecvHopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5663
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvTclass(bool ipv6RecvTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5664
    cls.add_method('SetIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5665
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5666
                   [param('bool', 'ipv6RecvTclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5667
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6Tclass(int ipTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5668
    cls.add_method('SetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5669
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5670
                   [param('int', 'ipTclass')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5671
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5672
    cls.add_method('SetRecvCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5673
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5674
                   [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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5675
    ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5676
    cls.add_method('SetRecvPktInfo', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5677
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5678
                   [param('bool', 'flag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5679
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5680
    cls.add_method('SetSendCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5681
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5682
                   [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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5683
    ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5684
    cls.add_method('ShutdownRecv', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5685
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5686
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5687
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5688
    ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5689
    cls.add_method('ShutdownSend', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5690
                   'int', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5691
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5692
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5693
    ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5694
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5695
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5696
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5697
                   visibility='protected', is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5698
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5699
    cls.add_method('IsManualIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5700
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5701
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5702
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5703
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5704
    cls.add_method('IsManualIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5705
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5706
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5707
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5708
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5709
    cls.add_method('IsManualIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5710
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5711
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5712
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5713
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5714
    cls.add_method('IsManualIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5715
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5716
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5717
                   is_const=True, visibility='protected')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5718
    ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5719
    cls.add_method('NotifyConnectionFailed', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5720
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5721
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5722
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5723
    ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5724
    cls.add_method('NotifyConnectionRequest', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5725
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5726
                   [param('ns3::Address const &', 'from')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5727
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5728
    ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5729
    cls.add_method('NotifyConnectionSucceeded', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5730
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5731
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5732
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5733
    ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5734
    cls.add_method('NotifyDataRecv', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5735
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5736
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5737
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5738
    ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5739
    cls.add_method('NotifyDataSent', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5740
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5741
                   [param('uint32_t', 'size')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5742
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5743
    ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5744
    cls.add_method('NotifyErrorClose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5745
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5746
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5747
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5748
    ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5749
    cls.add_method('NotifyNewConnectionCreated', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5750
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5751
                   [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5752
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5753
    ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5754
    cls.add_method('NotifyNormalClose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5755
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5756
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5757
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5758
    ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5759
    cls.add_method('NotifySend', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5760
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5761
                   [param('uint32_t', 'spaceAvailable')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5762
                   visibility='protected')
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5763
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5764
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5765
def register_Ns3SocketAddressTag_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5766
    ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5767
    cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5768
    ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5769
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5770
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5771
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5772
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5773
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5774
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5775
    ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5776
    cls.add_method('GetAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5777
                   'ns3::Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5778
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5779
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5780
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5781
    cls.add_method('GetInstanceTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5782
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5783
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5784
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5785
    ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5786
    cls.add_method('GetSerializedSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5787
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5788
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5789
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5790
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5791
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5792
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5793
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5794
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5795
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5796
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5797
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5798
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5799
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5800
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5801
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5802
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5803
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5804
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5805
    ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5806
    cls.add_method('SetAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5807
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5808
                   [param('ns3::Address', 'addr')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5809
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5810
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5811
def register_Ns3SocketFactory_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5812
    ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory(ns3::SocketFactory const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5813
    cls.add_constructor([param('ns3::SocketFactory const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5814
    ## socket-factory.h (module 'network'): ns3::SocketFactory::SocketFactory() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5815
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5816
    ## socket-factory.h (module 'network'): ns3::Ptr<ns3::Socket> ns3::SocketFactory::CreateSocket() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5817
    cls.add_method('CreateSocket', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5818
                   'ns3::Ptr< ns3::Socket >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5819
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5820
                   is_pure_virtual=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5821
    ## socket-factory.h (module 'network'): static ns3::TypeId ns3::SocketFactory::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5822
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5823
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5824
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5825
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5826
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5827
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5828
def register_Ns3SocketIpTosTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5829
    ## socket.h (module 'network'): ns3::SocketIpTosTag::SocketIpTosTag(ns3::SocketIpTosTag const & arg0) [copy constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5830
    cls.add_constructor([param('ns3::SocketIpTosTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5831
    ## socket.h (module 'network'): ns3::SocketIpTosTag::SocketIpTosTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5832
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5833
    ## socket.h (module 'network'): void ns3::SocketIpTosTag::Deserialize(ns3::TagBuffer i) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5834
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5835
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5836
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5837
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5838
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTosTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5839
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5840
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5841
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5842
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5843
    ## socket.h (module 'network'): uint32_t ns3::SocketIpTosTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5844
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5845
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5846
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5847
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5848
    ## socket.h (module 'network'): uint8_t ns3::SocketIpTosTag::GetTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5849
    cls.add_method('GetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5850
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5851
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5852
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5853
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTosTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5854
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5855
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5856
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5857
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5858
    ## socket.h (module 'network'): void ns3::SocketIpTosTag::Print(std::ostream & os) const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5859
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5860
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5861
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5862
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5863
    ## socket.h (module 'network'): void ns3::SocketIpTosTag::Serialize(ns3::TagBuffer i) const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5864
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5865
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5866
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5867
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5868
    ## socket.h (module 'network'): void ns3::SocketIpTosTag::SetTos(uint8_t tos) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5869
    cls.add_method('SetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5870
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5871
                   [param('uint8_t', 'tos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5872
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5873
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5874
def register_Ns3SocketIpTtlTag_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5875
    ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5876
    cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5877
    ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5878
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5879
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5880
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5881
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5882
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5883
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5884
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5885
    cls.add_method('GetInstanceTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5886
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5887
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5888
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5889
    ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5890
    cls.add_method('GetSerializedSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5891
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5892
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5893
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5894
    ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5895
    cls.add_method('GetTtl', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5896
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5897
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5898
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5899
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5900
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5901
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5902
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5903
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5904
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5905
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5906
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5907
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5908
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5909
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5910
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5911
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5912
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5913
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5914
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5915
    cls.add_method('SetTtl', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5916
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5917
                   [param('uint8_t', 'ttl')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5918
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5919
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5920
def register_Ns3SocketIpv6HopLimitTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5921
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag::SocketIpv6HopLimitTag(ns3::SocketIpv6HopLimitTag const & arg0) [copy constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5922
    cls.add_constructor([param('ns3::SocketIpv6HopLimitTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5923
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag::SocketIpv6HopLimitTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5924
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5925
    ## socket.h (module 'network'): void ns3::SocketIpv6HopLimitTag::Deserialize(ns3::TagBuffer i) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5926
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5927
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5928
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5929
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5930
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6HopLimitTag::GetHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5931
    cls.add_method('GetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5932
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5933
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5934
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5935
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6HopLimitTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5936
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5937
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5938
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5939
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5940
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6HopLimitTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5941
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5942
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5943
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5944
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5945
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6HopLimitTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5946
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5947
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5948
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5949
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5950
    ## socket.h (module 'network'): void ns3::SocketIpv6HopLimitTag::Print(std::ostream & os) const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5951
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5952
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5953
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5954
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5955
    ## socket.h (module 'network'): void ns3::SocketIpv6HopLimitTag::Serialize(ns3::TagBuffer i) const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5956
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5957
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5958
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5959
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5960
    ## socket.h (module 'network'): void ns3::SocketIpv6HopLimitTag::SetHopLimit(uint8_t hopLimit) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5961
    cls.add_method('SetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5962
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5963
                   [param('uint8_t', 'hopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5964
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5965
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5966
def register_Ns3SocketIpv6TclassTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5967
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag::SocketIpv6TclassTag(ns3::SocketIpv6TclassTag const & arg0) [copy constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5968
    cls.add_constructor([param('ns3::SocketIpv6TclassTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5969
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag::SocketIpv6TclassTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5970
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5971
    ## socket.h (module 'network'): void ns3::SocketIpv6TclassTag::Deserialize(ns3::TagBuffer i) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5972
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5973
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5974
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5975
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5976
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6TclassTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5977
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5978
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5979
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5980
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5981
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6TclassTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5982
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5983
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5984
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5985
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5986
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6TclassTag::GetTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5987
    cls.add_method('GetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5988
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5989
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5990
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5991
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6TclassTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5992
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5993
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5994
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5995
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5996
    ## socket.h (module 'network'): void ns3::SocketIpv6TclassTag::Print(std::ostream & os) const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5997
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5998
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5999
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6000
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6001
    ## socket.h (module 'network'): void ns3::SocketIpv6TclassTag::Serialize(ns3::TagBuffer i) const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6002
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6003
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6004
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6005
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6006
    ## socket.h (module 'network'): void ns3::SocketIpv6TclassTag::SetTclass(uint8_t tclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6007
    cls.add_method('SetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6008
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6009
                   [param('uint8_t', 'tclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6010
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  6011
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6012
def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6013
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6014
    cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6015
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6016
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6017
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6018
    cls.add_method('Deserialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6019
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6020
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6021
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6022
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6023
    cls.add_method('Disable', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6024
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6025
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6026
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6027
    cls.add_method('Enable', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6028
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6029
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6030
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6031
    cls.add_method('GetInstanceTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6032
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6033
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6034
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6035
    ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6036
    cls.add_method('GetSerializedSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6037
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6038
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6039
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6040
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6041
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6042
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6043
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6044
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6045
    ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6046
    cls.add_method('IsEnabled', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6047
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6048
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6049
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6050
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6051
    cls.add_method('Print', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6052
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6053
                   [param('std::ostream &', 'os')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6054
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6055
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6056
    cls.add_method('Serialize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6057
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6058
                   [param('ns3::TagBuffer', 'i')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6059
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6060
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6061
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6062
def register_Ns3Time_methods(root_module, cls):
11114
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  6063
    cls.add_binary_comparison_operator('<=')
7090
7134392efe70 Bug 1105 Move topology helpers into separate per-device modules
John Abraham<john.abraham@gatech.edu>
parents: 7055
diff changeset
  6064
    cls.add_binary_comparison_operator('!=')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  6065
    cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  6066
    cls.add_binary_numeric_operator('*', root_module['ns3::Time'], root_module['ns3::Time'], param('int64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  6067
    cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  6068
    cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  6069
    cls.add_binary_numeric_operator('/', root_module['ns3::Time'], root_module['ns3::Time'], param('int64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6070
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6071
    cls.add_binary_comparison_operator('>')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  6072
    cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6073
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6074
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6075
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6076
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6077
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6078
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6079
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6080
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6081
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6082
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6083
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6084
    ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6085
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6086
    ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6087
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6088
    ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6089
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6090
    ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6091
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6092
    ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6093
    cls.add_constructor([param('long long unsigned int', 'v')])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6094
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & v) [constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6095
    cls.add_constructor([param('ns3::int64x64_t const &', 'v')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6096
    ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6097
    cls.add_constructor([param('std::string const &', 's')])
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  6098
    ## nstime.h (module 'core'): ns3::TimeWithUnit ns3::Time::As(ns3::Time::Unit const unit) const [member function]
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  6099
    cls.add_method('As', 
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  6100
                   'ns3::TimeWithUnit', 
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  6101
                   [param('ns3::Time::Unit const', 'unit')], 
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  6102
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6103
    ## 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: 6983
diff changeset
  6104
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6105
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6106
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6107
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6108
    ## 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: 6983
diff changeset
  6109
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6110
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6111
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6112
                   is_static=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6113
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value, ns3::Time::Unit unit) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6114
    cls.add_method('From', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6115
                   'ns3::Time', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6116
                   [param('ns3::int64x64_t const &', 'value'), param('ns3::Time::Unit', 'unit')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6117
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6118
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit unit) [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6119
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6120
                   'ns3::Time', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6121
                   [param('double', 'value'), param('ns3::Time::Unit', 'unit')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6122
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6123
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit unit) [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6124
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6125
                   'ns3::Time', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6126
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'unit')], 
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6127
                   is_static=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6128
    ## nstime.h (module 'core'): double ns3::Time::GetDays() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6129
    cls.add_method('GetDays', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6130
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6131
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6132
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6133
    ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6134
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6135
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6136
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6137
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6138
    ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6139
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6140
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6141
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6142
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6143
    ## nstime.h (module 'core'): double ns3::Time::GetHours() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6144
    cls.add_method('GetHours', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6145
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6146
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6147
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6148
    ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6149
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6150
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6151
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6152
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6153
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6154
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6155
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6156
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6157
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6158
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6159
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6160
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6161
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6162
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6163
    ## nstime.h (module 'core'): double ns3::Time::GetMinutes() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6164
    cls.add_method('GetMinutes', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6165
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6166
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6167
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6168
    ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6169
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6170
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6171
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6172
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6173
    ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6174
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6175
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6176
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6177
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6178
    ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6179
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6180
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6181
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6182
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6183
    ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6184
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6185
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6186
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6187
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6188
    ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6189
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6190
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6191
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6192
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6193
    ## nstime.h (module 'core'): double ns3::Time::GetYears() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6194
    cls.add_method('GetYears', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6195
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6196
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6197
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6198
    ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6199
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6200
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6201
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6202
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6203
    ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6204
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6205
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6206
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6207
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6208
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6209
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6210
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6211
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6212
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6213
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6214
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6215
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6216
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6217
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6218
    ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6219
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6220
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6221
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6222
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6223
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::Max() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6224
    cls.add_method('Max', 
9901
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6225
                   'ns3::Time', 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6226
                   [], 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6227
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6228
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::Min() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6229
    cls.add_method('Min', 
9901
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6230
                   'ns3::Time', 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6231
                   [], 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6232
                   is_static=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6233
    ## 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: 6983
diff changeset
  6234
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6235
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6236
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6237
                   is_static=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6238
    ## nstime.h (module 'core'): static bool ns3::Time::StaticInit() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6239
    cls.add_method('StaticInit', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6240
                   'bool', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6241
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6242
                   is_static=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6243
    ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit unit) const [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6244
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6245
                   'ns3::int64x64_t', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6246
                   [param('ns3::Time::Unit', 'unit')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6247
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6248
    ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit unit) const [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6249
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6250
                   'double', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6251
                   [param('ns3::Time::Unit', 'unit')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6252
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6253
    ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit unit) const [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6254
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6255
                   'int64_t', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6256
                   [param('ns3::Time::Unit', 'unit')], 
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6257
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6258
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6259
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6260
def register_Ns3TraceSourceAccessor_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6261
    ## 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
  6262
    cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6263
    ## 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
  6264
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6265
    ## 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
  6266
    cls.add_method('Connect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6267
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6268
                   [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
  6269
                   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
  6270
    ## 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
  6271
    cls.add_method('ConnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6272
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6273
                   [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
  6274
                   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
  6275
    ## 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
  6276
    cls.add_method('Disconnect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6277
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6278
                   [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
  6279
                   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
  6280
    ## 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
  6281
    cls.add_method('DisconnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6282
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6283
                   [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
  6284
                   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
  6285
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6286
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6287
def register_Ns3Trailer_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6288
    cls.add_output_stream_operator()
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6289
    ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6290
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6291
    ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6292
    cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6293
    ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6294
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6295
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6296
                   [param('ns3::Buffer::Iterator', 'end')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6297
                   is_pure_virtual=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6298
    ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6299
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6300
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6301
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6302
                   is_pure_virtual=True, is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6303
    ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6304
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6305
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6306
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6307
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6308
    ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6309
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6310
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6311
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6312
                   is_pure_virtual=True, is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6313
    ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6314
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6315
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6316
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6317
                   is_pure_virtual=True, is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6318
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6319
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6320
def register_Ns3TriangularRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6321
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::TriangularRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6322
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6323
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6324
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6325
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6326
    ## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable::TriangularRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6327
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6328
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMean() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6329
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6330
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6331
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6332
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6333
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMin() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6334
    cls.add_method('GetMin', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6335
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6336
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6337
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6338
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMax() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6339
    cls.add_method('GetMax', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6340
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6341
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6342
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6343
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue(double mean, double min, double max) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6344
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6345
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6346
                   [param('double', 'mean'), param('double', 'min'), param('double', 'max')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6347
    ## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger(uint32_t mean, uint32_t min, uint32_t max) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6348
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6349
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6350
                   [param('uint32_t', 'mean'), param('uint32_t', 'min'), param('uint32_t', 'max')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6351
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6352
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6353
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6354
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6355
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6356
    ## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6357
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6358
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6359
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6360
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6361
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6362
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6363
def register_Ns3UniformRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6364
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::UniformRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6365
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6366
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6367
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6368
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6369
    ## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable::UniformRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6370
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6371
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMin() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6372
    cls.add_method('GetMin', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6373
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6374
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6375
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6376
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMax() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6377
    cls.add_method('GetMax', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6378
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6379
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6380
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6381
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue(double min, double max) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6382
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6383
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6384
                   [param('double', 'min'), param('double', 'max')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6385
    ## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger(uint32_t min, uint32_t max) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6386
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6387
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6388
                   [param('uint32_t', 'min'), param('uint32_t', 'max')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6389
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6390
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6391
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6392
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6393
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6394
    ## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6395
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6396
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6397
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6398
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6399
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6400
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6401
def register_Ns3WeibullRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6402
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::WeibullRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6403
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6404
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6405
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6406
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6407
    ## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable::WeibullRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6408
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6409
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetScale() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6410
    cls.add_method('GetScale', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6411
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6412
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6413
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6414
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetShape() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6415
    cls.add_method('GetShape', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6416
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6417
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6418
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6419
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetBound() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6420
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6421
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6422
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6423
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6424
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue(double scale, double shape, double bound) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6425
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6426
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6427
                   [param('double', 'scale'), param('double', 'shape'), param('double', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6428
    ## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger(uint32_t scale, uint32_t shape, uint32_t bound) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6429
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6430
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6431
                   [param('uint32_t', 'scale'), param('uint32_t', 'shape'), param('uint32_t', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6432
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6433
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6434
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6435
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6436
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6437
    ## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6438
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6439
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6440
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6441
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6442
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6443
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6444
def register_Ns3ZetaRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6445
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZetaRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6446
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6447
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6448
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6449
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6450
    ## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable::ZetaRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6451
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6452
    ## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetAlpha() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6453
    cls.add_method('GetAlpha', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6454
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6455
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6456
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6457
    ## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue(double alpha) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6458
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6459
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6460
                   [param('double', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6461
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger(uint32_t alpha) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6462
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6463
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6464
                   [param('uint32_t', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6465
    ## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6466
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6467
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6468
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6469
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6470
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6471
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6472
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6473
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6474
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6475
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6476
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6477
def register_Ns3ZipfRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6478
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZipfRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6479
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6480
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6481
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6482
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6483
    ## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable::ZipfRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6484
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6485
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetN() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6486
    cls.add_method('GetN', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6487
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6488
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6489
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6490
    ## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetAlpha() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6491
    cls.add_method('GetAlpha', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6492
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6493
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6494
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6495
    ## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue(uint32_t n, double alpha) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6496
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6497
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6498
                   [param('uint32_t', 'n'), param('double', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6499
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger(uint32_t n, uint32_t alpha) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6500
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6501
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6502
                   [param('uint32_t', 'n'), param('uint32_t', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6503
    ## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6504
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6505
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6506
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6507
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6508
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6509
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6510
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6511
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6512
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6513
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6514
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6515
def register_Ns3Application_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6516
    ## application.h (module 'network'): ns3::Application::Application(ns3::Application const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6517
    cls.add_constructor([param('ns3::Application const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6518
    ## application.h (module 'network'): ns3::Application::Application() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6519
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6520
    ## application.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Application::GetNode() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6521
    cls.add_method('GetNode', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6522
                   'ns3::Ptr< ns3::Node >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6523
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6524
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6525
    ## application.h (module 'network'): static ns3::TypeId ns3::Application::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6526
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6527
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6528
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6529
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6530
    ## application.h (module 'network'): void ns3::Application::SetNode(ns3::Ptr<ns3::Node> node) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6531
    cls.add_method('SetNode', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6532
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6533
                   [param('ns3::Ptr< ns3::Node >', 'node')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6534
    ## application.h (module 'network'): void ns3::Application::SetStartTime(ns3::Time start) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6535
    cls.add_method('SetStartTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6536
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6537
                   [param('ns3::Time', 'start')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6538
    ## application.h (module 'network'): void ns3::Application::SetStopTime(ns3::Time stop) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6539
    cls.add_method('SetStopTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6540
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6541
                   [param('ns3::Time', 'stop')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6542
    ## application.h (module 'network'): void ns3::Application::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6543
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6544
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6545
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6546
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  6547
    ## application.h (module 'network'): void ns3::Application::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  6548
    cls.add_method('DoInitialize', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6549
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6550
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6551
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6552
    ## application.h (module 'network'): void ns3::Application::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6553
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6554
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6555
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6556
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6557
    ## application.h (module 'network'): void ns3::Application::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6558
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6559
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6560
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6561
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6562
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6563
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6564
def register_Ns3AttributeAccessor_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6565
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6566
    cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6567
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6568
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6569
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6570
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6571
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6572
                   [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6573
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6574
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6575
    cls.add_method('HasGetter', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6576
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6577
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6578
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6579
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6580
    cls.add_method('HasSetter', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6581
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6582
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6583
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6584
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6585
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6586
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6587
                   [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6588
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6589
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6590
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6591
def register_Ns3AttributeChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6592
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6593
    cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6594
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6595
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6596
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6597
    cls.add_method('Check', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6598
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6599
                   [param('ns3::AttributeValue const &', 'value')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6600
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6601
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6602
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6603
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6604
                   [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6605
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6606
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6607
    cls.add_method('Create', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6608
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6609
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6610
                   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
  6611
    ## 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
  6612
    cls.add_method('CreateValidValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6613
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6614
                   [param('ns3::AttributeValue const &', 'value')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6615
                   is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6616
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6617
    cls.add_method('GetUnderlyingTypeInformation', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6618
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6619
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6620
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6621
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6622
    cls.add_method('GetValueTypeName', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6623
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6624
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6625
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6626
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6627
    cls.add_method('HasUnderlyingTypeInformation', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6628
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6629
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6630
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6631
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6632
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6633
def register_Ns3AttributeValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6634
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6635
    cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6636
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6637
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6638
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6639
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6640
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6641
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6642
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6643
    ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6644
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6645
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6646
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6647
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6648
    ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6649
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6650
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6651
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6652
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6653
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6654
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6655
def register_Ns3BooleanChecker_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6656
    ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6657
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6658
    ## 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
  6659
    cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6660
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6661
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6662
def register_Ns3BooleanValue_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6663
    cls.add_output_stream_operator()
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6664
    ## 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
  6665
    cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6666
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6667
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6668
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6669
    cls.add_constructor([param('bool', 'value')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6670
    ## 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
  6671
    cls.add_method('Copy', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6672
                   'ns3::Ptr< ns3::AttributeValue >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6673
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6674
                   is_const=True, is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6675
    ## 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
  6676
    cls.add_method('DeserializeFromString', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6677
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6678
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6679
                   is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6680
    ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6681
    cls.add_method('Get', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6682
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6683
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6684
                   is_const=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6685
    ## 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
  6686
    cls.add_method('SerializeToString', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6687
                   'std::string', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6688
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6689
                   is_const=True, is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6690
    ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6691
    cls.add_method('Set', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6692
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6693
                   [param('bool', 'value')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6694
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6695
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6696
def register_Ns3BulkSendApplication_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6697
    ## bulk-send-application.h (module 'applications'): ns3::BulkSendApplication::BulkSendApplication(ns3::BulkSendApplication const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6698
    cls.add_constructor([param('ns3::BulkSendApplication const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6699
    ## bulk-send-application.h (module 'applications'): ns3::BulkSendApplication::BulkSendApplication() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6700
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6701
    ## bulk-send-application.h (module 'applications'): ns3::Ptr<ns3::Socket> ns3::BulkSendApplication::GetSocket() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6702
    cls.add_method('GetSocket', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6703
                   'ns3::Ptr< ns3::Socket >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6704
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6705
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6706
    ## bulk-send-application.h (module 'applications'): static ns3::TypeId ns3::BulkSendApplication::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6707
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6708
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6709
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6710
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6711
    ## bulk-send-application.h (module 'applications'): void ns3::BulkSendApplication::SetMaxBytes(uint32_t maxBytes) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6712
    cls.add_method('SetMaxBytes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6713
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6714
                   [param('uint32_t', 'maxBytes')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6715
    ## bulk-send-application.h (module 'applications'): void ns3::BulkSendApplication::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6716
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6717
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6718
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6719
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6720
    ## bulk-send-application.h (module 'applications'): void ns3::BulkSendApplication::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6721
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6722
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6723
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6724
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6725
    ## bulk-send-application.h (module 'applications'): void ns3::BulkSendApplication::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6726
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6727
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6728
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6729
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6730
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6731
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6732
def register_Ns3CallbackChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6733
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6734
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6735
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6736
    cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6737
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6738
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6739
def register_Ns3CallbackImplBase_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6740
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6741
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6742
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6743
    cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6744
    ## callback.h (module 'core'): std::string ns3::CallbackImplBase::GetTypeid() const [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6745
    cls.add_method('GetTypeid', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6746
                   'std::string', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6747
                   [], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6748
                   is_pure_virtual=True, is_const=True, is_virtual=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6749
    ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6750
    cls.add_method('IsEqual', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6751
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6752
                   [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6753
                   is_pure_virtual=True, is_const=True, is_virtual=True)
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6754
    ## callback.h (module 'core'): static std::string ns3::CallbackImplBase::Demangle(std::string const & mangled) [member function]
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6755
    cls.add_method('Demangle', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6756
                   'std::string', 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6757
                   [param('std::string const &', 'mangled')], 
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
  6758
                   is_static=True, visibility='protected')
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6759
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6760
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6761
def register_Ns3CallbackValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6762
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6763
    cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6764
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6765
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6766
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6767
    cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6768
    ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6769
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6770
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6771
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6772
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6773
    ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6774
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6775
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6776
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6777
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6778
    ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6779
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6780
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6781
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6782
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6783
    ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6784
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6785
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6786
                   [param('ns3::CallbackBase', 'base')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6787
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6788
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6789
def register_Ns3Channel_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6790
    ## channel.h (module 'network'): ns3::Channel::Channel(ns3::Channel const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6791
    cls.add_constructor([param('ns3::Channel const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6792
    ## channel.h (module 'network'): ns3::Channel::Channel() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6793
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6794
    ## channel.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Channel::GetDevice(uint32_t i) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6795
    cls.add_method('GetDevice', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6796
                   'ns3::Ptr< ns3::NetDevice >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6797
                   [param('uint32_t', 'i')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6798
                   is_pure_virtual=True, is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6799
    ## channel.h (module 'network'): uint32_t ns3::Channel::GetId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6800
    cls.add_method('GetId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6801
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6802
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6803
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6804
    ## channel.h (module 'network'): uint32_t ns3::Channel::GetNDevices() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6805
    cls.add_method('GetNDevices', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6806
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6807
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6808
                   is_pure_virtual=True, is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6809
    ## channel.h (module 'network'): static ns3::TypeId ns3::Channel::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6810
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6811
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6812
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6813
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6814
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6815
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6816
def register_Ns3ConstantRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6817
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ConstantRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6818
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6819
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6820
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6821
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6822
    ## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable::ConstantRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6823
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6824
    ## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetConstant() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6825
    cls.add_method('GetConstant', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6826
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6827
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6828
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6829
    ## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue(double constant) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6830
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6831
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6832
                   [param('double', 'constant')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6833
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger(uint32_t constant) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6834
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6835
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6836
                   [param('uint32_t', 'constant')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6837
    ## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6838
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6839
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6840
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6841
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6842
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6843
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6844
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6845
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6846
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6847
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6848
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6849
def register_Ns3DataCalculator_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6850
    ## data-calculator.h (module 'stats'): ns3::DataCalculator::DataCalculator(ns3::DataCalculator const & arg0) [copy constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6851
    cls.add_constructor([param('ns3::DataCalculator const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6852
    ## data-calculator.h (module 'stats'): ns3::DataCalculator::DataCalculator() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6853
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6854
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::Disable() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6855
    cls.add_method('Disable', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6856
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6857
                   [])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6858
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::Enable() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6859
    cls.add_method('Enable', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6860
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6861
                   [])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6862
    ## data-calculator.h (module 'stats'): std::string ns3::DataCalculator::GetContext() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6863
    cls.add_method('GetContext', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6864
                   'std::string', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6865
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6866
                   is_const=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6867
    ## data-calculator.h (module 'stats'): bool ns3::DataCalculator::GetEnabled() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6868
    cls.add_method('GetEnabled', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6869
                   'bool', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6870
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6871
                   is_const=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6872
    ## data-calculator.h (module 'stats'): std::string ns3::DataCalculator::GetKey() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6873
    cls.add_method('GetKey', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6874
                   'std::string', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6875
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6876
                   is_const=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6877
    ## data-calculator.h (module 'stats'): static ns3::TypeId ns3::DataCalculator::GetTypeId() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6878
    cls.add_method('GetTypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6879
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6880
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6881
                   is_static=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6882
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::Output(ns3::DataOutputCallback & callback) const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6883
    cls.add_method('Output', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6884
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6885
                   [param('ns3::DataOutputCallback &', 'callback')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6886
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6887
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::SetContext(std::string const context) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6888
    cls.add_method('SetContext', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6889
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6890
                   [param('std::string const', 'context')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6891
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::SetKey(std::string const key) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6892
    cls.add_method('SetKey', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6893
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6894
                   [param('std::string const', 'key')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6895
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::Start(ns3::Time const & startTime) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6896
    cls.add_method('Start', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6897
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6898
                   [param('ns3::Time const &', 'startTime')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6899
                   is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6900
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::Stop(ns3::Time const & stopTime) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6901
    cls.add_method('Stop', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6902
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6903
                   [param('ns3::Time const &', 'stopTime')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6904
                   is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6905
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::DoDispose() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6906
    cls.add_method('DoDispose', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6907
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6908
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6909
                   visibility='protected', is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6910
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6911
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6912
def register_Ns3DataCollectionObject_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6913
    ## data-collection-object.h (module 'stats'): ns3::DataCollectionObject::DataCollectionObject(ns3::DataCollectionObject const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6914
    cls.add_constructor([param('ns3::DataCollectionObject const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6915
    ## data-collection-object.h (module 'stats'): ns3::DataCollectionObject::DataCollectionObject() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6916
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6917
    ## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::Disable() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6918
    cls.add_method('Disable', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6919
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6920
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6921
    ## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::Enable() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6922
    cls.add_method('Enable', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6923
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6924
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6925
    ## data-collection-object.h (module 'stats'): std::string ns3::DataCollectionObject::GetName() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6926
    cls.add_method('GetName', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6927
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6928
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6929
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6930
    ## data-collection-object.h (module 'stats'): static ns3::TypeId ns3::DataCollectionObject::GetTypeId() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6931
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6932
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6933
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6934
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6935
    ## data-collection-object.h (module 'stats'): bool ns3::DataCollectionObject::IsEnabled() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6936
    cls.add_method('IsEnabled', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6937
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6938
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6939
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6940
    ## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::SetName(std::string name) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6941
    cls.add_method('SetName', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6942
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6943
                   [param('std::string', 'name')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6944
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6945
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6946
def register_Ns3DataOutputInterface_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6947
    ## data-output-interface.h (module 'stats'): ns3::DataOutputInterface::DataOutputInterface(ns3::DataOutputInterface const & arg0) [copy constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6948
    cls.add_constructor([param('ns3::DataOutputInterface const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6949
    ## data-output-interface.h (module 'stats'): ns3::DataOutputInterface::DataOutputInterface() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6950
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6951
    ## data-output-interface.h (module 'stats'): std::string ns3::DataOutputInterface::GetFilePrefix() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6952
    cls.add_method('GetFilePrefix', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6953
                   'std::string', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6954
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6955
                   is_const=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6956
    ## data-output-interface.h (module 'stats'): static ns3::TypeId ns3::DataOutputInterface::GetTypeId() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6957
    cls.add_method('GetTypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6958
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6959
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  6960
                   is_static=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6961
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputInterface::Output(ns3::DataCollector & dc) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6962
    cls.add_method('Output', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6963
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6964
                   [param('ns3::DataCollector &', 'dc')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6965
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6966
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputInterface::SetFilePrefix(std::string const prefix) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6967
    cls.add_method('SetFilePrefix', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6968
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6969
                   [param('std::string const', 'prefix')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6970
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputInterface::DoDispose() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6971
    cls.add_method('DoDispose', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6972
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6973
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6974
                   visibility='protected', is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6975
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6976
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6977
def register_Ns3DataRateChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6978
    ## data-rate.h (module 'network'): ns3::DataRateChecker::DataRateChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6979
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6980
    ## data-rate.h (module 'network'): ns3::DataRateChecker::DataRateChecker(ns3::DataRateChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6981
    cls.add_constructor([param('ns3::DataRateChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6982
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6983
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6984
def register_Ns3DataRateValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6985
    ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6986
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6987
    ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue(ns3::DataRateValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6988
    cls.add_constructor([param('ns3::DataRateValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6989
    ## data-rate.h (module 'network'): ns3::DataRateValue::DataRateValue(ns3::DataRate const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6990
    cls.add_constructor([param('ns3::DataRate const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6991
    ## data-rate.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::DataRateValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6992
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6993
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6994
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6995
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6996
    ## data-rate.h (module 'network'): bool ns3::DataRateValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6997
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6998
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6999
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7000
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7001
    ## data-rate.h (module 'network'): ns3::DataRate ns3::DataRateValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7002
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7003
                   'ns3::DataRate', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7004
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7005
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7006
    ## data-rate.h (module 'network'): std::string ns3::DataRateValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7007
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7008
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7009
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7010
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7011
    ## data-rate.h (module 'network'): void ns3::DataRateValue::Set(ns3::DataRate const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7012
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7013
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7014
                   [param('ns3::DataRate const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7015
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7016
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7017
def register_Ns3DeterministicRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7018
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::DeterministicRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7019
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7020
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7021
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7022
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7023
    ## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable::DeterministicRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7024
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7025
    ## random-variable-stream.h (module 'core'): void ns3::DeterministicRandomVariable::SetValueArray(double * values, uint64_t length) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7026
    cls.add_method('SetValueArray', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7027
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7028
                   [param('double *', 'values'), param('uint64_t', 'length')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7029
    ## random-variable-stream.h (module 'core'): double ns3::DeterministicRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7030
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7031
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7032
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7033
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7034
    ## random-variable-stream.h (module 'core'): uint32_t ns3::DeterministicRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7035
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7036
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7037
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7038
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7039
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7040
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7041
def register_Ns3DoubleValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7042
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7043
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7044
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(ns3::DoubleValue const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7045
    cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7046
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7047
    cls.add_constructor([param('double const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7048
    ## double.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::DoubleValue::Copy() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7049
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7050
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7051
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7052
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7053
    ## double.h (module 'core'): bool ns3::DoubleValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7054
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7055
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7056
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7057
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7058
    ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7059
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7060
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7061
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7062
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7063
    ## double.h (module 'core'): std::string ns3::DoubleValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7064
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7065
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7066
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7067
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7068
    ## double.h (module 'core'): void ns3::DoubleValue::Set(double const & value) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7069
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7070
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7071
                   [param('double const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7072
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7073
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7074
def register_Ns3DropTailQueue_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7075
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::DropTailQueue(ns3::DropTailQueue const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7076
    cls.add_constructor([param('ns3::DropTailQueue const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7077
    ## drop-tail-queue.h (module 'network'): ns3::DropTailQueue::DropTailQueue() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7078
    cls.add_constructor([])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7079
    ## drop-tail-queue.h (module 'network'): ns3::Queue::QueueMode ns3::DropTailQueue::GetMode() const [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7080
    cls.add_method('GetMode', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  7081
                   'ns3::Queue::QueueMode', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7082
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7083
                   is_const=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7084
    ## drop-tail-queue.h (module 'network'): static ns3::TypeId ns3::DropTailQueue::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7085
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7086
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7087
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7088
                   is_static=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  7089
    ## drop-tail-queue.h (module 'network'): void ns3::DropTailQueue::SetMode(ns3::Queue::QueueMode mode) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7090
    cls.add_method('SetMode', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7091
                   'void', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  7092
                   [param('ns3::Queue::QueueMode', 'mode')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7093
    ## drop-tail-queue.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::DropTailQueue::DoDequeue() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7094
    cls.add_method('DoDequeue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7095
                   'ns3::Ptr< ns3::Packet >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7096
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7097
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7098
    ## drop-tail-queue.h (module 'network'): bool ns3::DropTailQueue::DoEnqueue(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7099
    cls.add_method('DoEnqueue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7100
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7101
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7102
                   visibility='private', is_virtual=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7103
    ## drop-tail-queue.h (module 'network'): ns3::Ptr<ns3::Packet const> ns3::DropTailQueue::DoPeek() const [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7104
    cls.add_method('DoPeek', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7105
                   'ns3::Ptr< ns3::Packet const >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7106
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7107
                   is_const=True, visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7108
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7109
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7110
def register_Ns3EmpiricalRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7111
    ## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable::EmpiricalRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7112
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7113
    ## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::CDF(double v, double c) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7114
    cls.add_method('CDF', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7115
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7116
                   [param('double', 'v'), param('double', 'c')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7117
    ## random-variable-stream.h (module 'core'): uint32_t ns3::EmpiricalRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7118
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7119
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7120
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7121
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7122
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::EmpiricalRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7123
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7124
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7125
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7126
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7127
    ## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7128
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7129
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7130
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7131
                   is_virtual=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7132
    ## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::Interpolate(double c1, double c2, double v1, double v2, double r) [member function]
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7133
    cls.add_method('Interpolate', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7134
                   'double', 
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7135
                   [param('double', 'c1'), param('double', 'c2'), param('double', 'v1'), param('double', 'v2'), param('double', 'r')], 
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7136
                   visibility='private', is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7137
    ## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::Validate() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7138
    cls.add_method('Validate', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7139
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7140
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7141
                   visibility='private', is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7142
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7143
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7144
def register_Ns3EmptyAttributeValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7145
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7146
    cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7147
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7148
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7149
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7150
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7151
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7152
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7153
                   is_const=True, visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7154
    ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7155
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7156
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7157
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7158
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7159
    ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7160
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7161
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7162
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7163
                   is_const=True, visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7164
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7165
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7166
def register_Ns3EnumChecker_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7167
    ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker(ns3::EnumChecker const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7168
    cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7169
    ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7170
    cls.add_constructor([])
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7171
    ## enum.h (module 'core'): void ns3::EnumChecker::Add(int value, std::string name) [member function]
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7172
    cls.add_method('Add', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7173
                   'void', 
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7174
                   [param('int', 'value'), param('std::string', 'name')])
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7175
    ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int value, std::string name) [member function]
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7176
    cls.add_method('AddDefault', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7177
                   'void', 
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7178
                   [param('int', 'value'), param('std::string', 'name')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7179
    ## enum.h (module 'core'): bool ns3::EnumChecker::Check(ns3::AttributeValue const & value) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7180
    cls.add_method('Check', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7181
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7182
                   [param('ns3::AttributeValue const &', 'value')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7183
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7184
    ## enum.h (module 'core'): bool ns3::EnumChecker::Copy(ns3::AttributeValue const & src, ns3::AttributeValue & dst) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7185
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7186
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7187
                   [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7188
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7189
    ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumChecker::Create() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7190
    cls.add_method('Create', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7191
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7192
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7193
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7194
    ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7195
    cls.add_method('GetUnderlyingTypeInformation', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7196
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7197
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7198
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7199
    ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7200
    cls.add_method('GetValueTypeName', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7201
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7202
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7203
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7204
    ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7205
    cls.add_method('HasUnderlyingTypeInformation', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7206
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7207
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7208
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7209
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7210
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7211
def register_Ns3EnumValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7212
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue(ns3::EnumValue const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7213
    cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7214
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7215
    cls.add_constructor([])
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7216
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int value) [constructor]
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7217
    cls.add_constructor([param('int', 'value')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7218
    ## enum.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EnumValue::Copy() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7219
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7220
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7221
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7222
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7223
    ## enum.h (module 'core'): bool ns3::EnumValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7224
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7225
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7226
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7227
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7228
    ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7229
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7230
                   'int', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7231
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7232
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7233
    ## enum.h (module 'core'): std::string ns3::EnumValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7234
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7235
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7236
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7237
                   is_const=True, is_virtual=True)
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7238
    ## enum.h (module 'core'): void ns3::EnumValue::Set(int value) [member function]
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7239
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7240
                   'void', 
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
  7241
                   [param('int', 'value')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7242
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7243
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7244
def register_Ns3ErlangRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7245
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ErlangRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7246
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7247
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7248
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7249
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7250
    ## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable::ErlangRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7251
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7252
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetK() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7253
    cls.add_method('GetK', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7254
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7255
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7256
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7257
    ## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetLambda() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7258
    cls.add_method('GetLambda', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7259
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7260
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7261
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7262
    ## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue(uint32_t k, double lambda) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7263
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7264
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7265
                   [param('uint32_t', 'k'), param('double', 'lambda')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7266
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger(uint32_t k, uint32_t lambda) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7267
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7268
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7269
                   [param('uint32_t', 'k'), param('uint32_t', 'lambda')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7270
    ## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7271
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7272
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7273
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7274
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7275
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7276
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7277
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7278
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7279
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7280
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7281
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7282
def register_Ns3ErrorModel_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7283
    ## error-model.h (module 'network'): ns3::ErrorModel::ErrorModel(ns3::ErrorModel const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7284
    cls.add_constructor([param('ns3::ErrorModel const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7285
    ## error-model.h (module 'network'): ns3::ErrorModel::ErrorModel() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7286
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7287
    ## error-model.h (module 'network'): void ns3::ErrorModel::Disable() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7288
    cls.add_method('Disable', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7289
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7290
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7291
    ## error-model.h (module 'network'): void ns3::ErrorModel::Enable() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7292
    cls.add_method('Enable', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7293
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7294
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7295
    ## error-model.h (module 'network'): static ns3::TypeId ns3::ErrorModel::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7296
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7297
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7298
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7299
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7300
    ## error-model.h (module 'network'): bool ns3::ErrorModel::IsCorrupt(ns3::Ptr<ns3::Packet> pkt) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7301
    cls.add_method('IsCorrupt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7302
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7303
                   [param('ns3::Ptr< ns3::Packet >', 'pkt')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7304
    ## error-model.h (module 'network'): bool ns3::ErrorModel::IsEnabled() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7305
    cls.add_method('IsEnabled', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7306
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7307
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7308
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7309
    ## error-model.h (module 'network'): void ns3::ErrorModel::Reset() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7310
    cls.add_method('Reset', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7311
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7312
                   [])
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  7313
    ## error-model.h (module 'network'): bool ns3::ErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7314
    cls.add_method('DoCorrupt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7315
                   'bool', 
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  7316
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7317
                   is_pure_virtual=True, visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7318
    ## error-model.h (module 'network'): void ns3::ErrorModel::DoReset() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7319
    cls.add_method('DoReset', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7320
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7321
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7322
                   is_pure_virtual=True, visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7323
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7324
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7325
def register_Ns3EthernetHeader_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7326
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader::EthernetHeader(ns3::EthernetHeader const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7327
    cls.add_constructor([param('ns3::EthernetHeader const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7328
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader::EthernetHeader(bool hasPreamble) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7329
    cls.add_constructor([param('bool', 'hasPreamble')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7330
    ## ethernet-header.h (module 'network'): ns3::EthernetHeader::EthernetHeader() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7331
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7332
    ## ethernet-header.h (module 'network'): uint32_t ns3::EthernetHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7333
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7334
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7335
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7336
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7337
    ## ethernet-header.h (module 'network'): ns3::Mac48Address ns3::EthernetHeader::GetDestination() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7338
    cls.add_method('GetDestination', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7339
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7340
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7341
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7342
    ## ethernet-header.h (module 'network'): uint32_t ns3::EthernetHeader::GetHeaderSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7343
    cls.add_method('GetHeaderSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7344
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7345
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7346
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7347
    ## ethernet-header.h (module 'network'): ns3::TypeId ns3::EthernetHeader::GetInstanceTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7348
    cls.add_method('GetInstanceTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7349
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7350
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7351
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7352
    ## ethernet-header.h (module 'network'): uint16_t ns3::EthernetHeader::GetLengthType() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7353
    cls.add_method('GetLengthType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7354
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7355
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7356
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7357
    ## ethernet-header.h (module 'network'): ns3::ethernet_header_t ns3::EthernetHeader::GetPacketType() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7358
    cls.add_method('GetPacketType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7359
                   'ns3::ethernet_header_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7360
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7361
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7362
    ## ethernet-header.h (module 'network'): uint64_t ns3::EthernetHeader::GetPreambleSfd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7363
    cls.add_method('GetPreambleSfd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7364
                   'uint64_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7365
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7366
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7367
    ## ethernet-header.h (module 'network'): uint32_t ns3::EthernetHeader::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7368
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7369
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7370
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7371
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7372
    ## ethernet-header.h (module 'network'): ns3::Mac48Address ns3::EthernetHeader::GetSource() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7373
    cls.add_method('GetSource', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7374
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7375
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7376
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7377
    ## ethernet-header.h (module 'network'): static ns3::TypeId ns3::EthernetHeader::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7378
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7379
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7380
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7381
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7382
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7383
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7384
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7385
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7386
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7387
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7388
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7389
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7390
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7391
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7392
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetDestination(ns3::Mac48Address destination) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7393
    cls.add_method('SetDestination', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7394
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7395
                   [param('ns3::Mac48Address', 'destination')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7396
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetLengthType(uint16_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7397
    cls.add_method('SetLengthType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7398
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7399
                   [param('uint16_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7400
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetPreambleSfd(uint64_t preambleSfd) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7401
    cls.add_method('SetPreambleSfd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7402
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7403
                   [param('uint64_t', 'preambleSfd')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7404
    ## ethernet-header.h (module 'network'): void ns3::EthernetHeader::SetSource(ns3::Mac48Address source) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7405
    cls.add_method('SetSource', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7406
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7407
                   [param('ns3::Mac48Address', 'source')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7408
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7409
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7410
def register_Ns3EthernetTrailer_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7411
    ## ethernet-trailer.h (module 'network'): ns3::EthernetTrailer::EthernetTrailer(ns3::EthernetTrailer const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7412
    cls.add_constructor([param('ns3::EthernetTrailer const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7413
    ## ethernet-trailer.h (module 'network'): ns3::EthernetTrailer::EthernetTrailer() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7414
    cls.add_constructor([])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7415
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::CalcFcs(ns3::Ptr<ns3::Packet const> p) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7416
    cls.add_method('CalcFcs', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7417
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7418
                   [param('ns3::Ptr< ns3::Packet const >', 'p')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7419
    ## ethernet-trailer.h (module 'network'): bool ns3::EthernetTrailer::CheckFcs(ns3::Ptr<ns3::Packet const> p) const [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7420
    cls.add_method('CheckFcs', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7421
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7422
                   [param('ns3::Ptr< ns3::Packet const >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7423
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7424
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::Deserialize(ns3::Buffer::Iterator end) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7425
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7426
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7427
                   [param('ns3::Buffer::Iterator', 'end')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7428
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7429
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::EnableFcs(bool enable) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7430
    cls.add_method('EnableFcs', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7431
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7432
                   [param('bool', 'enable')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7433
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::GetFcs() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7434
    cls.add_method('GetFcs', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7435
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7436
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7437
    ## ethernet-trailer.h (module 'network'): ns3::TypeId ns3::EthernetTrailer::GetInstanceTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7438
    cls.add_method('GetInstanceTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7439
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7440
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7441
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7442
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7443
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7444
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7445
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7446
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7447
    ## ethernet-trailer.h (module 'network'): uint32_t ns3::EthernetTrailer::GetTrailerSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7448
    cls.add_method('GetTrailerSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7449
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7450
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7451
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7452
    ## ethernet-trailer.h (module 'network'): static ns3::TypeId ns3::EthernetTrailer::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7453
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7454
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7455
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7456
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7457
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7458
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7459
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7460
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7461
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7462
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::Serialize(ns3::Buffer::Iterator end) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7463
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7464
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7465
                   [param('ns3::Buffer::Iterator', 'end')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7466
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7467
    ## ethernet-trailer.h (module 'network'): void ns3::EthernetTrailer::SetFcs(uint32_t fcs) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7468
    cls.add_method('SetFcs', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7469
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7470
                   [param('uint32_t', 'fcs')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7471
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7472
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7473
def register_Ns3EventImpl_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7474
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7475
    cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7476
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7477
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7478
    ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7479
    cls.add_method('Cancel', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7480
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7481
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7482
    ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7483
    cls.add_method('Invoke', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7484
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7485
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7486
    ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7487
    cls.add_method('IsCancelled', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7488
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7489
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7490
    ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7491
    cls.add_method('Notify', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7492
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7493
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7494
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7495
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7496
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7497
def register_Ns3ExponentialRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7498
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ExponentialRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7499
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7500
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7501
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7502
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7503
    ## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable::ExponentialRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7504
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7505
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetMean() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7506
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7507
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7508
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7509
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7510
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetBound() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7511
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7512
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7513
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7514
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7515
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue(double mean, double bound) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7516
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7517
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7518
                   [param('double', 'mean'), param('double', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7519
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger(uint32_t mean, uint32_t bound) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7520
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7521
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7522
                   [param('uint32_t', 'mean'), param('uint32_t', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7523
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7524
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7525
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7526
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7527
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7528
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7529
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7530
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7531
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7532
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7533
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7534
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7535
def register_Ns3GammaRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7536
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::GammaRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7537
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7538
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7539
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7540
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7541
    ## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable::GammaRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7542
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7543
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetAlpha() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7544
    cls.add_method('GetAlpha', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7545
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7546
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7547
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7548
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetBeta() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7549
    cls.add_method('GetBeta', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7550
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7551
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7552
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7553
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue(double alpha, double beta) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7554
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7555
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7556
                   [param('double', 'alpha'), param('double', 'beta')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7557
    ## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger(uint32_t alpha, uint32_t beta) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7558
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7559
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7560
                   [param('uint32_t', 'alpha'), param('uint32_t', 'beta')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7561
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7562
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7563
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7564
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7565
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7566
    ## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7567
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7568
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7569
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7570
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7571
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7572
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7573
def register_Ns3IntegerValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7574
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7575
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7576
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(ns3::IntegerValue const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7577
    cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7578
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7579
    cls.add_constructor([param('int64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7580
    ## integer.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::IntegerValue::Copy() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7581
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7582
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7583
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7584
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7585
    ## integer.h (module 'core'): bool ns3::IntegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7586
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7587
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7588
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7589
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7590
    ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7591
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7592
                   'int64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7593
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7594
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7595
    ## integer.h (module 'core'): std::string ns3::IntegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7596
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7597
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7598
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7599
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7600
    ## integer.h (module 'core'): void ns3::IntegerValue::Set(int64_t const & value) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7601
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7602
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7603
                   [param('int64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7604
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7605
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7606
def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7607
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7608
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7609
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7610
    cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7611
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7612
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7613
def register_Ns3Ipv4AddressValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7614
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7615
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7616
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7617
    cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7618
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7619
    cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7620
    ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7621
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7622
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7623
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7624
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7625
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7626
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7627
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7628
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7629
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7630
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7631
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7632
                   'ns3::Ipv4Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7633
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7634
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7635
    ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7636
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7637
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7638
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7639
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7640
    ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7641
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7642
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7643
                   [param('ns3::Ipv4Address const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7644
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7645
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7646
def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7647
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7648
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7649
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7650
    cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7651
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7652
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7653
def register_Ns3Ipv4MaskValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7654
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7655
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7656
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7657
    cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7658
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7659
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7660
    ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7661
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7662
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7663
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7664
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7665
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7666
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7667
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7668
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7669
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7670
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7671
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7672
                   'ns3::Ipv4Mask', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7673
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7674
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7675
    ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7676
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7677
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7678
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7679
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7680
    ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7681
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7682
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7683
                   [param('ns3::Ipv4Mask const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7684
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7685
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7686
def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7687
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7688
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7689
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7690
    cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7691
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7692
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7693
def register_Ns3Ipv6AddressValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7694
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7695
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7696
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7697
    cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7698
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7699
    cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7700
    ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7701
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7702
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7703
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7704
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7705
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7706
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7707
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7708
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7709
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7710
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7711
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7712
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7713
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7714
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7715
    ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7716
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7717
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7718
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7719
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7720
    ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7721
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7722
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7723
                   [param('ns3::Ipv6Address const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7724
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7725
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7726
def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7727
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7728
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7729
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7730
    cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7731
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7732
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7733
def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7734
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7735
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7736
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7737
    cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7738
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7739
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7740
    ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7741
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7742
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7743
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7744
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7745
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7746
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7747
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7748
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7749
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7750
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7751
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7752
                   'ns3::Ipv6Prefix', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7753
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7754
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7755
    ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7756
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7757
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7758
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7759
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7760
    ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7761
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7762
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7763
                   [param('ns3::Ipv6Prefix const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7764
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7765
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7766
def register_Ns3ListErrorModel_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7767
    ## error-model.h (module 'network'): ns3::ListErrorModel::ListErrorModel(ns3::ListErrorModel const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7768
    cls.add_constructor([param('ns3::ListErrorModel const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7769
    ## error-model.h (module 'network'): ns3::ListErrorModel::ListErrorModel() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7770
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7771
    ## error-model.h (module 'network'): std::list<unsigned int, std::allocator<unsigned int> > ns3::ListErrorModel::GetList() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7772
    cls.add_method('GetList', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7773
                   'std::list< unsigned int >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7774
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7775
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7776
    ## error-model.h (module 'network'): static ns3::TypeId ns3::ListErrorModel::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7777
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7778
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7779
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7780
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7781
    ## error-model.h (module 'network'): void ns3::ListErrorModel::SetList(std::list<unsigned int, std::allocator<unsigned int> > const & packetlist) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7782
    cls.add_method('SetList', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7783
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7784
                   [param('std::list< unsigned int > const &', 'packetlist')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7785
    ## error-model.h (module 'network'): bool ns3::ListErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7786
    cls.add_method('DoCorrupt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7787
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7788
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7789
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7790
    ## error-model.h (module 'network'): void ns3::ListErrorModel::DoReset() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7791
    cls.add_method('DoReset', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7792
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7793
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7794
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7795
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7796
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7797
def register_Ns3LogNormalRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7798
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::LogNormalRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7799
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7800
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7801
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7802
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7803
    ## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable::LogNormalRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7804
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7805
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetMu() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7806
    cls.add_method('GetMu', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7807
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7808
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7809
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7810
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetSigma() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7811
    cls.add_method('GetSigma', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7812
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7813
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7814
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7815
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue(double mu, double sigma) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7816
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7817
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7818
                   [param('double', 'mu'), param('double', 'sigma')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7819
    ## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger(uint32_t mu, uint32_t sigma) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7820
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7821
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7822
                   [param('uint32_t', 'mu'), param('uint32_t', 'sigma')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7823
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7824
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7825
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7826
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7827
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7828
    ## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7829
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7830
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7831
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7832
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7833
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7834
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7835
def register_Ns3Mac16AddressChecker_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7836
    ## mac16-address.h (module 'network'): ns3::Mac16AddressChecker::Mac16AddressChecker() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7837
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7838
    ## mac16-address.h (module 'network'): ns3::Mac16AddressChecker::Mac16AddressChecker(ns3::Mac16AddressChecker const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7839
    cls.add_constructor([param('ns3::Mac16AddressChecker const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7840
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7841
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7842
def register_Ns3Mac16AddressValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7843
    ## mac16-address.h (module 'network'): ns3::Mac16AddressValue::Mac16AddressValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7844
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7845
    ## mac16-address.h (module 'network'): ns3::Mac16AddressValue::Mac16AddressValue(ns3::Mac16AddressValue const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7846
    cls.add_constructor([param('ns3::Mac16AddressValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7847
    ## mac16-address.h (module 'network'): ns3::Mac16AddressValue::Mac16AddressValue(ns3::Mac16Address const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7848
    cls.add_constructor([param('ns3::Mac16Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7849
    ## mac16-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Mac16AddressValue::Copy() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7850
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7851
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7852
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7853
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7854
    ## mac16-address.h (module 'network'): bool ns3::Mac16AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7855
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7856
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7857
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7858
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7859
    ## mac16-address.h (module 'network'): ns3::Mac16Address ns3::Mac16AddressValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7860
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7861
                   'ns3::Mac16Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7862
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7863
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7864
    ## mac16-address.h (module 'network'): std::string ns3::Mac16AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7865
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7866
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7867
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7868
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7869
    ## mac16-address.h (module 'network'): void ns3::Mac16AddressValue::Set(ns3::Mac16Address const & value) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7870
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7871
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7872
                   [param('ns3::Mac16Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7873
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7874
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7875
def register_Ns3Mac48AddressChecker_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7876
    ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker::Mac48AddressChecker() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7877
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7878
    ## mac48-address.h (module 'network'): ns3::Mac48AddressChecker::Mac48AddressChecker(ns3::Mac48AddressChecker const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7879
    cls.add_constructor([param('ns3::Mac48AddressChecker const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7880
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7881
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7882
def register_Ns3Mac48AddressValue_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7883
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7884
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7885
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue(ns3::Mac48AddressValue const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7886
    cls.add_constructor([param('ns3::Mac48AddressValue const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7887
    ## mac48-address.h (module 'network'): ns3::Mac48AddressValue::Mac48AddressValue(ns3::Mac48Address const & value) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7888
    cls.add_constructor([param('ns3::Mac48Address const &', 'value')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7889
    ## mac48-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Mac48AddressValue::Copy() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7890
    cls.add_method('Copy', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7891
                   'ns3::Ptr< ns3::AttributeValue >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7892
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7893
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7894
    ## mac48-address.h (module 'network'): bool ns3::Mac48AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7895
    cls.add_method('DeserializeFromString', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7896
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7897
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7898
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7899
    ## mac48-address.h (module 'network'): ns3::Mac48Address ns3::Mac48AddressValue::Get() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7900
    cls.add_method('Get', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7901
                   'ns3::Mac48Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7902
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7903
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7904
    ## mac48-address.h (module 'network'): std::string ns3::Mac48AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7905
    cls.add_method('SerializeToString', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7906
                   'std::string', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7907
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7908
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7909
    ## mac48-address.h (module 'network'): void ns3::Mac48AddressValue::Set(ns3::Mac48Address const & value) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7910
    cls.add_method('Set', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7911
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7912
                   [param('ns3::Mac48Address const &', 'value')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7913
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7914
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7915
def register_Ns3Mac64AddressChecker_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7916
    ## mac64-address.h (module 'network'): ns3::Mac64AddressChecker::Mac64AddressChecker() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7917
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7918
    ## mac64-address.h (module 'network'): ns3::Mac64AddressChecker::Mac64AddressChecker(ns3::Mac64AddressChecker const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7919
    cls.add_constructor([param('ns3::Mac64AddressChecker const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7920
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7921
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7922
def register_Ns3Mac64AddressValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7923
    ## mac64-address.h (module 'network'): ns3::Mac64AddressValue::Mac64AddressValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7924
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7925
    ## mac64-address.h (module 'network'): ns3::Mac64AddressValue::Mac64AddressValue(ns3::Mac64AddressValue const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7926
    cls.add_constructor([param('ns3::Mac64AddressValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7927
    ## mac64-address.h (module 'network'): ns3::Mac64AddressValue::Mac64AddressValue(ns3::Mac64Address const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7928
    cls.add_constructor([param('ns3::Mac64Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7929
    ## mac64-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Mac64AddressValue::Copy() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7930
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7931
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7932
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7933
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7934
    ## mac64-address.h (module 'network'): bool ns3::Mac64AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7935
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7936
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7937
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7938
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7939
    ## mac64-address.h (module 'network'): ns3::Mac64Address ns3::Mac64AddressValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7940
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7941
                   'ns3::Mac64Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7942
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7943
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7944
    ## mac64-address.h (module 'network'): std::string ns3::Mac64AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7945
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7946
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7947
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7948
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7949
    ## mac64-address.h (module 'network'): void ns3::Mac64AddressValue::Set(ns3::Mac64Address const & value) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7950
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7951
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7952
                   [param('ns3::Mac64Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7953
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7954
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7955
def register_Ns3MinMaxAvgTotalCalculator__Double_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7956
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double>::MinMaxAvgTotalCalculator(ns3::MinMaxAvgTotalCalculator<double> const & arg0) [copy constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7957
    cls.add_constructor([param('ns3::MinMaxAvgTotalCalculator< double > const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7958
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double>::MinMaxAvgTotalCalculator() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7959
    cls.add_constructor([])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7960
    ## basic-data-calculators.h (module 'stats'): static ns3::TypeId ns3::MinMaxAvgTotalCalculator<double>::GetTypeId() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7961
    cls.add_method('GetTypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7962
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7963
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  7964
                   is_static=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7965
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::Output(ns3::DataOutputCallback & callback) const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7966
    cls.add_method('Output', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7967
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7968
                   [param('ns3::DataOutputCallback &', 'callback')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7969
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7970
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::Reset() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7971
    cls.add_method('Reset', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7972
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7973
                   [])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7974
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::Update(double const i) [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7975
    cls.add_method('Update', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7976
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7977
                   [param('double const', 'i')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7978
    ## basic-data-calculators.h (module 'stats'): long int ns3::MinMaxAvgTotalCalculator<double>::getCount() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7979
    cls.add_method('getCount', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7980
                   'long int', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7981
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7982
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7983
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getMax() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7984
    cls.add_method('getMax', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7985
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7986
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7987
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7988
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getMean() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7989
    cls.add_method('getMean', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7990
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7991
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7992
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7993
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getMin() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7994
    cls.add_method('getMin', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7995
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7996
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7997
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7998
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getSqrSum() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7999
    cls.add_method('getSqrSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8000
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8001
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8002
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8003
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getStddev() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8004
    cls.add_method('getStddev', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8005
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8006
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8007
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8008
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getSum() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8009
    cls.add_method('getSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8010
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8011
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8012
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8013
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<double>::getVariance() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8014
    cls.add_method('getVariance', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8015
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8016
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8017
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8018
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::DoDispose() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8019
    cls.add_method('DoDispose', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8020
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8021
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8022
                   visibility='protected', is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8023
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  8024
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8025
def register_Ns3MinMaxAvgTotalCalculator__Unsigned_int_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8026
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<unsigned int>::MinMaxAvgTotalCalculator(ns3::MinMaxAvgTotalCalculator<unsigned int> const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8027
    cls.add_constructor([param('ns3::MinMaxAvgTotalCalculator< unsigned int > const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8028
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<unsigned int>::MinMaxAvgTotalCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8029
    cls.add_constructor([])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8030
    ## basic-data-calculators.h (module 'stats'): static ns3::TypeId ns3::MinMaxAvgTotalCalculator<unsigned int>::GetTypeId() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8031
    cls.add_method('GetTypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8032
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8033
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8034
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8035
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<unsigned int>::Output(ns3::DataOutputCallback & callback) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8036
    cls.add_method('Output', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8037
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8038
                   [param('ns3::DataOutputCallback &', 'callback')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8039
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8040
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<unsigned int>::Reset() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8041
    cls.add_method('Reset', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8042
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8043
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8044
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<unsigned int>::Update(unsigned int const i) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8045
    cls.add_method('Update', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8046
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8047
                   [param('unsigned int const', 'i')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8048
    ## basic-data-calculators.h (module 'stats'): long int ns3::MinMaxAvgTotalCalculator<unsigned int>::getCount() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8049
    cls.add_method('getCount', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8050
                   'long int', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8051
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8052
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8053
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<unsigned int>::getMax() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8054
    cls.add_method('getMax', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8055
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8056
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8057
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8058
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<unsigned int>::getMean() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8059
    cls.add_method('getMean', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8060
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8061
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8062
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8063
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<unsigned int>::getMin() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8064
    cls.add_method('getMin', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8065
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8066
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8067
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8068
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<unsigned int>::getSqrSum() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8069
    cls.add_method('getSqrSum', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8070
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8071
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8072
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8073
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<unsigned int>::getStddev() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8074
    cls.add_method('getStddev', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8075
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8076
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8077
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8078
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<unsigned int>::getSum() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8079
    cls.add_method('getSum', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8080
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8081
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8082
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8083
    ## basic-data-calculators.h (module 'stats'): double ns3::MinMaxAvgTotalCalculator<unsigned int>::getVariance() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8084
    cls.add_method('getVariance', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8085
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8086
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8087
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8088
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<unsigned int>::DoDispose() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8089
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8090
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8091
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8092
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8093
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8094
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8095
def register_Ns3NetDevice_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8096
    ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8097
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8098
    ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8099
    cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8100
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8101
    cls.add_method('AddLinkChangeCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8102
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8103
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8104
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8105
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8106
    cls.add_method('GetAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8107
                   'ns3::Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8108
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8109
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8110
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8111
    cls.add_method('GetBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8112
                   'ns3::Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8113
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8114
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8115
    ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8116
    cls.add_method('GetChannel', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8117
                   'ns3::Ptr< ns3::Channel >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8118
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8119
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8120
    ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8121
    cls.add_method('GetIfIndex', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8122
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8123
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8124
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8125
    ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8126
    cls.add_method('GetMtu', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8127
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8128
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8129
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8130
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8131
    cls.add_method('GetMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8132
                   'ns3::Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8133
                   [param('ns3::Ipv4Address', 'multicastGroup')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8134
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8135
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8136
    cls.add_method('GetMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8137
                   'ns3::Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8138
                   [param('ns3::Ipv6Address', 'addr')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8139
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8140
    ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8141
    cls.add_method('GetNode', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8142
                   'ns3::Ptr< ns3::Node >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8143
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8144
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8145
    ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8146
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8147
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8148
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8149
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8150
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8151
    cls.add_method('IsBridge', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8152
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8153
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8154
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8155
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8156
    cls.add_method('IsBroadcast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8157
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8158
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8159
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8160
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8161
    cls.add_method('IsLinkUp', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8162
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8163
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8164
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8165
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8166
    cls.add_method('IsMulticast', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8167
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8168
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8169
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8170
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8171
    cls.add_method('IsPointToPoint', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8172
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8173
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8174
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8175
    ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8176
    cls.add_method('NeedsArp', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8177
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8178
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8179
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8180
    ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8181
    cls.add_method('Send', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8182
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8183
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8184
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8185
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8186
    cls.add_method('SendFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8187
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8188
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8189
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8190
    ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8191
    cls.add_method('SetAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8192
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8193
                   [param('ns3::Address', 'address')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8194
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8195
    ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8196
    cls.add_method('SetIfIndex', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8197
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8198
                   [param('uint32_t const', 'index')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8199
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8200
    ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8201
    cls.add_method('SetMtu', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8202
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8203
                   [param('uint16_t const', 'mtu')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8204
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8205
    ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8206
    cls.add_method('SetNode', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8207
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8208
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8209
                   is_pure_virtual=True, is_virtual=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8210
    ## 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]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8211
    cls.add_method('SetPromiscReceiveCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8212
                   'void', 
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8213
                   [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')], 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8214
                   is_pure_virtual=True, is_virtual=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8215
    ## 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]
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8216
    cls.add_method('SetReceiveCallback', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8217
                   'void', 
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8218
                   [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')], 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8219
                   is_pure_virtual=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8220
    ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8221
    cls.add_method('SupportsSendFrom', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8222
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8223
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8224
                   is_pure_virtual=True, is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8225
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8226
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8227
def register_Ns3NixVector_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8228
    cls.add_output_stream_operator()
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8229
    ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8230
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8231
    ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8232
    cls.add_constructor([param('ns3::NixVector const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8233
    ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8234
    cls.add_method('AddNeighborIndex', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8235
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8236
                   [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8237
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8238
    cls.add_method('BitCount', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8239
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8240
                   [param('uint32_t', 'numberOfNeighbors')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8241
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8242
    ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8243
    cls.add_method('Copy', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8244
                   'ns3::Ptr< ns3::NixVector >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8245
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8246
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8247
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8248
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8249
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8250
                   [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8251
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8252
    cls.add_method('ExtractNeighborIndex', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8253
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8254
                   [param('uint32_t', 'numberOfBits')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8255
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8256
    cls.add_method('GetRemainingBits', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8257
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8258
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8259
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8260
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8261
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8262
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8263
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8264
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8265
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8266
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8267
                   [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8268
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8269
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8270
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8271
def register_Ns3Node_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8272
    ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8273
    cls.add_constructor([param('ns3::Node const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8274
    ## node.h (module 'network'): ns3::Node::Node() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8275
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8276
    ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8277
    cls.add_constructor([param('uint32_t', 'systemId')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8278
    ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8279
    cls.add_method('AddApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8280
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8281
                   [param('ns3::Ptr< ns3::Application >', 'application')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8282
    ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8283
    cls.add_method('AddDevice', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8284
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8285
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8286
    ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8287
    cls.add_method('ChecksumEnabled', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8288
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8289
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8290
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8291
    ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8292
    cls.add_method('GetApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8293
                   'ns3::Ptr< ns3::Application >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8294
                   [param('uint32_t', 'index')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8295
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8296
    ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8297
    cls.add_method('GetDevice', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8298
                   'ns3::Ptr< ns3::NetDevice >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8299
                   [param('uint32_t', 'index')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8300
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8301
    ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8302
    cls.add_method('GetId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8303
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8304
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8305
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8306
    ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8307
    cls.add_method('GetNApplications', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8308
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8309
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8310
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8311
    ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8312
    cls.add_method('GetNDevices', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8313
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8314
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8315
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8316
    ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8317
    cls.add_method('GetSystemId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8318
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8319
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8320
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8321
    ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8322
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8323
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8324
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8325
                   is_static=True)
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8326
    ## 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: 7090
diff changeset
  8327
    cls.add_method('RegisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8328
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8329
                   [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')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8330
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8331
    cls.add_method('RegisterProtocolHandler', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8332
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8333
                   [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: 7090
diff changeset
  8334
    ## 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: 7090
diff changeset
  8335
    cls.add_method('UnregisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8336
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8337
                   [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')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8338
    ## 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]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8339
    cls.add_method('UnregisterProtocolHandler', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8340
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8341
                   [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')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8342
    ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8343
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8344
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8345
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8346
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  8347
    ## node.h (module 'network'): void ns3::Node::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  8348
    cls.add_method('DoInitialize', 
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8349
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8350
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8351
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8352
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8353
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8354
def register_Ns3NormalRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8355
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::INFINITE_VALUE [variable]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8356
    cls.add_static_attribute('INFINITE_VALUE', 'double const', is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8357
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::NormalRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8358
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8359
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8360
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8361
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8362
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::NormalRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8363
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8364
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetMean() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8365
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8366
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8367
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8368
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8369
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetVariance() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8370
    cls.add_method('GetVariance', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8371
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8372
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8373
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8374
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetBound() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8375
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8376
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8377
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8378
                   is_const=True)
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  8379
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue(double mean, double variance, double bound=ns3::NormalRandomVariable::INFINITE_VALUE) [member function]
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8380
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8381
                   'double', 
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  8382
                   [param('double', 'mean'), param('double', 'variance'), param('double', 'bound', default_value='ns3::NormalRandomVariable::INFINITE_VALUE')])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8383
    ## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger(uint32_t mean, uint32_t variance, uint32_t bound) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8384
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8385
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8386
                   [param('uint32_t', 'mean'), param('uint32_t', 'variance'), param('uint32_t', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8387
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8388
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8389
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8390
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8391
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8392
    ## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8393
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8394
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8395
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8396
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8397
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8398
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8399
def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8400
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8401
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8402
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8403
    cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8404
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8405
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8406
def register_Ns3ObjectFactoryValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8407
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8408
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8409
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8410
    cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8411
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8412
    cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8413
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8414
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8415
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8416
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8417
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8418
    ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8419
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8420
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8421
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8422
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8423
    ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8424
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8425
                   'ns3::ObjectFactory', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8426
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8427
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8428
    ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8429
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8430
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8431
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8432
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8433
    ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8434
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8435
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8436
                   [param('ns3::ObjectFactory const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8437
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8438
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8439
def register_Ns3OnOffApplication_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8440
    ## onoff-application.h (module 'applications'): ns3::OnOffApplication::OnOffApplication(ns3::OnOffApplication const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8441
    cls.add_constructor([param('ns3::OnOffApplication const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8442
    ## onoff-application.h (module 'applications'): ns3::OnOffApplication::OnOffApplication() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8443
    cls.add_constructor([])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8444
    ## onoff-application.h (module 'applications'): int64_t ns3::OnOffApplication::AssignStreams(int64_t stream) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8445
    cls.add_method('AssignStreams', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8446
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8447
                   [param('int64_t', 'stream')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8448
    ## onoff-application.h (module 'applications'): ns3::Ptr<ns3::Socket> ns3::OnOffApplication::GetSocket() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8449
    cls.add_method('GetSocket', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8450
                   'ns3::Ptr< ns3::Socket >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8451
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8452
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8453
    ## onoff-application.h (module 'applications'): static ns3::TypeId ns3::OnOffApplication::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8454
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8455
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8456
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8457
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8458
    ## onoff-application.h (module 'applications'): void ns3::OnOffApplication::SetMaxBytes(uint32_t maxBytes) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8459
    cls.add_method('SetMaxBytes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8460
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8461
                   [param('uint32_t', 'maxBytes')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8462
    ## onoff-application.h (module 'applications'): void ns3::OnOffApplication::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8463
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8464
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8465
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8466
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8467
    ## onoff-application.h (module 'applications'): void ns3::OnOffApplication::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8468
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8469
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8470
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8471
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8472
    ## onoff-application.h (module 'applications'): void ns3::OnOffApplication::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8473
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8474
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8475
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8476
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8477
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8478
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8479
def register_Ns3OutputStreamWrapper_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8480
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8481
    cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8482
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8483
    cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8484
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8485
    cls.add_constructor([param('std::ostream *', 'os')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8486
    ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8487
    cls.add_method('GetStream', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8488
                   'std::ostream *', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8489
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8490
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8491
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8492
def register_Ns3Packet_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8493
    cls.add_output_stream_operator()
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8494
    ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8495
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8496
    ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8497
    cls.add_constructor([param('ns3::Packet const &', 'o')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8498
    ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8499
    cls.add_constructor([param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8500
    ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8501
    cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8502
    ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8503
    cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8504
    ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<ns3::Packet const> packet) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8505
    cls.add_method('AddAtEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8506
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8507
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8508
    ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8509
    cls.add_method('AddByteTag', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8510
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8511
                   [param('ns3::Tag const &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8512
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8513
    ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8514
    cls.add_method('AddHeader', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8515
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8516
                   [param('ns3::Header const &', 'header')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8517
    ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8518
    cls.add_method('AddPacketTag', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8519
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8520
                   [param('ns3::Tag const &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8521
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8522
    ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8523
    cls.add_method('AddPaddingAtEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8524
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8525
                   [param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8526
    ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8527
    cls.add_method('AddTrailer', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8528
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8529
                   [param('ns3::Trailer const &', 'trailer')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8530
    ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8531
    cls.add_method('BeginItem', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8532
                   'ns3::PacketMetadata::ItemIterator', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8533
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8534
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8535
    ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8536
    cls.add_method('Copy', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8537
                   'ns3::Ptr< ns3::Packet >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8538
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8539
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8540
    ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8541
    cls.add_method('CopyData', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8542
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8543
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8544
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8545
    ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8546
    cls.add_method('CopyData', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8547
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8548
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8549
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8550
    ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8551
    cls.add_method('CreateFragment', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8552
                   'ns3::Ptr< ns3::Packet >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8553
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8554
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8555
    ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8556
    cls.add_method('EnableChecking', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8557
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8558
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8559
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8560
    ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8561
    cls.add_method('EnablePrinting', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8562
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8563
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8564
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8565
    ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8566
    cls.add_method('FindFirstMatchingByteTag', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8567
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8568
                   [param('ns3::Tag &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8569
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8570
    ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8571
    cls.add_method('GetByteTagIterator', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8572
                   'ns3::ByteTagIterator', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8573
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8574
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8575
    ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8576
    cls.add_method('GetNixVector', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8577
                   'ns3::Ptr< ns3::NixVector >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8578
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8579
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8580
    ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8581
    cls.add_method('GetPacketTagIterator', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8582
                   'ns3::PacketTagIterator', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8583
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8584
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8585
    ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8586
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8587
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8588
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8589
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8590
    ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8591
    cls.add_method('GetSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8592
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8593
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8594
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8595
    ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8596
    cls.add_method('GetUid', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8597
                   'uint64_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8598
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8599
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8600
    ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8601
    cls.add_method('PeekHeader', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8602
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8603
                   [param('ns3::Header &', 'header')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8604
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8605
    ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8606
    cls.add_method('PeekPacketTag', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8607
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8608
                   [param('ns3::Tag &', 'tag')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8609
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8610
    ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8611
    cls.add_method('PeekTrailer', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8612
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8613
                   [param('ns3::Trailer &', 'trailer')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8614
    ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8615
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8616
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8617
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8618
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8619
    ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8620
    cls.add_method('PrintByteTags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8621
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8622
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8623
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8624
    ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8625
    cls.add_method('PrintPacketTags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8626
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8627
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8628
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8629
    ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8630
    cls.add_method('RemoveAllByteTags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8631
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8632
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8633
    ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8634
    cls.add_method('RemoveAllPacketTags', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8635
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8636
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8637
    ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8638
    cls.add_method('RemoveAtEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8639
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8640
                   [param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8641
    ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8642
    cls.add_method('RemoveAtStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8643
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8644
                   [param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8645
    ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8646
    cls.add_method('RemoveHeader', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8647
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8648
                   [param('ns3::Header &', 'header')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8649
    ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8650
    cls.add_method('RemovePacketTag', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8651
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8652
                   [param('ns3::Tag &', 'tag')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8653
    ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8654
    cls.add_method('RemoveTrailer', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8655
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8656
                   [param('ns3::Trailer &', 'trailer')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  8657
    ## packet.h (module 'network'): bool ns3::Packet::ReplacePacketTag(ns3::Tag & tag) [member function]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  8658
    cls.add_method('ReplacePacketTag', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  8659
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  8660
                   [param('ns3::Tag &', 'tag')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8661
    ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8662
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8663
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8664
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8665
                   is_const=True)
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  8666
    ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> nixVector) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8667
    cls.add_method('SetNixVector', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8668
                   'void', 
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  8669
                   [param('ns3::Ptr< ns3::NixVector >', 'nixVector')])
11114
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  8670
    ## packet.h (module 'network'): std::string ns3::Packet::ToString() const [member function]
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  8671
    cls.add_method('ToString', 
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  8672
                   'std::string', 
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  8673
                   [], 
b02433d91a26 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11062
diff changeset
  8674
                   is_const=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8675
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8676
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8677
def register_Ns3PacketSink_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8678
    ## packet-sink.h (module 'applications'): ns3::PacketSink::PacketSink(ns3::PacketSink const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8679
    cls.add_constructor([param('ns3::PacketSink const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8680
    ## packet-sink.h (module 'applications'): ns3::PacketSink::PacketSink() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8681
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8682
    ## packet-sink.h (module 'applications'): std::list<ns3::Ptr<ns3::Socket>, std::allocator<ns3::Ptr<ns3::Socket> > > ns3::PacketSink::GetAcceptedSockets() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8683
    cls.add_method('GetAcceptedSockets', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8684
                   'std::list< ns3::Ptr< ns3::Socket > >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8685
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8686
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8687
    ## packet-sink.h (module 'applications'): ns3::Ptr<ns3::Socket> ns3::PacketSink::GetListeningSocket() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8688
    cls.add_method('GetListeningSocket', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8689
                   'ns3::Ptr< ns3::Socket >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8690
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8691
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8692
    ## packet-sink.h (module 'applications'): uint32_t ns3::PacketSink::GetTotalRx() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8693
    cls.add_method('GetTotalRx', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8694
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8695
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8696
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8697
    ## packet-sink.h (module 'applications'): static ns3::TypeId ns3::PacketSink::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8698
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8699
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8700
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8701
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8702
    ## packet-sink.h (module 'applications'): void ns3::PacketSink::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8703
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8704
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8705
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8706
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8707
    ## packet-sink.h (module 'applications'): void ns3::PacketSink::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8708
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8709
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8710
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8711
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8712
    ## packet-sink.h (module 'applications'): void ns3::PacketSink::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8713
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8714
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8715
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8716
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8717
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8718
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8719
def register_Ns3PacketSizeMinMaxAvgTotalCalculator_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8720
    ## packet-data-calculators.h (module 'network'): ns3::PacketSizeMinMaxAvgTotalCalculator::PacketSizeMinMaxAvgTotalCalculator(ns3::PacketSizeMinMaxAvgTotalCalculator const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8721
    cls.add_constructor([param('ns3::PacketSizeMinMaxAvgTotalCalculator const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8722
    ## packet-data-calculators.h (module 'network'): ns3::PacketSizeMinMaxAvgTotalCalculator::PacketSizeMinMaxAvgTotalCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8723
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8724
    ## packet-data-calculators.h (module 'network'): void ns3::PacketSizeMinMaxAvgTotalCalculator::FrameUpdate(std::string path, ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address realto) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8725
    cls.add_method('FrameUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8726
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8727
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'realto')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8728
    ## packet-data-calculators.h (module 'network'): static ns3::TypeId ns3::PacketSizeMinMaxAvgTotalCalculator::GetTypeId() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8729
    cls.add_method('GetTypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8730
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8731
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
  8732
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8733
    ## packet-data-calculators.h (module 'network'): void ns3::PacketSizeMinMaxAvgTotalCalculator::PacketUpdate(std::string path, ns3::Ptr<ns3::Packet const> packet) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8734
    cls.add_method('PacketUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8735
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8736
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8737
    ## packet-data-calculators.h (module 'network'): void ns3::PacketSizeMinMaxAvgTotalCalculator::DoDispose() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8738
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8739
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8740
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8741
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8742
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8743
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8744
def register_Ns3PacketSocket_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8745
    ## packet-socket.h (module 'network'): ns3::PacketSocket::PacketSocket(ns3::PacketSocket const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8746
    cls.add_constructor([param('ns3::PacketSocket const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8747
    ## packet-socket.h (module 'network'): ns3::PacketSocket::PacketSocket() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8748
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8749
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Bind() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8750
    cls.add_method('Bind', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8751
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8752
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8753
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8754
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Bind(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8755
    cls.add_method('Bind', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8756
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8757
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8758
                   is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8759
    ## 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
  8760
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8761
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8762
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8763
                   is_virtual=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8764
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Close() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8765
    cls.add_method('Close', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8766
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8767
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8768
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8769
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Connect(ns3::Address const & address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8770
    cls.add_method('Connect', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8771
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8772
                   [param('ns3::Address const &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8773
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8774
    ## packet-socket.h (module 'network'): bool ns3::PacketSocket::GetAllowBroadcast() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8775
    cls.add_method('GetAllowBroadcast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8776
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8777
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8778
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8779
    ## packet-socket.h (module 'network'): ns3::Socket::SocketErrno ns3::PacketSocket::GetErrno() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8780
    cls.add_method('GetErrno', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8781
                   'ns3::Socket::SocketErrno', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8782
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8783
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8784
    ## packet-socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::PacketSocket::GetNode() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8785
    cls.add_method('GetNode', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8786
                   'ns3::Ptr< ns3::Node >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8787
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8788
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8789
    ## packet-socket.h (module 'network'): uint32_t ns3::PacketSocket::GetRxAvailable() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8790
    cls.add_method('GetRxAvailable', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8791
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8792
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8793
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8794
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::GetSockName(ns3::Address & address) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8795
    cls.add_method('GetSockName', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8796
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8797
                   [param('ns3::Address &', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8798
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8799
    ## packet-socket.h (module 'network'): ns3::Socket::SocketType ns3::PacketSocket::GetSocketType() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8800
    cls.add_method('GetSocketType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8801
                   'ns3::Socket::SocketType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8802
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8803
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8804
    ## packet-socket.h (module 'network'): uint32_t ns3::PacketSocket::GetTxAvailable() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8805
    cls.add_method('GetTxAvailable', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8806
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8807
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8808
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8809
    ## packet-socket.h (module 'network'): static ns3::TypeId ns3::PacketSocket::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8810
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8811
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8812
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8813
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8814
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Listen() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8815
    cls.add_method('Listen', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8816
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8817
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8818
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8819
    ## packet-socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::PacketSocket::Recv(uint32_t maxSize, uint32_t flags) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8820
    cls.add_method('Recv', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8821
                   'ns3::Ptr< ns3::Packet >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8822
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8823
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8824
    ## packet-socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::PacketSocket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8825
    cls.add_method('RecvFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8826
                   'ns3::Ptr< ns3::Packet >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8827
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8828
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8829
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8830
    cls.add_method('Send', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8831
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8832
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8833
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8834
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8835
    cls.add_method('SendTo', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8836
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8837
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8838
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8839
    ## packet-socket.h (module 'network'): bool ns3::PacketSocket::SetAllowBroadcast(bool allowBroadcast) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8840
    cls.add_method('SetAllowBroadcast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8841
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8842
                   [param('bool', 'allowBroadcast')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8843
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8844
    ## packet-socket.h (module 'network'): void ns3::PacketSocket::SetNode(ns3::Ptr<ns3::Node> node) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8845
    cls.add_method('SetNode', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8846
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8847
                   [param('ns3::Ptr< ns3::Node >', 'node')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8848
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::ShutdownRecv() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8849
    cls.add_method('ShutdownRecv', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8850
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8851
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8852
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8853
    ## packet-socket.h (module 'network'): int ns3::PacketSocket::ShutdownSend() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8854
    cls.add_method('ShutdownSend', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8855
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8856
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8857
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8858
    ## packet-socket.h (module 'network'): void ns3::PacketSocket::DoDispose() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8859
    cls.add_method('DoDispose', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8860
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8861
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8862
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8863
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8864
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8865
def register_Ns3PacketSocketClient_methods(root_module, cls):
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8866
    ## packet-socket-client.h (module 'network'): ns3::PacketSocketClient::PacketSocketClient(ns3::PacketSocketClient const & arg0) [copy constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8867
    cls.add_constructor([param('ns3::PacketSocketClient const &', 'arg0')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8868
    ## packet-socket-client.h (module 'network'): ns3::PacketSocketClient::PacketSocketClient() [constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8869
    cls.add_constructor([])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8870
    ## packet-socket-client.h (module 'network'): static ns3::TypeId ns3::PacketSocketClient::GetTypeId() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8871
    cls.add_method('GetTypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8872
                   'ns3::TypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8873
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8874
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8875
    ## packet-socket-client.h (module 'network'): void ns3::PacketSocketClient::SetRemote(ns3::PacketSocketAddress addr) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8876
    cls.add_method('SetRemote', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8877
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8878
                   [param('ns3::PacketSocketAddress', 'addr')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8879
    ## packet-socket-client.h (module 'network'): void ns3::PacketSocketClient::DoDispose() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8880
    cls.add_method('DoDispose', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8881
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8882
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8883
                   visibility='protected', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8884
    ## packet-socket-client.h (module 'network'): void ns3::PacketSocketClient::StartApplication() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8885
    cls.add_method('StartApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8886
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8887
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8888
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8889
    ## packet-socket-client.h (module 'network'): void ns3::PacketSocketClient::StopApplication() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8890
    cls.add_method('StopApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8891
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8892
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8893
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8894
    return
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8895
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8896
def register_Ns3PacketSocketFactory_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8897
    ## packet-socket-factory.h (module 'network'): ns3::PacketSocketFactory::PacketSocketFactory(ns3::PacketSocketFactory const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8898
    cls.add_constructor([param('ns3::PacketSocketFactory const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8899
    ## packet-socket-factory.h (module 'network'): ns3::PacketSocketFactory::PacketSocketFactory() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8900
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8901
    ## packet-socket-factory.h (module 'network'): ns3::Ptr<ns3::Socket> ns3::PacketSocketFactory::CreateSocket() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8902
    cls.add_method('CreateSocket', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8903
                   'ns3::Ptr< ns3::Socket >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8904
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8905
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8906
    ## packet-socket-factory.h (module 'network'): static ns3::TypeId ns3::PacketSocketFactory::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8907
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8908
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8909
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8910
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8911
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8912
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8913
def register_Ns3PacketSocketServer_methods(root_module, cls):
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8914
    ## packet-socket-server.h (module 'network'): ns3::PacketSocketServer::PacketSocketServer(ns3::PacketSocketServer const & arg0) [copy constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8915
    cls.add_constructor([param('ns3::PacketSocketServer const &', 'arg0')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8916
    ## packet-socket-server.h (module 'network'): ns3::PacketSocketServer::PacketSocketServer() [constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8917
    cls.add_constructor([])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8918
    ## packet-socket-server.h (module 'network'): static ns3::TypeId ns3::PacketSocketServer::GetTypeId() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8919
    cls.add_method('GetTypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8920
                   'ns3::TypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8921
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8922
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8923
    ## packet-socket-server.h (module 'network'): void ns3::PacketSocketServer::SetLocal(ns3::PacketSocketAddress addr) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8924
    cls.add_method('SetLocal', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8925
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8926
                   [param('ns3::PacketSocketAddress', 'addr')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8927
    ## packet-socket-server.h (module 'network'): void ns3::PacketSocketServer::DoDispose() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8928
    cls.add_method('DoDispose', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8929
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8930
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8931
                   visibility='protected', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8932
    ## packet-socket-server.h (module 'network'): void ns3::PacketSocketServer::StartApplication() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8933
    cls.add_method('StartApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8934
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8935
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8936
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8937
    ## packet-socket-server.h (module 'network'): void ns3::PacketSocketServer::StopApplication() [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8938
    cls.add_method('StopApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8939
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8940
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8941
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8942
    return
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8943
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8944
def register_Ns3ParetoRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8945
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ParetoRandomVariable::GetTypeId() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8946
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8947
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8948
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8949
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8950
    ## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable::ParetoRandomVariable() [constructor]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8951
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8952
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetMean() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8953
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8954
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8955
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8956
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8957
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetShape() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8958
    cls.add_method('GetShape', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8959
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8960
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8961
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8962
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetBound() const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8963
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8964
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8965
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8966
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8967
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue(double mean, double shape, double bound) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8968
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8969
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8970
                   [param('double', 'mean'), param('double', 'shape'), param('double', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8971
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger(uint32_t mean, uint32_t shape, uint32_t bound) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8972
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8973
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8974
                   [param('uint32_t', 'mean'), param('uint32_t', 'shape'), param('uint32_t', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8975
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8976
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8977
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8978
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8979
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8980
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8981
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8982
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8983
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8984
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8985
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8986
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8987
def register_Ns3PbbAddressBlock_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8988
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8989
    cls.add_binary_comparison_operator('!=')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8990
    ## packetbb.h (module 'network'): ns3::PbbAddressBlock::PbbAddressBlock(ns3::PbbAddressBlock const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8991
    cls.add_constructor([param('ns3::PbbAddressBlock const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8992
    ## packetbb.h (module 'network'): ns3::PbbAddressBlock::PbbAddressBlock() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8993
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8994
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlock::AddressBack() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8995
    cls.add_method('AddressBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8996
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8997
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8998
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8999
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressBegin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9000
    cls.add_method('AddressBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9001
                   'std::_List_iterator< ns3::Address >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9002
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9003
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Address> ns3::PbbAddressBlock::AddressBegin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9004
    cls.add_method('AddressBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9005
                   'std::_List_const_iterator< ns3::Address >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9006
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9007
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9008
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressClear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9009
    cls.add_method('AddressClear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9010
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9011
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9012
    ## packetbb.h (module 'network'): bool ns3::PbbAddressBlock::AddressEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9013
    cls.add_method('AddressEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9014
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9015
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9016
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9017
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressEnd() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9018
    cls.add_method('AddressEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9019
                   'std::_List_iterator< ns3::Address >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9020
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9021
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Address> ns3::PbbAddressBlock::AddressEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9022
    cls.add_method('AddressEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9023
                   'std::_List_const_iterator< ns3::Address >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9024
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9025
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9026
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressErase(std::_List_iterator<ns3::Address> position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9027
    cls.add_method('AddressErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9028
                   'std::_List_iterator< ns3::Address >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9029
                   [param('std::_List_iterator< ns3::Address >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9030
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9031
    cls.add_method('AddressErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9032
                   'std::_List_iterator< ns3::Address >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9033
                   [param('std::_List_iterator< ns3::Address >', 'first'), param('std::_List_iterator< ns3::Address >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9034
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlock::AddressFront() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9035
    cls.add_method('AddressFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9036
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9037
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9038
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9039
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Address> ns3::PbbAddressBlock::AddressInsert(std::_List_iterator<ns3::Address> position, ns3::Address const value) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9040
    cls.add_method('AddressInsert', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9041
                   'std::_List_iterator< ns3::Address >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9042
                   [param('std::_List_iterator< ns3::Address >', 'position'), param('ns3::Address const', 'value')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9043
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9044
    cls.add_method('AddressPopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9045
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9046
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9047
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9048
    cls.add_method('AddressPopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9049
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9050
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9051
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPushBack(ns3::Address address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9052
    cls.add_method('AddressPushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9053
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9054
                   [param('ns3::Address', 'address')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9055
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::AddressPushFront(ns3::Address address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9056
    cls.add_method('AddressPushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9057
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9058
                   [param('ns3::Address', 'address')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9059
    ## packetbb.h (module 'network'): int ns3::PbbAddressBlock::AddressSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9060
    cls.add_method('AddressSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9061
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9062
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9063
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9064
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Deserialize(ns3::Buffer::Iterator & start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9065
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9066
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9067
                   [param('ns3::Buffer::Iterator &', 'start')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9068
    ## packetbb.h (module 'network'): uint32_t ns3::PbbAddressBlock::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9069
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9070
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9071
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9072
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9073
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlock::PrefixBack() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9074
    cls.add_method('PrefixBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9075
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9076
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9077
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9078
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixBegin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9079
    cls.add_method('PrefixBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9080
                   'std::_List_iterator< unsigned char >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9081
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9082
    ## packetbb.h (module 'network'): std::_List_const_iterator<unsigned char> ns3::PbbAddressBlock::PrefixBegin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9083
    cls.add_method('PrefixBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9084
                   'std::_List_const_iterator< unsigned char >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9085
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9086
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9087
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixClear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9088
    cls.add_method('PrefixClear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9089
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9090
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9091
    ## packetbb.h (module 'network'): bool ns3::PbbAddressBlock::PrefixEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9092
    cls.add_method('PrefixEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9093
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9094
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9095
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9096
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixEnd() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9097
    cls.add_method('PrefixEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9098
                   'std::_List_iterator< unsigned char >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9099
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9100
    ## packetbb.h (module 'network'): std::_List_const_iterator<unsigned char> ns3::PbbAddressBlock::PrefixEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9101
    cls.add_method('PrefixEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9102
                   'std::_List_const_iterator< unsigned char >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9103
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9104
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9105
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixErase(std::_List_iterator<unsigned char> position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9106
    cls.add_method('PrefixErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9107
                   'std::_List_iterator< unsigned char >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9108
                   [param('std::_List_iterator< unsigned char >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9109
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9110
    cls.add_method('PrefixErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9111
                   'std::_List_iterator< unsigned char >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9112
                   [param('std::_List_iterator< unsigned char >', 'first'), param('std::_List_iterator< unsigned char >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9113
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlock::PrefixFront() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9114
    cls.add_method('PrefixFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9115
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9116
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9117
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9118
    ## packetbb.h (module 'network'): std::_List_iterator<unsigned char> ns3::PbbAddressBlock::PrefixInsert(std::_List_iterator<unsigned char> position, uint8_t const value) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9119
    cls.add_method('PrefixInsert', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9120
                   'std::_List_iterator< unsigned char >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9121
                   [param('std::_List_iterator< unsigned char >', 'position'), param('uint8_t const', 'value')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9122
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9123
    cls.add_method('PrefixPopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9124
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9125
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9126
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9127
    cls.add_method('PrefixPopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9128
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9129
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9130
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPushBack(uint8_t prefix) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9131
    cls.add_method('PrefixPushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9132
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9133
                   [param('uint8_t', 'prefix')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9134
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrefixPushFront(uint8_t prefix) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9135
    cls.add_method('PrefixPushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9136
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9137
                   [param('uint8_t', 'prefix')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9138
    ## packetbb.h (module 'network'): int ns3::PbbAddressBlock::PrefixSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9139
    cls.add_method('PrefixSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9140
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9141
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9142
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9143
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9144
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9145
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9146
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9147
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9148
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Print(std::ostream & os, int level) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9149
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9150
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9151
                   [param('std::ostream &', 'os'), param('int', 'level')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9152
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9153
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::Serialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9154
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9155
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9156
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9157
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9158
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressBlock::TlvBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9159
    cls.add_method('TlvBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9160
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9161
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9162
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> const ns3::PbbAddressBlock::TlvBack() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9163
    cls.add_method('TlvBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9164
                   'ns3::Ptr< ns3::PbbAddressTlv > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9165
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9166
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9167
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvBegin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9168
    cls.add_method('TlvBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9169
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9170
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9171
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvBegin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9172
    cls.add_method('TlvBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9173
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9174
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9175
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9176
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvClear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9177
    cls.add_method('TlvClear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9178
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9179
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9180
    ## packetbb.h (module 'network'): bool ns3::PbbAddressBlock::TlvEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9181
    cls.add_method('TlvEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9182
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9183
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9184
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9185
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvEnd() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9186
    cls.add_method('TlvEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9187
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9188
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9189
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9190
    cls.add_method('TlvEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9191
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9192
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9193
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9194
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > ns3::PbbAddressBlock::TlvErase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressTlv> > position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9195
    cls.add_method('TlvErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9196
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9197
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9198
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9199
    cls.add_method('TlvErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9200
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9201
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9202
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> ns3::PbbAddressBlock::TlvFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9203
    cls.add_method('TlvFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9204
                   'ns3::Ptr< ns3::PbbAddressTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9205
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9206
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressTlv> const ns3::PbbAddressBlock::TlvFront() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9207
    cls.add_method('TlvFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9208
                   'ns3::Ptr< ns3::PbbAddressTlv > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9209
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9210
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9211
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9212
    cls.add_method('TlvInsert', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9213
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9214
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressTlv > >', 'position'), param('ns3::Ptr< ns3::PbbTlv > const', 'value')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9215
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9216
    cls.add_method('TlvPopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9217
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9218
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9219
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9220
    cls.add_method('TlvPopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9221
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9222
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9223
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPushBack(ns3::Ptr<ns3::PbbAddressTlv> address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9224
    cls.add_method('TlvPushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9225
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9226
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'address')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9227
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::TlvPushFront(ns3::Ptr<ns3::PbbAddressTlv> address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9228
    cls.add_method('TlvPushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9229
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9230
                   [param('ns3::Ptr< ns3::PbbAddressTlv >', 'address')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9231
    ## packetbb.h (module 'network'): int ns3::PbbAddressBlock::TlvSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9232
    cls.add_method('TlvSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9233
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9234
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9235
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9236
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlock::DeserializeAddress(uint8_t * buffer) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9237
    cls.add_method('DeserializeAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9238
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9239
                   [param('uint8_t *', 'buffer')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9240
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9241
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlock::GetAddressLength() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9242
    cls.add_method('GetAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9243
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9244
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9245
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9246
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::PrintAddress(std::ostream & os, std::_List_const_iterator<ns3::Address> iter) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9247
    cls.add_method('PrintAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9248
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9249
                   [param('std::ostream &', 'os'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9250
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9251
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlock::SerializeAddress(uint8_t * buffer, std::_List_const_iterator<ns3::Address> iter) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9252
    cls.add_method('SerializeAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9253
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9254
                   [param('uint8_t *', 'buffer'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9255
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9256
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9257
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9258
def register_Ns3PbbAddressBlockIpv4_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9259
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv4::PbbAddressBlockIpv4(ns3::PbbAddressBlockIpv4 const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9260
    cls.add_constructor([param('ns3::PbbAddressBlockIpv4 const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9261
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv4::PbbAddressBlockIpv4() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9262
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9263
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlockIpv4::DeserializeAddress(uint8_t * buffer) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9264
    cls.add_method('DeserializeAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9265
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9266
                   [param('uint8_t *', 'buffer')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9267
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9268
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlockIpv4::GetAddressLength() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9269
    cls.add_method('GetAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9270
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9271
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9272
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9273
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv4::PrintAddress(std::ostream & os, std::_List_const_iterator<ns3::Address> iter) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9274
    cls.add_method('PrintAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9275
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9276
                   [param('std::ostream &', 'os'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9277
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9278
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv4::SerializeAddress(uint8_t * buffer, std::_List_const_iterator<ns3::Address> iter) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9279
    cls.add_method('SerializeAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9280
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9281
                   [param('uint8_t *', 'buffer'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9282
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9283
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9284
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9285
def register_Ns3PbbAddressBlockIpv6_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9286
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv6::PbbAddressBlockIpv6(ns3::PbbAddressBlockIpv6 const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9287
    cls.add_constructor([param('ns3::PbbAddressBlockIpv6 const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9288
    ## packetbb.h (module 'network'): ns3::PbbAddressBlockIpv6::PbbAddressBlockIpv6() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9289
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9290
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbAddressBlockIpv6::DeserializeAddress(uint8_t * buffer) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9291
    cls.add_method('DeserializeAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9292
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9293
                   [param('uint8_t *', 'buffer')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9294
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9295
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressBlockIpv6::GetAddressLength() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9296
    cls.add_method('GetAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9297
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9298
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9299
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9300
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv6::PrintAddress(std::ostream & os, std::_List_const_iterator<ns3::Address> iter) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9301
    cls.add_method('PrintAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9302
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9303
                   [param('std::ostream &', 'os'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9304
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9305
    ## packetbb.h (module 'network'): void ns3::PbbAddressBlockIpv6::SerializeAddress(uint8_t * buffer, std::_List_const_iterator<ns3::Address> iter) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9306
    cls.add_method('SerializeAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9307
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9308
                   [param('uint8_t *', 'buffer'), param('std::_List_const_iterator< ns3::Address >', 'iter')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9309
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9310
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9311
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9312
def register_Ns3PbbMessage_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9313
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9314
    cls.add_binary_comparison_operator('!=')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9315
    ## packetbb.h (module 'network'): ns3::PbbMessage::PbbMessage(ns3::PbbMessage const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9316
    cls.add_constructor([param('ns3::PbbMessage const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9317
    ## packetbb.h (module 'network'): ns3::PbbMessage::PbbMessage() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9318
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9319
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessage::AddressBlockBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9320
    cls.add_method('AddressBlockBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9321
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9322
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9323
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> const ns3::PbbMessage::AddressBlockBack() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9324
    cls.add_method('AddressBlockBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9325
                   'ns3::Ptr< ns3::PbbAddressBlock > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9326
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9327
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9328
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockBegin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9329
    cls.add_method('AddressBlockBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9330
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9331
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9332
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockBegin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9333
    cls.add_method('AddressBlockBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9334
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9335
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9336
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9337
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockClear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9338
    cls.add_method('AddressBlockClear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9339
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9340
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9341
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::AddressBlockEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9342
    cls.add_method('AddressBlockEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9343
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9344
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9345
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9346
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockEnd() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9347
    cls.add_method('AddressBlockEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9348
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9349
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9350
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9351
    cls.add_method('AddressBlockEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9352
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9353
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9354
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9355
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > ns3::PbbMessage::AddressBlockErase(std::_List_iterator<ns3::Ptr<ns3::PbbAddressBlock> > position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9356
    cls.add_method('AddressBlockErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9357
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9358
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9359
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9360
    cls.add_method('AddressBlockErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9361
                   'std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9362
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbAddressBlock > >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9363
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessage::AddressBlockFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9364
    cls.add_method('AddressBlockFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9365
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9366
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9367
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> const ns3::PbbMessage::AddressBlockFront() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9368
    cls.add_method('AddressBlockFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9369
                   'ns3::Ptr< ns3::PbbAddressBlock > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9370
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9371
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9372
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9373
    cls.add_method('AddressBlockPopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9374
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9375
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9376
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9377
    cls.add_method('AddressBlockPopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9378
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9379
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9380
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPushBack(ns3::Ptr<ns3::PbbAddressBlock> block) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9381
    cls.add_method('AddressBlockPushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9382
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9383
                   [param('ns3::Ptr< ns3::PbbAddressBlock >', 'block')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9384
    ## packetbb.h (module 'network'): void ns3::PbbMessage::AddressBlockPushFront(ns3::Ptr<ns3::PbbAddressBlock> block) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9385
    cls.add_method('AddressBlockPushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9386
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9387
                   [param('ns3::Ptr< ns3::PbbAddressBlock >', 'block')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9388
    ## packetbb.h (module 'network'): int ns3::PbbMessage::AddressBlockSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9389
    cls.add_method('AddressBlockSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9390
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9391
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9392
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9393
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Deserialize(ns3::Buffer::Iterator & start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9394
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9395
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9396
                   [param('ns3::Buffer::Iterator &', 'start')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9397
    ## packetbb.h (module 'network'): static ns3::Ptr<ns3::PbbMessage> ns3::PbbMessage::DeserializeMessage(ns3::Buffer::Iterator & start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9398
    cls.add_method('DeserializeMessage', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9399
                   'ns3::Ptr< ns3::PbbMessage >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9400
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9401
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9402
    ## packetbb.h (module 'network'): uint8_t ns3::PbbMessage::GetHopCount() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9403
    cls.add_method('GetHopCount', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9404
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9405
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9406
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9407
    ## packetbb.h (module 'network'): uint8_t ns3::PbbMessage::GetHopLimit() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9408
    cls.add_method('GetHopLimit', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9409
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9410
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9411
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9412
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessage::GetOriginatorAddress() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9413
    cls.add_method('GetOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9414
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9415
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9416
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9417
    ## packetbb.h (module 'network'): uint16_t ns3::PbbMessage::GetSequenceNumber() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9418
    cls.add_method('GetSequenceNumber', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9419
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9420
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9421
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9422
    ## packetbb.h (module 'network'): uint32_t ns3::PbbMessage::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9423
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9424
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9425
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9426
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9427
    ## packetbb.h (module 'network'): uint8_t ns3::PbbMessage::GetType() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9428
    cls.add_method('GetType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9429
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9430
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9431
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9432
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasHopCount() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9433
    cls.add_method('HasHopCount', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9434
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9435
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9436
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9437
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasHopLimit() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9438
    cls.add_method('HasHopLimit', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9439
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9440
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9441
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9442
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasOriginatorAddress() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9443
    cls.add_method('HasOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9444
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9445
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9446
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9447
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::HasSequenceNumber() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9448
    cls.add_method('HasSequenceNumber', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9449
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9450
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9451
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9452
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9453
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9454
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9455
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9456
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9457
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Print(std::ostream & os, int level) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9458
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9459
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9460
                   [param('std::ostream &', 'os'), param('int', 'level')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9461
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9462
    ## packetbb.h (module 'network'): void ns3::PbbMessage::Serialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9463
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9464
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9465
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9466
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9467
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetHopCount(uint8_t hopcount) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9468
    cls.add_method('SetHopCount', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9469
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9470
                   [param('uint8_t', 'hopcount')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9471
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetHopLimit(uint8_t hoplimit) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9472
    cls.add_method('SetHopLimit', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9473
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9474
                   [param('uint8_t', 'hoplimit')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9475
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetOriginatorAddress(ns3::Address address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9476
    cls.add_method('SetOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9477
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9478
                   [param('ns3::Address', 'address')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9479
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetSequenceNumber(uint16_t seqnum) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9480
    cls.add_method('SetSequenceNumber', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9481
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9482
                   [param('uint16_t', 'seqnum')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9483
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SetType(uint8_t type) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9484
    cls.add_method('SetType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9485
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9486
                   [param('uint8_t', 'type')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9487
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbMessage::TlvBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9488
    cls.add_method('TlvBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9489
                   'ns3::Ptr< ns3::PbbTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9490
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9491
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbMessage::TlvBack() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9492
    cls.add_method('TlvBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9493
                   'ns3::Ptr< ns3::PbbTlv > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9494
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9495
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9496
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvBegin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9497
    cls.add_method('TlvBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9498
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9499
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9500
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvBegin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9501
    cls.add_method('TlvBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9502
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9503
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9504
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9505
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvClear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9506
    cls.add_method('TlvClear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9507
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9508
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9509
    ## packetbb.h (module 'network'): bool ns3::PbbMessage::TlvEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9510
    cls.add_method('TlvEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9511
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9512
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9513
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9514
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvEnd() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9515
    cls.add_method('TlvEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9516
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9517
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9518
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9519
    cls.add_method('TlvEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9520
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9521
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9522
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9523
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbMessage::TlvErase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9524
    cls.add_method('TlvErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9525
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9526
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9527
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9528
    cls.add_method('TlvErase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9529
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9530
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9531
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbMessage::TlvFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9532
    cls.add_method('TlvFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9533
                   'ns3::Ptr< ns3::PbbTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9534
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9535
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbMessage::TlvFront() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9536
    cls.add_method('TlvFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9537
                   'ns3::Ptr< ns3::PbbTlv > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9538
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9539
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9540
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9541
    cls.add_method('TlvPopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9542
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9543
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9544
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9545
    cls.add_method('TlvPopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9546
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9547
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9548
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPushBack(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9549
    cls.add_method('TlvPushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9550
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9551
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9552
    ## packetbb.h (module 'network'): void ns3::PbbMessage::TlvPushFront(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9553
    cls.add_method('TlvPushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9554
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9555
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9556
    ## packetbb.h (module 'network'): int ns3::PbbMessage::TlvSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9557
    cls.add_method('TlvSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9558
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9559
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9560
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9561
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessage::AddressBlockDeserialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9562
    cls.add_method('AddressBlockDeserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9563
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9564
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9565
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9566
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessage::DeserializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9567
    cls.add_method('DeserializeOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9568
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9569
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9570
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9571
    ## packetbb.h (module 'network'): ns3::PbbAddressLength ns3::PbbMessage::GetAddressLength() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9572
    cls.add_method('GetAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9573
                   'ns3::PbbAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9574
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9575
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9576
    ## packetbb.h (module 'network'): void ns3::PbbMessage::PrintOriginatorAddress(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9577
    cls.add_method('PrintOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9578
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9579
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9580
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9581
    ## packetbb.h (module 'network'): void ns3::PbbMessage::SerializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9582
    cls.add_method('SerializeOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9583
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9584
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9585
                   is_pure_virtual=True, is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9586
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9587
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9588
def register_Ns3PbbMessageIpv4_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9589
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv4::PbbMessageIpv4(ns3::PbbMessageIpv4 const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9590
    cls.add_constructor([param('ns3::PbbMessageIpv4 const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9591
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv4::PbbMessageIpv4() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9592
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9593
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessageIpv4::AddressBlockDeserialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9594
    cls.add_method('AddressBlockDeserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9595
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9596
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9597
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9598
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessageIpv4::DeserializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9599
    cls.add_method('DeserializeOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9600
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9601
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9602
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9603
    ## packetbb.h (module 'network'): ns3::PbbAddressLength ns3::PbbMessageIpv4::GetAddressLength() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9604
    cls.add_method('GetAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9605
                   'ns3::PbbAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9606
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9607
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9608
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv4::PrintOriginatorAddress(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9609
    cls.add_method('PrintOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9610
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9611
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9612
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9613
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv4::SerializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9614
    cls.add_method('SerializeOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9615
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9616
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9617
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9618
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9619
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9620
def register_Ns3PbbMessageIpv6_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9621
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv6::PbbMessageIpv6(ns3::PbbMessageIpv6 const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9622
    cls.add_constructor([param('ns3::PbbMessageIpv6 const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9623
    ## packetbb.h (module 'network'): ns3::PbbMessageIpv6::PbbMessageIpv6() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9624
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9625
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbAddressBlock> ns3::PbbMessageIpv6::AddressBlockDeserialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9626
    cls.add_method('AddressBlockDeserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9627
                   'ns3::Ptr< ns3::PbbAddressBlock >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9628
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9629
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9630
    ## packetbb.h (module 'network'): ns3::Address ns3::PbbMessageIpv6::DeserializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9631
    cls.add_method('DeserializeOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9632
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9633
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9634
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9635
    ## packetbb.h (module 'network'): ns3::PbbAddressLength ns3::PbbMessageIpv6::GetAddressLength() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9636
    cls.add_method('GetAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9637
                   'ns3::PbbAddressLength', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9638
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9639
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9640
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv6::PrintOriginatorAddress(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9641
    cls.add_method('PrintOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9642
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9643
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9644
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9645
    ## packetbb.h (module 'network'): void ns3::PbbMessageIpv6::SerializeOriginatorAddress(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9646
    cls.add_method('SerializeOriginatorAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9647
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9648
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9649
                   is_const=True, visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9650
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9651
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9652
def register_Ns3PbbPacket_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9653
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9654
    cls.add_binary_comparison_operator('!=')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9655
    ## packetbb.h (module 'network'): ns3::PbbPacket::PbbPacket(ns3::PbbPacket const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9656
    cls.add_constructor([param('ns3::PbbPacket const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9657
    ## packetbb.h (module 'network'): ns3::PbbPacket::PbbPacket() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9658
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9659
    ## packetbb.h (module 'network'): uint32_t ns3::PbbPacket::Deserialize(ns3::Buffer::Iterator start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9660
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9661
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9662
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9663
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9664
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9665
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9666
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9667
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9668
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9669
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9670
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9671
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9672
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::Erase(std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > position) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9673
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9674
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9675
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 'position')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9676
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9677
    cls.add_method('Erase', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9678
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9679
                   [param('std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 'first'), param('std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 'last')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9680
    ## packetbb.h (module 'network'): ns3::TypeId ns3::PbbPacket::GetInstanceTypeId() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9681
    cls.add_method('GetInstanceTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9682
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9683
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9684
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9685
    ## packetbb.h (module 'network'): uint16_t ns3::PbbPacket::GetSequenceNumber() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9686
    cls.add_method('GetSequenceNumber', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9687
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9688
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9689
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9690
    ## packetbb.h (module 'network'): uint32_t ns3::PbbPacket::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9691
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9692
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9693
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9694
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9695
    ## packetbb.h (module 'network'): static ns3::TypeId ns3::PbbPacket::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9696
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9697
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9698
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9699
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9700
    ## packetbb.h (module 'network'): uint8_t ns3::PbbPacket::GetVersion() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9701
    cls.add_method('GetVersion', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9702
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9703
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9704
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9705
    ## packetbb.h (module 'network'): bool ns3::PbbPacket::HasSequenceNumber() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9706
    cls.add_method('HasSequenceNumber', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9707
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9708
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9709
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9710
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> ns3::PbbPacket::MessageBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9711
    cls.add_method('MessageBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9712
                   'ns3::Ptr< ns3::PbbMessage >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9713
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9714
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> const ns3::PbbPacket::MessageBack() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9715
    cls.add_method('MessageBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9716
                   'ns3::Ptr< ns3::PbbMessage > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9717
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9718
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9719
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageBegin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9720
    cls.add_method('MessageBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9721
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9722
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9723
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageBegin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9724
    cls.add_method('MessageBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9725
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbMessage > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9726
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9727
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9728
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessageClear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9729
    cls.add_method('MessageClear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9730
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9731
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9732
    ## packetbb.h (module 'network'): bool ns3::PbbPacket::MessageEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9733
    cls.add_method('MessageEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9734
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9735
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9736
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9737
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageEnd() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9738
    cls.add_method('MessageEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9739
                   'std::_List_iterator< ns3::Ptr< ns3::PbbMessage > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9740
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9741
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbMessage> > ns3::PbbPacket::MessageEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9742
    cls.add_method('MessageEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9743
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbMessage > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9744
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9745
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9746
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> ns3::PbbPacket::MessageFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9747
    cls.add_method('MessageFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9748
                   'ns3::Ptr< ns3::PbbMessage >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9749
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9750
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbMessage> const ns3::PbbPacket::MessageFront() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9751
    cls.add_method('MessageFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9752
                   'ns3::Ptr< ns3::PbbMessage > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9753
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9754
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9755
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9756
    cls.add_method('MessagePopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9757
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9758
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9759
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9760
    cls.add_method('MessagePopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9761
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9762
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9763
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePushBack(ns3::Ptr<ns3::PbbMessage> message) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9764
    cls.add_method('MessagePushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9765
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9766
                   [param('ns3::Ptr< ns3::PbbMessage >', 'message')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9767
    ## packetbb.h (module 'network'): void ns3::PbbPacket::MessagePushFront(ns3::Ptr<ns3::PbbMessage> message) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9768
    cls.add_method('MessagePushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9769
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9770
                   [param('ns3::Ptr< ns3::PbbMessage >', 'message')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9771
    ## packetbb.h (module 'network'): int ns3::PbbPacket::MessageSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9772
    cls.add_method('MessageSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9773
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9774
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9775
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9776
    ## packetbb.h (module 'network'): void ns3::PbbPacket::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9777
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9778
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9779
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9780
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9781
    ## packetbb.h (module 'network'): void ns3::PbbPacket::Serialize(ns3::Buffer::Iterator start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9782
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9783
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9784
                   [param('ns3::Buffer::Iterator', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9785
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9786
    ## packetbb.h (module 'network'): void ns3::PbbPacket::SetSequenceNumber(uint16_t number) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9787
    cls.add_method('SetSequenceNumber', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9788
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9789
                   [param('uint16_t', 'number')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9790
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbPacket::TlvBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9791
    cls.add_method('TlvBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9792
                   'ns3::Ptr< ns3::PbbTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9793
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9794
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbPacket::TlvBack() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9795
    cls.add_method('TlvBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9796
                   'ns3::Ptr< ns3::PbbTlv > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9797
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9798
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9799
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvBegin() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9800
    cls.add_method('TlvBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9801
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9802
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9803
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvBegin() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9804
    cls.add_method('TlvBegin', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9805
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9806
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9807
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9808
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvClear() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9809
    cls.add_method('TlvClear', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9810
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9811
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9812
    ## packetbb.h (module 'network'): bool ns3::PbbPacket::TlvEmpty() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9813
    cls.add_method('TlvEmpty', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9814
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9815
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9816
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9817
    ## packetbb.h (module 'network'): std::_List_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvEnd() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9818
    cls.add_method('TlvEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9819
                   'std::_List_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9820
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9821
    ## packetbb.h (module 'network'): std::_List_const_iterator<ns3::Ptr<ns3::PbbTlv> > ns3::PbbPacket::TlvEnd() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9822
    cls.add_method('TlvEnd', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9823
                   'std::_List_const_iterator< ns3::Ptr< ns3::PbbTlv > >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9824
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9825
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9826
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> ns3::PbbPacket::TlvFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9827
    cls.add_method('TlvFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9828
                   'ns3::Ptr< ns3::PbbTlv >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9829
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9830
    ## packetbb.h (module 'network'): ns3::Ptr<ns3::PbbTlv> const ns3::PbbPacket::TlvFront() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9831
    cls.add_method('TlvFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9832
                   'ns3::Ptr< ns3::PbbTlv > const', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9833
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9834
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9835
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPopBack() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9836
    cls.add_method('TlvPopBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9837
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9838
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9839
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPopFront() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9840
    cls.add_method('TlvPopFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9841
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9842
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9843
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPushBack(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9844
    cls.add_method('TlvPushBack', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9845
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9846
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9847
    ## packetbb.h (module 'network'): void ns3::PbbPacket::TlvPushFront(ns3::Ptr<ns3::PbbTlv> tlv) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9848
    cls.add_method('TlvPushFront', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9849
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9850
                   [param('ns3::Ptr< ns3::PbbTlv >', 'tlv')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9851
    ## packetbb.h (module 'network'): int ns3::PbbPacket::TlvSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9852
    cls.add_method('TlvSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9853
                   'int', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9854
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9855
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9856
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9857
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9858
def register_Ns3PbbTlv_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9859
    cls.add_binary_comparison_operator('==')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9860
    cls.add_binary_comparison_operator('!=')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9861
    ## packetbb.h (module 'network'): ns3::PbbTlv::PbbTlv(ns3::PbbTlv const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9862
    cls.add_constructor([param('ns3::PbbTlv const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9863
    ## packetbb.h (module 'network'): ns3::PbbTlv::PbbTlv() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9864
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9865
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Deserialize(ns3::Buffer::Iterator & start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9866
    cls.add_method('Deserialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9867
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9868
                   [param('ns3::Buffer::Iterator &', 'start')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9869
    ## packetbb.h (module 'network'): uint32_t ns3::PbbTlv::GetSerializedSize() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9870
    cls.add_method('GetSerializedSize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9871
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9872
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9873
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9874
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetType() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9875
    cls.add_method('GetType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9876
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9877
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9878
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9879
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetTypeExt() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9880
    cls.add_method('GetTypeExt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9881
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9882
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9883
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9884
    ## packetbb.h (module 'network'): ns3::Buffer ns3::PbbTlv::GetValue() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9885
    cls.add_method('GetValue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9886
                   'ns3::Buffer', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9887
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9888
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9889
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasTypeExt() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9890
    cls.add_method('HasTypeExt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9891
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9892
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9893
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9894
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasValue() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9895
    cls.add_method('HasValue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9896
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9897
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9898
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9899
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Print(std::ostream & os) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9900
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9901
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9902
                   [param('std::ostream &', 'os')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9903
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9904
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Print(std::ostream & os, int level) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9905
    cls.add_method('Print', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9906
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9907
                   [param('std::ostream &', 'os'), param('int', 'level')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9908
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9909
    ## packetbb.h (module 'network'): void ns3::PbbTlv::Serialize(ns3::Buffer::Iterator & start) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9910
    cls.add_method('Serialize', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9911
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9912
                   [param('ns3::Buffer::Iterator &', 'start')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9913
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9914
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetType(uint8_t type) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9915
    cls.add_method('SetType', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9916
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9917
                   [param('uint8_t', 'type')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9918
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetTypeExt(uint8_t type) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9919
    cls.add_method('SetTypeExt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9920
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9921
                   [param('uint8_t', 'type')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9922
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetValue(ns3::Buffer start) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9923
    cls.add_method('SetValue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9924
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9925
                   [param('ns3::Buffer', 'start')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9926
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetValue(uint8_t const * buffer, uint32_t size) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9927
    cls.add_method('SetValue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9928
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9929
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9930
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetIndexStart() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9931
    cls.add_method('GetIndexStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9932
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9933
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9934
                   is_const=True, visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9935
    ## packetbb.h (module 'network'): uint8_t ns3::PbbTlv::GetIndexStop() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9936
    cls.add_method('GetIndexStop', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9937
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9938
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9939
                   is_const=True, visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9940
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasIndexStart() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9941
    cls.add_method('HasIndexStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9942
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9943
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9944
                   is_const=True, visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9945
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::HasIndexStop() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9946
    cls.add_method('HasIndexStop', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9947
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9948
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9949
                   is_const=True, visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9950
    ## packetbb.h (module 'network'): bool ns3::PbbTlv::IsMultivalue() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9951
    cls.add_method('IsMultivalue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9952
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9953
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9954
                   is_const=True, visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9955
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetIndexStart(uint8_t index) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9956
    cls.add_method('SetIndexStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9957
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9958
                   [param('uint8_t', 'index')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9959
                   visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9960
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetIndexStop(uint8_t index) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9961
    cls.add_method('SetIndexStop', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9962
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9963
                   [param('uint8_t', 'index')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9964
                   visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9965
    ## packetbb.h (module 'network'): void ns3::PbbTlv::SetMultivalue(bool isMultivalue) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9966
    cls.add_method('SetMultivalue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9967
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9968
                   [param('bool', 'isMultivalue')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9969
                   visibility='protected')
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9970
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  9971
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9972
def register_Ns3Ping6_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9973
    ## ping6.h (module 'applications'): ns3::Ping6::Ping6(ns3::Ping6 const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9974
    cls.add_constructor([param('ns3::Ping6 const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9975
    ## ping6.h (module 'applications'): ns3::Ping6::Ping6() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9976
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9977
    ## ping6.h (module 'applications'): static ns3::TypeId ns3::Ping6::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9978
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9979
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9980
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9981
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9982
    ## ping6.h (module 'applications'): void ns3::Ping6::SetIfIndex(uint32_t ifIndex) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9983
    cls.add_method('SetIfIndex', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9984
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9985
                   [param('uint32_t', 'ifIndex')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9986
    ## ping6.h (module 'applications'): void ns3::Ping6::SetLocal(ns3::Ipv6Address ipv6) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9987
    cls.add_method('SetLocal', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9988
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9989
                   [param('ns3::Ipv6Address', 'ipv6')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9990
    ## ping6.h (module 'applications'): void ns3::Ping6::SetRemote(ns3::Ipv6Address ipv6) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9991
    cls.add_method('SetRemote', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9992
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9993
                   [param('ns3::Ipv6Address', 'ipv6')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9994
    ## ping6.h (module 'applications'): void ns3::Ping6::SetRouters(std::vector<ns3::Ipv6Address, std::allocator<ns3::Ipv6Address> > routers) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9995
    cls.add_method('SetRouters', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9996
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9997
                   [param('std::vector< ns3::Ipv6Address >', 'routers')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9998
    ## ping6.h (module 'applications'): void ns3::Ping6::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9999
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10000
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10001
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10002
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10003
    ## ping6.h (module 'applications'): void ns3::Ping6::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10004
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10005
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10006
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10007
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10008
    ## ping6.h (module 'applications'): void ns3::Ping6::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10009
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10010
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10011
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10012
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10013
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10014
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10015
def register_Ns3Probe_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10016
    ## probe.h (module 'stats'): ns3::Probe::Probe(ns3::Probe const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10017
    cls.add_constructor([param('ns3::Probe const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10018
    ## probe.h (module 'stats'): ns3::Probe::Probe() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10019
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10020
    ## probe.h (module 'stats'): bool ns3::Probe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10021
    cls.add_method('ConnectByObject', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10022
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10023
                   [param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10024
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10025
    ## probe.h (module 'stats'): void ns3::Probe::ConnectByPath(std::string path) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10026
    cls.add_method('ConnectByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10027
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10028
                   [param('std::string', 'path')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10029
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10030
    ## probe.h (module 'stats'): static ns3::TypeId ns3::Probe::GetTypeId() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10031
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10032
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10033
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10034
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10035
    ## probe.h (module 'stats'): bool ns3::Probe::IsEnabled() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10036
    cls.add_method('IsEnabled', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10037
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10038
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10039
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10040
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10041
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10042
def register_Ns3Radvd_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10043
    ## radvd.h (module 'applications'): ns3::Radvd::Radvd(ns3::Radvd const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10044
    cls.add_constructor([param('ns3::Radvd const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10045
    ## radvd.h (module 'applications'): ns3::Radvd::Radvd() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10046
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10047
    ## radvd.h (module 'applications'): void ns3::Radvd::AddConfiguration(ns3::Ptr<ns3::RadvdInterface> routerInterface) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10048
    cls.add_method('AddConfiguration', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10049
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10050
                   [param('ns3::Ptr< ns3::RadvdInterface >', 'routerInterface')])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
 10051
    ## radvd.h (module 'applications'): int64_t ns3::Radvd::AssignStreams(int64_t stream) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
 10052
    cls.add_method('AssignStreams', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
 10053
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
 10054
                   [param('int64_t', 'stream')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10055
    ## radvd.h (module 'applications'): static ns3::TypeId ns3::Radvd::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10056
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10057
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10058
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10059
                   is_static=True)
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10060
    ## radvd.h (module 'applications'): ns3::Radvd::MAX_INITIAL_RTR_ADVERTISEMENTS [variable]
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10061
    cls.add_static_attribute('MAX_INITIAL_RTR_ADVERTISEMENTS', 'uint32_t const', is_const=True)
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10062
    ## radvd.h (module 'applications'): ns3::Radvd::MAX_INITIAL_RTR_ADVERT_INTERVAL [variable]
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10063
    cls.add_static_attribute('MAX_INITIAL_RTR_ADVERT_INTERVAL', 'uint32_t const', is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10064
    ## radvd.h (module 'applications'): ns3::Radvd::MAX_RA_DELAY_TIME [variable]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10065
    cls.add_static_attribute('MAX_RA_DELAY_TIME', 'uint32_t const', is_const=True)
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10066
    ## radvd.h (module 'applications'): ns3::Radvd::MIN_DELAY_BETWEEN_RAS [variable]
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10067
    cls.add_static_attribute('MIN_DELAY_BETWEEN_RAS', 'uint32_t const', is_const=True)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10068
    ## radvd.h (module 'applications'): void ns3::Radvd::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10069
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10070
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10071
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10072
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10073
    ## radvd.h (module 'applications'): void ns3::Radvd::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10074
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10075
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10076
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10077
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10078
    ## radvd.h (module 'applications'): void ns3::Radvd::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10079
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10080
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10081
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10082
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10083
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10084
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10085
def register_Ns3RadvdInterface_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10086
    ## radvd-interface.h (module 'applications'): ns3::RadvdInterface::RadvdInterface(ns3::RadvdInterface const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10087
    cls.add_constructor([param('ns3::RadvdInterface const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10088
    ## radvd-interface.h (module 'applications'): ns3::RadvdInterface::RadvdInterface(uint32_t interface) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10089
    cls.add_constructor([param('uint32_t', 'interface')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10090
    ## radvd-interface.h (module 'applications'): ns3::RadvdInterface::RadvdInterface(uint32_t interface, uint32_t maxRtrAdvInterval, uint32_t minRtrAdvInterval) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10091
    cls.add_constructor([param('uint32_t', 'interface'), param('uint32_t', 'maxRtrAdvInterval'), param('uint32_t', 'minRtrAdvInterval')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10092
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::AddPrefix(ns3::Ptr<ns3::RadvdPrefix> routerPrefix) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10093
    cls.add_method('AddPrefix', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10094
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10095
                   [param('ns3::Ptr< ns3::RadvdPrefix >', 'routerPrefix')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10096
    ## radvd-interface.h (module 'applications'): uint8_t ns3::RadvdInterface::GetCurHopLimit() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10097
    cls.add_method('GetCurHopLimit', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10098
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10099
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10100
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10101
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetDefaultLifeTime() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10102
    cls.add_method('GetDefaultLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10103
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10104
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10105
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10106
    ## radvd-interface.h (module 'applications'): uint8_t ns3::RadvdInterface::GetDefaultPreference() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10107
    cls.add_method('GetDefaultPreference', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10108
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10109
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10110
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10111
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetHomeAgentLifeTime() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10112
    cls.add_method('GetHomeAgentLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10113
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10114
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10115
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10116
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetHomeAgentPreference() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10117
    cls.add_method('GetHomeAgentPreference', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10118
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10119
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10120
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10121
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetInterface() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10122
    cls.add_method('GetInterface', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10123
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10124
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10125
                   is_const=True)
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10126
    ## radvd-interface.h (module 'applications'): ns3::Time ns3::RadvdInterface::GetLastRaTxTime() [member function]
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10127
    cls.add_method('GetLastRaTxTime', 
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10128
                   'ns3::Time', 
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10129
                   [])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10130
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetLinkMtu() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10131
    cls.add_method('GetLinkMtu', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10132
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10133
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10134
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10135
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetMaxRtrAdvInterval() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10136
    cls.add_method('GetMaxRtrAdvInterval', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10137
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10138
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10139
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10140
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetMinDelayBetweenRAs() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10141
    cls.add_method('GetMinDelayBetweenRAs', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10142
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10143
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10144
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10145
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetMinRtrAdvInterval() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10146
    cls.add_method('GetMinRtrAdvInterval', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10147
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10148
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10149
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10150
    ## radvd-interface.h (module 'applications'): std::list<ns3::Ptr<ns3::RadvdPrefix>, std::allocator<ns3::Ptr<ns3::RadvdPrefix> > > ns3::RadvdInterface::GetPrefixes() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10151
    cls.add_method('GetPrefixes', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10152
                   'std::list< ns3::Ptr< ns3::RadvdPrefix > >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10153
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10154
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10155
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetReachableTime() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10156
    cls.add_method('GetReachableTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10157
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10158
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10159
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10160
    ## radvd-interface.h (module 'applications'): uint32_t ns3::RadvdInterface::GetRetransTimer() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10161
    cls.add_method('GetRetransTimer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10162
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10163
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10164
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10165
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsHomeAgentFlag() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10166
    cls.add_method('IsHomeAgentFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10167
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10168
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10169
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10170
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsHomeAgentInfo() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10171
    cls.add_method('IsHomeAgentInfo', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10172
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10173
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10174
                   is_const=True)
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10175
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsInitialRtrAdv() [member function]
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10176
    cls.add_method('IsInitialRtrAdv', 
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10177
                   'bool', 
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10178
                   [])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10179
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsIntervalOpt() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10180
    cls.add_method('IsIntervalOpt', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10181
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10182
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10183
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10184
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsManagedFlag() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10185
    cls.add_method('IsManagedFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10186
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10187
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10188
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10189
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsMobRtrSupportFlag() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10190
    cls.add_method('IsMobRtrSupportFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10191
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10192
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10193
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10194
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsOtherConfigFlag() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10195
    cls.add_method('IsOtherConfigFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10196
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10197
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10198
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10199
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsSendAdvert() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10200
    cls.add_method('IsSendAdvert', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10201
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10202
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10203
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10204
    ## radvd-interface.h (module 'applications'): bool ns3::RadvdInterface::IsSourceLLAddress() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10205
    cls.add_method('IsSourceLLAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10206
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10207
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10208
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10209
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetCurHopLimit(uint8_t curHopLimit) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10210
    cls.add_method('SetCurHopLimit', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10211
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10212
                   [param('uint8_t', 'curHopLimit')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10213
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetDefaultLifeTime(uint32_t defaultLifeTime) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10214
    cls.add_method('SetDefaultLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10215
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10216
                   [param('uint32_t', 'defaultLifeTime')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10217
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetDefaultPreference(uint8_t defaultPreference) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10218
    cls.add_method('SetDefaultPreference', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10219
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10220
                   [param('uint8_t', 'defaultPreference')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10221
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetHomeAgentFlag(bool homeAgentFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10222
    cls.add_method('SetHomeAgentFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10223
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10224
                   [param('bool', 'homeAgentFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10225
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetHomeAgentInfo(bool homeAgentFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10226
    cls.add_method('SetHomeAgentInfo', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10227
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10228
                   [param('bool', 'homeAgentFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10229
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetHomeAgentLifeTime(uint32_t homeAgentLifeTime) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10230
    cls.add_method('SetHomeAgentLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10231
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10232
                   [param('uint32_t', 'homeAgentLifeTime')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10233
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetHomeAgentPreference(uint32_t homeAgentPreference) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10234
    cls.add_method('SetHomeAgentPreference', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10235
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10236
                   [param('uint32_t', 'homeAgentPreference')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10237
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetIntervalOpt(bool intervalOpt) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10238
    cls.add_method('SetIntervalOpt', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10239
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10240
                   [param('bool', 'intervalOpt')])
11062
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10241
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetLastRaTxTime(ns3::Time now) [member function]
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10242
    cls.add_method('SetLastRaTxTime', 
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10243
                   'void', 
91a7bee99048 Bug 2016 - Radvd do not consider the SendAdvert option and don't reply to RS
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 11024
diff changeset
 10244
                   [param('ns3::Time', 'now')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10245
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetLinkMtu(uint32_t linkMtu) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10246
    cls.add_method('SetLinkMtu', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10247
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10248
                   [param('uint32_t', 'linkMtu')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10249
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetManagedFlag(bool managedFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10250
    cls.add_method('SetManagedFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10251
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10252
                   [param('bool', 'managedFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10253
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetMaxRtrAdvInterval(uint32_t maxRtrAdvInterval) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10254
    cls.add_method('SetMaxRtrAdvInterval', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10255
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10256
                   [param('uint32_t', 'maxRtrAdvInterval')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10257
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetMinDelayBetweenRAs(uint32_t minDelayBetweenRAs) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10258
    cls.add_method('SetMinDelayBetweenRAs', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10259
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10260
                   [param('uint32_t', 'minDelayBetweenRAs')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10261
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetMinRtrAdvInterval(uint32_t minRtrAdvInterval) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10262
    cls.add_method('SetMinRtrAdvInterval', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10263
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10264
                   [param('uint32_t', 'minRtrAdvInterval')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10265
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetMobRtrSupportFlag(bool mobRtrSupportFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10266
    cls.add_method('SetMobRtrSupportFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10267
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10268
                   [param('bool', 'mobRtrSupportFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10269
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetOtherConfigFlag(bool otherConfigFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10270
    cls.add_method('SetOtherConfigFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10271
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10272
                   [param('bool', 'otherConfigFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10273
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetReachableTime(uint32_t reachableTime) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10274
    cls.add_method('SetReachableTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10275
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10276
                   [param('uint32_t', 'reachableTime')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10277
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetRetransTimer(uint32_t retransTimer) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10278
    cls.add_method('SetRetransTimer', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10279
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10280
                   [param('uint32_t', 'retransTimer')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10281
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetSendAdvert(bool sendAdvert) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10282
    cls.add_method('SetSendAdvert', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10283
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10284
                   [param('bool', 'sendAdvert')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10285
    ## radvd-interface.h (module 'applications'): void ns3::RadvdInterface::SetSourceLLAddress(bool sourceLLAddress) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10286
    cls.add_method('SetSourceLLAddress', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10287
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10288
                   [param('bool', 'sourceLLAddress')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10289
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10290
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10291
def register_Ns3RadvdPrefix_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10292
    ## radvd-prefix.h (module 'applications'): ns3::RadvdPrefix::RadvdPrefix(ns3::RadvdPrefix const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10293
    cls.add_constructor([param('ns3::RadvdPrefix const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10294
    ## radvd-prefix.h (module 'applications'): ns3::RadvdPrefix::RadvdPrefix(ns3::Ipv6Address network, uint8_t prefixLength, uint32_t preferredLifeTime=604800, uint32_t validLifeTime=2592000, bool onLinkFlag=true, bool autonomousFlag=true, bool routerAddrFlag=false) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10295
    cls.add_constructor([param('ns3::Ipv6Address', 'network'), param('uint8_t', 'prefixLength'), param('uint32_t', 'preferredLifeTime', default_value='604800'), param('uint32_t', 'validLifeTime', default_value='2592000'), param('bool', 'onLinkFlag', default_value='true'), param('bool', 'autonomousFlag', default_value='true'), param('bool', 'routerAddrFlag', default_value='false')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10296
    ## radvd-prefix.h (module 'applications'): ns3::Ipv6Address ns3::RadvdPrefix::GetNetwork() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10297
    cls.add_method('GetNetwork', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10298
                   'ns3::Ipv6Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10299
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10300
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10301
    ## radvd-prefix.h (module 'applications'): uint32_t ns3::RadvdPrefix::GetPreferredLifeTime() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10302
    cls.add_method('GetPreferredLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10303
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10304
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10305
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10306
    ## radvd-prefix.h (module 'applications'): uint8_t ns3::RadvdPrefix::GetPrefixLength() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10307
    cls.add_method('GetPrefixLength', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10308
                   'uint8_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10309
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10310
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10311
    ## radvd-prefix.h (module 'applications'): uint32_t ns3::RadvdPrefix::GetValidLifeTime() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10312
    cls.add_method('GetValidLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10313
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10314
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10315
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10316
    ## radvd-prefix.h (module 'applications'): bool ns3::RadvdPrefix::IsAutonomousFlag() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10317
    cls.add_method('IsAutonomousFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10318
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10319
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10320
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10321
    ## radvd-prefix.h (module 'applications'): bool ns3::RadvdPrefix::IsOnLinkFlag() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10322
    cls.add_method('IsOnLinkFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10323
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10324
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10325
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10326
    ## radvd-prefix.h (module 'applications'): bool ns3::RadvdPrefix::IsRouterAddrFlag() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10327
    cls.add_method('IsRouterAddrFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10328
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10329
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10330
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10331
    ## radvd-prefix.h (module 'applications'): void ns3::RadvdPrefix::SetAutonomousFlag(bool autonomousFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10332
    cls.add_method('SetAutonomousFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10333
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10334
                   [param('bool', 'autonomousFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10335
    ## radvd-prefix.h (module 'applications'): void ns3::RadvdPrefix::SetNetwork(ns3::Ipv6Address network) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10336
    cls.add_method('SetNetwork', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10337
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10338
                   [param('ns3::Ipv6Address', 'network')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10339
    ## radvd-prefix.h (module 'applications'): void ns3::RadvdPrefix::SetOnLinkFlag(bool onLinkFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10340
    cls.add_method('SetOnLinkFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10341
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10342
                   [param('bool', 'onLinkFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10343
    ## radvd-prefix.h (module 'applications'): void ns3::RadvdPrefix::SetPreferredLifeTime(uint32_t preferredLifeTime) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10344
    cls.add_method('SetPreferredLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10345
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10346
                   [param('uint32_t', 'preferredLifeTime')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10347
    ## radvd-prefix.h (module 'applications'): void ns3::RadvdPrefix::SetPrefixLength(uint8_t prefixLength) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10348
    cls.add_method('SetPrefixLength', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10349
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10350
                   [param('uint8_t', 'prefixLength')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10351
    ## radvd-prefix.h (module 'applications'): void ns3::RadvdPrefix::SetRouterAddrFlag(bool routerAddrFlag) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10352
    cls.add_method('SetRouterAddrFlag', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10353
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10354
                   [param('bool', 'routerAddrFlag')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10355
    ## radvd-prefix.h (module 'applications'): void ns3::RadvdPrefix::SetValidLifeTime(uint32_t validLifeTime) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10356
    cls.add_method('SetValidLifeTime', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10357
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10358
                   [param('uint32_t', 'validLifeTime')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10359
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10360
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10361
def register_Ns3RateErrorModel_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10362
    ## error-model.h (module 'network'): ns3::RateErrorModel::RateErrorModel(ns3::RateErrorModel const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10363
    cls.add_constructor([param('ns3::RateErrorModel const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10364
    ## error-model.h (module 'network'): ns3::RateErrorModel::RateErrorModel() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10365
    cls.add_constructor([])
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10366
    ## error-model.h (module 'network'): int64_t ns3::RateErrorModel::AssignStreams(int64_t stream) [member function]
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10367
    cls.add_method('AssignStreams', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10368
                   'int64_t', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10369
                   [param('int64_t', 'stream')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10370
    ## error-model.h (module 'network'): double ns3::RateErrorModel::GetRate() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10371
    cls.add_method('GetRate', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10372
                   'double', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10373
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10374
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10375
    ## error-model.h (module 'network'): static ns3::TypeId ns3::RateErrorModel::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10376
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10377
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10378
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10379
                   is_static=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10380
    ## error-model.h (module 'network'): ns3::RateErrorModel::ErrorUnit ns3::RateErrorModel::GetUnit() const [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10381
    cls.add_method('GetUnit', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10382
                   'ns3::RateErrorModel::ErrorUnit', 
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10383
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10384
                   is_const=True)
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10385
    ## error-model.h (module 'network'): void ns3::RateErrorModel::SetRandomVariable(ns3::Ptr<ns3::RandomVariableStream> arg0) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10386
    cls.add_method('SetRandomVariable', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10387
                   'void', 
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10388
                   [param('ns3::Ptr< ns3::RandomVariableStream >', 'arg0')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10389
    ## error-model.h (module 'network'): void ns3::RateErrorModel::SetRate(double rate) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10390
    cls.add_method('SetRate', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10391
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10392
                   [param('double', 'rate')])
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10393
    ## error-model.h (module 'network'): void ns3::RateErrorModel::SetUnit(ns3::RateErrorModel::ErrorUnit error_unit) [member function]
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10394
    cls.add_method('SetUnit', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10395
                   'void', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10396
                   [param('ns3::RateErrorModel::ErrorUnit', 'error_unit')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10397
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10398
    cls.add_method('DoCorrupt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10399
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10400
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10401
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10402
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorruptBit(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10403
    cls.add_method('DoCorruptBit', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10404
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10405
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10406
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10407
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorruptByte(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10408
    cls.add_method('DoCorruptByte', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10409
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10410
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10411
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10412
    ## error-model.h (module 'network'): bool ns3::RateErrorModel::DoCorruptPkt(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10413
    cls.add_method('DoCorruptPkt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10414
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10415
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10416
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10417
    ## error-model.h (module 'network'): void ns3::RateErrorModel::DoReset() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10418
    cls.add_method('DoReset', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10419
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10420
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10421
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10422
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10423
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10424
def register_Ns3ReceiveListErrorModel_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10425
    ## error-model.h (module 'network'): ns3::ReceiveListErrorModel::ReceiveListErrorModel(ns3::ReceiveListErrorModel const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10426
    cls.add_constructor([param('ns3::ReceiveListErrorModel const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10427
    ## error-model.h (module 'network'): ns3::ReceiveListErrorModel::ReceiveListErrorModel() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10428
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10429
    ## error-model.h (module 'network'): std::list<unsigned int, std::allocator<unsigned int> > ns3::ReceiveListErrorModel::GetList() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10430
    cls.add_method('GetList', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10431
                   'std::list< unsigned int >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10432
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10433
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10434
    ## error-model.h (module 'network'): static ns3::TypeId ns3::ReceiveListErrorModel::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10435
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10436
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10437
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10438
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10439
    ## error-model.h (module 'network'): void ns3::ReceiveListErrorModel::SetList(std::list<unsigned int, std::allocator<unsigned int> > const & packetlist) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10440
    cls.add_method('SetList', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10441
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10442
                   [param('std::list< unsigned int > const &', 'packetlist')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10443
    ## error-model.h (module 'network'): bool ns3::ReceiveListErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10444
    cls.add_method('DoCorrupt', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10445
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10446
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10447
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10448
    ## error-model.h (module 'network'): void ns3::ReceiveListErrorModel::DoReset() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10449
    cls.add_method('DoReset', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10450
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10451
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10452
                   visibility='private', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10453
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10454
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10455
def register_Ns3SimpleChannel_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10456
    ## simple-channel.h (module 'network'): ns3::SimpleChannel::SimpleChannel(ns3::SimpleChannel const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10457
    cls.add_constructor([param('ns3::SimpleChannel const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10458
    ## simple-channel.h (module 'network'): ns3::SimpleChannel::SimpleChannel() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10459
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10460
    ## simple-channel.h (module 'network'): void ns3::SimpleChannel::Add(ns3::Ptr<ns3::SimpleNetDevice> device) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10461
    cls.add_method('Add', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10462
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10463
                   [param('ns3::Ptr< ns3::SimpleNetDevice >', 'device')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10464
                   is_virtual=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10465
    ## simple-channel.h (module 'network'): void ns3::SimpleChannel::BlackList(ns3::Ptr<ns3::SimpleNetDevice> from, ns3::Ptr<ns3::SimpleNetDevice> to) [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10466
    cls.add_method('BlackList', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10467
                   'void', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10468
                   [param('ns3::Ptr< ns3::SimpleNetDevice >', 'from'), param('ns3::Ptr< ns3::SimpleNetDevice >', 'to')], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10469
                   is_virtual=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10470
    ## simple-channel.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::SimpleChannel::GetDevice(uint32_t i) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10471
    cls.add_method('GetDevice', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10472
                   'ns3::Ptr< ns3::NetDevice >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10473
                   [param('uint32_t', 'i')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10474
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10475
    ## simple-channel.h (module 'network'): uint32_t ns3::SimpleChannel::GetNDevices() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10476
    cls.add_method('GetNDevices', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10477
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10478
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10479
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10480
    ## simple-channel.h (module 'network'): static ns3::TypeId ns3::SimpleChannel::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10481
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10482
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10483
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10484
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10485
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10486
    cls.add_method('Send', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10487
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10488
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint16_t', 'protocol'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from'), param('ns3::Ptr< ns3::SimpleNetDevice >', 'sender')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10489
                   is_virtual=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10490
    ## simple-channel.h (module 'network'): void ns3::SimpleChannel::UnBlackList(ns3::Ptr<ns3::SimpleNetDevice> from, ns3::Ptr<ns3::SimpleNetDevice> to) [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10491
    cls.add_method('UnBlackList', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10492
                   'void', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10493
                   [param('ns3::Ptr< ns3::SimpleNetDevice >', 'from'), param('ns3::Ptr< ns3::SimpleNetDevice >', 'to')], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 10494
                   is_virtual=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10495
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10496
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10497
def register_Ns3SimpleNetDevice_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10498
    ## simple-net-device.h (module 'network'): ns3::SimpleNetDevice::SimpleNetDevice(ns3::SimpleNetDevice const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10499
    cls.add_constructor([param('ns3::SimpleNetDevice const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10500
    ## simple-net-device.h (module 'network'): ns3::SimpleNetDevice::SimpleNetDevice() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10501
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10502
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10503
    cls.add_method('AddLinkChangeCallback', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10504
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10505
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10506
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10507
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetAddress() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10508
    cls.add_method('GetAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10509
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10510
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10511
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10512
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetBroadcast() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10513
    cls.add_method('GetBroadcast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10514
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10515
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10516
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10517
    ## simple-net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::SimpleNetDevice::GetChannel() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10518
    cls.add_method('GetChannel', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10519
                   'ns3::Ptr< ns3::Channel >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10520
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10521
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10522
    ## simple-net-device.h (module 'network'): uint32_t ns3::SimpleNetDevice::GetIfIndex() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10523
    cls.add_method('GetIfIndex', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10524
                   'uint32_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10525
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10526
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10527
    ## simple-net-device.h (module 'network'): uint16_t ns3::SimpleNetDevice::GetMtu() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10528
    cls.add_method('GetMtu', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10529
                   'uint16_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10530
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10531
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10532
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10533
    cls.add_method('GetMulticast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10534
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10535
                   [param('ns3::Ipv4Address', 'multicastGroup')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10536
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10537
    ## simple-net-device.h (module 'network'): ns3::Address ns3::SimpleNetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10538
    cls.add_method('GetMulticast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10539
                   'ns3::Address', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10540
                   [param('ns3::Ipv6Address', 'addr')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10541
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10542
    ## simple-net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::SimpleNetDevice::GetNode() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10543
    cls.add_method('GetNode', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10544
                   'ns3::Ptr< ns3::Node >', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10545
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10546
                   is_const=True, is_virtual=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10547
    ## simple-net-device.h (module 'network'): ns3::Ptr<ns3::Queue> ns3::SimpleNetDevice::GetQueue() const [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10548
    cls.add_method('GetQueue', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10549
                   'ns3::Ptr< ns3::Queue >', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10550
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10551
                   is_const=True)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10552
    ## simple-net-device.h (module 'network'): static ns3::TypeId ns3::SimpleNetDevice::GetTypeId() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10553
    cls.add_method('GetTypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10554
                   'ns3::TypeId', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10555
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10556
                   is_static=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10557
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsBridge() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10558
    cls.add_method('IsBridge', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10559
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10560
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10561
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10562
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsBroadcast() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10563
    cls.add_method('IsBroadcast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10564
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10565
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10566
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10567
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsLinkUp() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10568
    cls.add_method('IsLinkUp', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10569
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10570
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10571
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10572
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsMulticast() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10573
    cls.add_method('IsMulticast', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10574
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10575
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10576
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10577
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::IsPointToPoint() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10578
    cls.add_method('IsPointToPoint', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10579
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10580
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10581
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10582
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::NeedsArp() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10583
    cls.add_method('NeedsArp', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10584
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10585
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10586
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10587
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10588
    cls.add_method('Receive', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10589
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10590
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('uint16_t', 'protocol'), param('ns3::Mac48Address', 'to'), param('ns3::Mac48Address', 'from')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10591
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10592
    cls.add_method('Send', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10593
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10594
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10595
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10596
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10597
    cls.add_method('SendFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10598
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10599
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10600
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10601
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetAddress(ns3::Address address) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10602
    cls.add_method('SetAddress', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10603
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10604
                   [param('ns3::Address', 'address')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10605
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10606
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetChannel(ns3::Ptr<ns3::SimpleChannel> channel) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10607
    cls.add_method('SetChannel', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10608
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10609
                   [param('ns3::Ptr< ns3::SimpleChannel >', 'channel')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10610
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetIfIndex(uint32_t const index) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10611
    cls.add_method('SetIfIndex', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10612
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10613
                   [param('uint32_t const', 'index')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10614
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10615
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::SetMtu(uint16_t const mtu) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10616
    cls.add_method('SetMtu', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10617
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10618
                   [param('uint16_t const', 'mtu')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10619
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10620
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10621
    cls.add_method('SetNode', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10622
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10623
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10624
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10625
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10626
    cls.add_method('SetPromiscReceiveCallback', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10627
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10628
                   [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')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10629
                   is_virtual=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10630
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetQueue(ns3::Ptr<ns3::Queue> queue) [member function]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10631
    cls.add_method('SetQueue', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10632
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10633
                   [param('ns3::Ptr< ns3::Queue >', 'queue')])
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10634
    ## 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]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10635
    cls.add_method('SetReceiveCallback', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10636
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10637
                   [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')], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10638
                   is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10639
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::SetReceiveErrorModel(ns3::Ptr<ns3::ErrorModel> em) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10640
    cls.add_method('SetReceiveErrorModel', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10641
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10642
                   [param('ns3::Ptr< ns3::ErrorModel >', 'em')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10643
    ## simple-net-device.h (module 'network'): bool ns3::SimpleNetDevice::SupportsSendFrom() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10644
    cls.add_method('SupportsSendFrom', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10645
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10646
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10647
                   is_const=True, is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10648
    ## simple-net-device.h (module 'network'): void ns3::SimpleNetDevice::DoDispose() [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10649
    cls.add_method('DoDispose', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10650
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10651
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10652
                   visibility='protected', is_virtual=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10653
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10654
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10655
def register_Ns3TimeValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10656
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10657
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10658
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10659
    cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10660
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10661
    cls.add_constructor([param('ns3::Time const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10662
    ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10663
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10664
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10665
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10666
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10667
    ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10668
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10669
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10670
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10671
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10672
    ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10673
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10674
                   'ns3::Time', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10675
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10676
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10677
    ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10678
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10679
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10680
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10681
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10682
    ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10683
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10684
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10685
                   [param('ns3::Time const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10686
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10687
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10688
def register_Ns3TypeIdChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10689
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10690
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10691
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10692
    cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10693
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10694
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10695
def register_Ns3TypeIdValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10696
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10697
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10698
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10699
    cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10700
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10701
    cls.add_constructor([param('ns3::TypeId const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10702
    ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10703
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10704
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10705
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10706
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10707
    ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10708
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10709
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10710
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10711
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10712
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10713
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10714
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10715
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10716
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10717
    ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10718
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10719
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10720
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10721
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10722
    ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10723
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10724
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10725
                   [param('ns3::TypeId const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10726
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10727
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10728
def register_Ns3UdpClient_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10729
    ## udp-client.h (module 'applications'): ns3::UdpClient::UdpClient(ns3::UdpClient const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10730
    cls.add_constructor([param('ns3::UdpClient const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10731
    ## udp-client.h (module 'applications'): ns3::UdpClient::UdpClient() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10732
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10733
    ## udp-client.h (module 'applications'): static ns3::TypeId ns3::UdpClient::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10734
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10735
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10736
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10737
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10738
    ## udp-client.h (module 'applications'): void ns3::UdpClient::SetRemote(ns3::Ipv4Address ip, uint16_t port) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10739
    cls.add_method('SetRemote', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10740
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10741
                   [param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10742
    ## udp-client.h (module 'applications'): void ns3::UdpClient::SetRemote(ns3::Ipv6Address ip, uint16_t port) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10743
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10744
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10745
                   [param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10746
    ## udp-client.h (module 'applications'): void ns3::UdpClient::SetRemote(ns3::Address ip, uint16_t port) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10747
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10748
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10749
                   [param('ns3::Address', 'ip'), param('uint16_t', 'port')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10750
    ## udp-client.h (module 'applications'): void ns3::UdpClient::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10751
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10752
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10753
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10754
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10755
    ## udp-client.h (module 'applications'): void ns3::UdpClient::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10756
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10757
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10758
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10759
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10760
    ## udp-client.h (module 'applications'): void ns3::UdpClient::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10761
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10762
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10763
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10764
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10765
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10766
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10767
def register_Ns3UdpEchoClient_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10768
    ## udp-echo-client.h (module 'applications'): ns3::UdpEchoClient::UdpEchoClient(ns3::UdpEchoClient const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10769
    cls.add_constructor([param('ns3::UdpEchoClient const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10770
    ## udp-echo-client.h (module 'applications'): ns3::UdpEchoClient::UdpEchoClient() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10771
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10772
    ## udp-echo-client.h (module 'applications'): uint32_t ns3::UdpEchoClient::GetDataSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10773
    cls.add_method('GetDataSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10774
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10775
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10776
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10777
    ## udp-echo-client.h (module 'applications'): static ns3::TypeId ns3::UdpEchoClient::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10778
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10779
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10780
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10781
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10782
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::SetDataSize(uint32_t dataSize) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10783
    cls.add_method('SetDataSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10784
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10785
                   [param('uint32_t', 'dataSize')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10786
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::SetFill(std::string fill) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10787
    cls.add_method('SetFill', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10788
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10789
                   [param('std::string', 'fill')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10790
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::SetFill(uint8_t fill, uint32_t dataSize) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10791
    cls.add_method('SetFill', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10792
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10793
                   [param('uint8_t', 'fill'), param('uint32_t', 'dataSize')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10794
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::SetFill(uint8_t * fill, uint32_t fillSize, uint32_t dataSize) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10795
    cls.add_method('SetFill', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10796
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10797
                   [param('uint8_t *', 'fill'), param('uint32_t', 'fillSize'), param('uint32_t', 'dataSize')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10798
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::SetRemote(ns3::Ipv4Address ip, uint16_t port) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10799
    cls.add_method('SetRemote', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10800
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10801
                   [param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10802
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::SetRemote(ns3::Ipv6Address ip, uint16_t port) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10803
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10804
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10805
                   [param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10806
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::SetRemote(ns3::Address ip, uint16_t port) [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10807
    cls.add_method('SetRemote', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10808
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10809
                   [param('ns3::Address', 'ip'), param('uint16_t', 'port')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10810
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10811
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10812
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10813
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10814
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10815
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10816
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10817
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10818
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10819
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10820
    ## udp-echo-client.h (module 'applications'): void ns3::UdpEchoClient::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10821
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10822
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10823
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10824
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10825
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10826
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10827
def register_Ns3UdpEchoServer_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10828
    ## udp-echo-server.h (module 'applications'): ns3::UdpEchoServer::UdpEchoServer(ns3::UdpEchoServer const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10829
    cls.add_constructor([param('ns3::UdpEchoServer const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10830
    ## udp-echo-server.h (module 'applications'): ns3::UdpEchoServer::UdpEchoServer() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10831
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10832
    ## udp-echo-server.h (module 'applications'): static ns3::TypeId ns3::UdpEchoServer::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10833
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10834
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10835
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10836
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10837
    ## udp-echo-server.h (module 'applications'): void ns3::UdpEchoServer::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10838
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10839
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10840
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10841
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10842
    ## udp-echo-server.h (module 'applications'): void ns3::UdpEchoServer::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10843
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10844
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10845
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10846
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10847
    ## udp-echo-server.h (module 'applications'): void ns3::UdpEchoServer::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10848
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10849
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10850
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10851
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10852
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10853
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10854
def register_Ns3UdpServer_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10855
    ## udp-server.h (module 'applications'): ns3::UdpServer::UdpServer(ns3::UdpServer const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10856
    cls.add_constructor([param('ns3::UdpServer const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10857
    ## udp-server.h (module 'applications'): ns3::UdpServer::UdpServer() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10858
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10859
    ## udp-server.h (module 'applications'): uint32_t ns3::UdpServer::GetLost() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10860
    cls.add_method('GetLost', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10861
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10862
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10863
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10864
    ## udp-server.h (module 'applications'): uint16_t ns3::UdpServer::GetPacketWindowSize() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10865
    cls.add_method('GetPacketWindowSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10866
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10867
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10868
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10869
    ## udp-server.h (module 'applications'): uint32_t ns3::UdpServer::GetReceived() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10870
    cls.add_method('GetReceived', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10871
                   'uint32_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10872
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10873
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10874
    ## udp-server.h (module 'applications'): static ns3::TypeId ns3::UdpServer::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10875
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10876
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10877
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10878
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10879
    ## udp-server.h (module 'applications'): void ns3::UdpServer::SetPacketWindowSize(uint16_t size) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10880
    cls.add_method('SetPacketWindowSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10881
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10882
                   [param('uint16_t', 'size')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10883
    ## udp-server.h (module 'applications'): void ns3::UdpServer::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10884
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10885
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10886
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10887
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10888
    ## udp-server.h (module 'applications'): void ns3::UdpServer::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10889
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10890
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10891
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10892
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10893
    ## udp-server.h (module 'applications'): void ns3::UdpServer::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10894
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10895
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10896
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10897
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10898
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10899
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10900
def register_Ns3UdpTraceClient_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10901
    ## udp-trace-client.h (module 'applications'): ns3::UdpTraceClient::UdpTraceClient(ns3::UdpTraceClient const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10902
    cls.add_constructor([param('ns3::UdpTraceClient const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10903
    ## udp-trace-client.h (module 'applications'): ns3::UdpTraceClient::UdpTraceClient() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10904
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10905
    ## udp-trace-client.h (module 'applications'): ns3::UdpTraceClient::UdpTraceClient(ns3::Ipv4Address ip, uint16_t port, char * traceFile) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10906
    cls.add_constructor([param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port'), param('char *', 'traceFile')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10907
    ## udp-trace-client.h (module 'applications'): uint16_t ns3::UdpTraceClient::GetMaxPacketSize() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10908
    cls.add_method('GetMaxPacketSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10909
                   'uint16_t', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10910
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10911
    ## udp-trace-client.h (module 'applications'): static ns3::TypeId ns3::UdpTraceClient::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10912
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10913
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10914
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10915
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10916
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::SetMaxPacketSize(uint16_t maxPacketSize) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10917
    cls.add_method('SetMaxPacketSize', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10918
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10919
                   [param('uint16_t', 'maxPacketSize')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10920
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::SetRemote(ns3::Ipv4Address ip, uint16_t port) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10921
    cls.add_method('SetRemote', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10922
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10923
                   [param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10924
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::SetRemote(ns3::Ipv6Address ip, uint16_t port) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10925
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10926
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10927
                   [param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10928
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::SetRemote(ns3::Address ip, uint16_t port) [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10929
    cls.add_method('SetRemote', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10930
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10931
                   [param('ns3::Address', 'ip'), param('uint16_t', 'port')])
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10932
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::SetTraceFile(std::string filename) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10933
    cls.add_method('SetTraceFile', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10934
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10935
                   [param('std::string', 'filename')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10936
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10937
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10938
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10939
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10940
                   visibility='protected', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10941
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10942
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10943
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10944
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10945
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10946
    ## udp-trace-client.h (module 'applications'): void ns3::UdpTraceClient::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10947
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10948
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10949
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10950
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10951
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10952
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10953
def register_Ns3UintegerValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10954
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10955
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10956
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(ns3::UintegerValue const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10957
    cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10958
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10959
    cls.add_constructor([param('uint64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10960
    ## uinteger.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::UintegerValue::Copy() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10961
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10962
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10963
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10964
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10965
    ## uinteger.h (module 'core'): bool ns3::UintegerValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10966
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10967
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10968
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10969
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10970
    ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10971
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10972
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10973
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10974
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10975
    ## uinteger.h (module 'core'): std::string ns3::UintegerValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10976
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10977
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10978
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10979
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10980
    ## uinteger.h (module 'core'): void ns3::UintegerValue::Set(uint64_t const & value) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10981
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10982
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10983
                   [param('uint64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10984
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10985
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10986
def register_Ns3V4Ping_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10987
    ## v4ping.h (module 'applications'): ns3::V4Ping::V4Ping(ns3::V4Ping const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10988
    cls.add_constructor([param('ns3::V4Ping const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10989
    ## v4ping.h (module 'applications'): ns3::V4Ping::V4Ping() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10990
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10991
    ## v4ping.h (module 'applications'): static ns3::TypeId ns3::V4Ping::GetTypeId() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10992
    cls.add_method('GetTypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10993
                   'ns3::TypeId', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10994
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10995
                   is_static=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10996
    ## v4ping.h (module 'applications'): void ns3::V4Ping::DoDispose() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10997
    cls.add_method('DoDispose', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10998
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10999
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11000
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11001
    ## v4ping.h (module 'applications'): void ns3::V4Ping::StartApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11002
    cls.add_method('StartApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11003
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11004
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11005
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11006
    ## v4ping.h (module 'applications'): void ns3::V4Ping::StopApplication() [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11007
    cls.add_method('StopApplication', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11008
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11009
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11010
                   visibility='private', is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11011
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11012
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11013
def register_Ns3AddressChecker_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11014
    ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11015
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11016
    ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11017
    cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11018
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11019
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11020
def register_Ns3AddressValue_methods(root_module, cls):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11021
    ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11022
    cls.add_constructor([])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11023
    ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11024
    cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11025
    ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11026
    cls.add_constructor([param('ns3::Address const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11027
    ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11028
    cls.add_method('Copy', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11029
                   'ns3::Ptr< ns3::AttributeValue >', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11030
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11031
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11032
    ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11033
    cls.add_method('DeserializeFromString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11034
                   'bool', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11035
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11036
                   is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11037
    ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11038
    cls.add_method('Get', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11039
                   'ns3::Address', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11040
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11041
                   is_const=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11042
    ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11043
    cls.add_method('SerializeToString', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11044
                   'std::string', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11045
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11046
                   is_const=True, is_virtual=True)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11047
    ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11048
    cls.add_method('Set', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11049
                   'void', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11050
                   [param('ns3::Address const &', 'value')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11051
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11052
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11053
def register_Ns3ApplicationPacketProbe_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11054
    ## application-packet-probe.h (module 'applications'): ns3::ApplicationPacketProbe::ApplicationPacketProbe(ns3::ApplicationPacketProbe const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11055
    cls.add_constructor([param('ns3::ApplicationPacketProbe const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11056
    ## application-packet-probe.h (module 'applications'): ns3::ApplicationPacketProbe::ApplicationPacketProbe() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11057
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11058
    ## application-packet-probe.h (module 'applications'): bool ns3::ApplicationPacketProbe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11059
    cls.add_method('ConnectByObject', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11060
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11061
                   [param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11062
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11063
    ## application-packet-probe.h (module 'applications'): void ns3::ApplicationPacketProbe::ConnectByPath(std::string path) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11064
    cls.add_method('ConnectByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11065
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11066
                   [param('std::string', 'path')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11067
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11068
    ## application-packet-probe.h (module 'applications'): static ns3::TypeId ns3::ApplicationPacketProbe::GetTypeId() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11069
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11070
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11071
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11072
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11073
    ## application-packet-probe.h (module 'applications'): void ns3::ApplicationPacketProbe::SetValue(ns3::Ptr<ns3::Packet const> packet, ns3::Address const & address) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11074
    cls.add_method('SetValue', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11075
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11076
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Address const &', 'address')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11077
    ## application-packet-probe.h (module 'applications'): static void ns3::ApplicationPacketProbe::SetValueByPath(std::string path, ns3::Ptr<ns3::Packet const> packet, ns3::Address const & address) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11078
    cls.add_method('SetValueByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11079
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11080
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Address const &', 'address')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11081
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11082
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11083
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11084
def register_Ns3BurstErrorModel_methods(root_module, cls):
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11085
    ## error-model.h (module 'network'): ns3::BurstErrorModel::BurstErrorModel(ns3::BurstErrorModel const & arg0) [copy constructor]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11086
    cls.add_constructor([param('ns3::BurstErrorModel const &', 'arg0')])
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11087
    ## error-model.h (module 'network'): ns3::BurstErrorModel::BurstErrorModel() [constructor]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11088
    cls.add_constructor([])
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11089
    ## error-model.h (module 'network'): int64_t ns3::BurstErrorModel::AssignStreams(int64_t stream) [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11090
    cls.add_method('AssignStreams', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11091
                   'int64_t', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11092
                   [param('int64_t', 'stream')])
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11093
    ## error-model.h (module 'network'): double ns3::BurstErrorModel::GetBurstRate() const [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11094
    cls.add_method('GetBurstRate', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11095
                   'double', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11096
                   [], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11097
                   is_const=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11098
    ## error-model.h (module 'network'): static ns3::TypeId ns3::BurstErrorModel::GetTypeId() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11099
    cls.add_method('GetTypeId', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11100
                   'ns3::TypeId', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11101
                   [], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11102
                   is_static=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11103
    ## error-model.h (module 'network'): void ns3::BurstErrorModel::SetBurstRate(double rate) [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11104
    cls.add_method('SetBurstRate', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11105
                   'void', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11106
                   [param('double', 'rate')])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 11107
    ## error-model.h (module 'network'): void ns3::BurstErrorModel::SetRandomBurstSize(ns3::Ptr<ns3::RandomVariableStream> burstSz) [member function]
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11108
    cls.add_method('SetRandomBurstSize', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11109
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 11110
                   [param('ns3::Ptr< ns3::RandomVariableStream >', 'burstSz')])
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 11111
    ## error-model.h (module 'network'): void ns3::BurstErrorModel::SetRandomVariable(ns3::Ptr<ns3::RandomVariableStream> ranVar) [member function]
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11112
    cls.add_method('SetRandomVariable', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11113
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 11114
                   [param('ns3::Ptr< ns3::RandomVariableStream >', 'ranVar')])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11115
    ## error-model.h (module 'network'): bool ns3::BurstErrorModel::DoCorrupt(ns3::Ptr<ns3::Packet> p) [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11116
    cls.add_method('DoCorrupt', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11117
                   'bool', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11118
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11119
                   visibility='private', is_virtual=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11120
    ## error-model.h (module 'network'): void ns3::BurstErrorModel::DoReset() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11121
    cls.add_method('DoReset', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11122
                   'void', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11123
                   [], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11124
                   visibility='private', is_virtual=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11125
    return
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 11126
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11127
def register_Ns3CounterCalculator__Unsigned_int_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11128
    ## basic-data-calculators.h (module 'stats'): ns3::CounterCalculator<unsigned int>::CounterCalculator(ns3::CounterCalculator<unsigned int> const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11129
    cls.add_constructor([param('ns3::CounterCalculator< unsigned int > const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11130
    ## basic-data-calculators.h (module 'stats'): ns3::CounterCalculator<unsigned int>::CounterCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11131
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11132
    ## basic-data-calculators.h (module 'stats'): unsigned int ns3::CounterCalculator<unsigned int>::GetCount() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11133
    cls.add_method('GetCount', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11134
                   'unsigned int', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11135
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11136
                   is_const=True)
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11137
    ## basic-data-calculators.h (module 'stats'): static ns3::TypeId ns3::CounterCalculator<unsigned int>::GetTypeId() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11138
    cls.add_method('GetTypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11139
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11140
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11141
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11142
    ## basic-data-calculators.h (module 'stats'): void ns3::CounterCalculator<unsigned int>::Output(ns3::DataOutputCallback & callback) const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11143
    cls.add_method('Output', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11144
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11145
                   [param('ns3::DataOutputCallback &', 'callback')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11146
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11147
    ## basic-data-calculators.h (module 'stats'): void ns3::CounterCalculator<unsigned int>::Update() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11148
    cls.add_method('Update', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11149
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11150
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11151
    ## basic-data-calculators.h (module 'stats'): void ns3::CounterCalculator<unsigned int>::Update(unsigned int const i) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11152
    cls.add_method('Update', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11153
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11154
                   [param('unsigned int const', 'i')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11155
    ## basic-data-calculators.h (module 'stats'): void ns3::CounterCalculator<unsigned int>::DoDispose() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11156
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11157
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11158
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11159
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11160
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11161
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11162
def register_Ns3PacketCounterCalculator_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11163
    ## packet-data-calculators.h (module 'network'): ns3::PacketCounterCalculator::PacketCounterCalculator(ns3::PacketCounterCalculator const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11164
    cls.add_constructor([param('ns3::PacketCounterCalculator const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11165
    ## packet-data-calculators.h (module 'network'): ns3::PacketCounterCalculator::PacketCounterCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11166
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11167
    ## packet-data-calculators.h (module 'network'): void ns3::PacketCounterCalculator::FrameUpdate(std::string path, ns3::Ptr<ns3::Packet const> packet, ns3::Mac48Address realto) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11168
    cls.add_method('FrameUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11169
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11170
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'realto')])
11579
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11171
    ## packet-data-calculators.h (module 'network'): static ns3::TypeId ns3::PacketCounterCalculator::GetTypeId() [member function]
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11172
    cls.add_method('GetTypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11173
                   'ns3::TypeId', 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11174
                   [], 
4ded0610ab25 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11382
diff changeset
 11175
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11176
    ## packet-data-calculators.h (module 'network'): void ns3::PacketCounterCalculator::PacketUpdate(std::string path, ns3::Ptr<ns3::Packet const> packet) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11177
    cls.add_method('PacketUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11178
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11179
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11180
    ## packet-data-calculators.h (module 'network'): void ns3::PacketCounterCalculator::DoDispose() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11181
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11182
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11183
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11184
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11185
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11186
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11187
def register_Ns3PacketProbe_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11188
    ## packet-probe.h (module 'network'): ns3::PacketProbe::PacketProbe(ns3::PacketProbe const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11189
    cls.add_constructor([param('ns3::PacketProbe const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11190
    ## packet-probe.h (module 'network'): ns3::PacketProbe::PacketProbe() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11191
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11192
    ## packet-probe.h (module 'network'): bool ns3::PacketProbe::ConnectByObject(std::string traceSource, ns3::Ptr<ns3::Object> obj) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11193
    cls.add_method('ConnectByObject', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11194
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11195
                   [param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11196
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11197
    ## packet-probe.h (module 'network'): void ns3::PacketProbe::ConnectByPath(std::string path) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11198
    cls.add_method('ConnectByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11199
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11200
                   [param('std::string', 'path')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11201
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11202
    ## packet-probe.h (module 'network'): static ns3::TypeId ns3::PacketProbe::GetTypeId() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11203
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11204
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11205
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11206
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11207
    ## packet-probe.h (module 'network'): void ns3::PacketProbe::SetValue(ns3::Ptr<ns3::Packet const> packet) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11208
    cls.add_method('SetValue', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11209
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11210
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11211
    ## packet-probe.h (module 'network'): static void ns3::PacketProbe::SetValueByPath(std::string path, ns3::Ptr<ns3::Packet const> packet) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11212
    cls.add_method('SetValueByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11213
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11214
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11215
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11216
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11217
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11218
def register_Ns3PbbAddressTlv_methods(root_module, cls):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11219
    ## packetbb.h (module 'network'): ns3::PbbAddressTlv::PbbAddressTlv() [constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11220
    cls.add_constructor([])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11221
    ## packetbb.h (module 'network'): ns3::PbbAddressTlv::PbbAddressTlv(ns3::PbbAddressTlv const & arg0) [copy constructor]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11222
    cls.add_constructor([param('ns3::PbbAddressTlv const &', 'arg0')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11223
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressTlv::GetIndexStart() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11224
    cls.add_method('GetIndexStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11225
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11226
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11227
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11228
    ## packetbb.h (module 'network'): uint8_t ns3::PbbAddressTlv::GetIndexStop() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11229
    cls.add_method('GetIndexStop', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11230
                   'uint8_t', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11231
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11232
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11233
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlv::HasIndexStart() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11234
    cls.add_method('HasIndexStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11235
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11236
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11237
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11238
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlv::HasIndexStop() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11239
    cls.add_method('HasIndexStop', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11240
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11241
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11242
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11243
    ## packetbb.h (module 'network'): bool ns3::PbbAddressTlv::IsMultivalue() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11244
    cls.add_method('IsMultivalue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11245
                   'bool', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11246
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11247
                   is_const=True)
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11248
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlv::SetIndexStart(uint8_t index) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11249
    cls.add_method('SetIndexStart', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11250
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11251
                   [param('uint8_t', 'index')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11252
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlv::SetIndexStop(uint8_t index) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11253
    cls.add_method('SetIndexStop', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11254
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11255
                   [param('uint8_t', 'index')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11256
    ## packetbb.h (module 'network'): void ns3::PbbAddressTlv::SetMultivalue(bool isMultivalue) [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11257
    cls.add_method('SetMultivalue', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11258
                   'void', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11259
                   [param('bool', 'isMultivalue')])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11260
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11261
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11262
def register_Ns3HashImplementation_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11263
    ## hash-function.h (module 'core'): ns3::Hash::Implementation::Implementation(ns3::Hash::Implementation const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11264
    cls.add_constructor([param('ns3::Hash::Implementation const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11265
    ## hash-function.h (module 'core'): ns3::Hash::Implementation::Implementation() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11266
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11267
    ## hash-function.h (module 'core'): uint32_t ns3::Hash::Implementation::GetHash32(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11268
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11269
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11270
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11271
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11272
    ## hash-function.h (module 'core'): uint64_t ns3::Hash::Implementation::GetHash64(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11273
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11274
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11275
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11276
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11277
    ## hash-function.h (module 'core'): void ns3::Hash::Implementation::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11278
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11279
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11280
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11281
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11282
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11283
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11284
def register_Ns3HashFunctionFnv1a_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11285
    ## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a::Fnv1a(ns3::Hash::Function::Fnv1a const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11286
    cls.add_constructor([param('ns3::Hash::Function::Fnv1a const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11287
    ## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a::Fnv1a() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11288
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11289
    ## hash-fnv.h (module 'core'): uint32_t ns3::Hash::Function::Fnv1a::GetHash32(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11290
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11291
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11292
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11293
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11294
    ## hash-fnv.h (module 'core'): uint64_t ns3::Hash::Function::Fnv1a::GetHash64(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11295
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11296
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11297
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11298
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11299
    ## hash-fnv.h (module 'core'): void ns3::Hash::Function::Fnv1a::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11300
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11301
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11302
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11303
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11304
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11305
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11306
def register_Ns3HashFunctionHash32_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11307
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash32::Hash32(ns3::Hash::Function::Hash32 const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11308
    cls.add_constructor([param('ns3::Hash::Function::Hash32 const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11309
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash32::Hash32(ns3::Hash::Hash32Function_ptr hp) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11310
    cls.add_constructor([param('ns3::Hash::Hash32Function_ptr', 'hp')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11311
    ## hash-function.h (module 'core'): uint32_t ns3::Hash::Function::Hash32::GetHash32(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11312
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11313
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11314
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11315
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11316
    ## hash-function.h (module 'core'): void ns3::Hash::Function::Hash32::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11317
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11318
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11319
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11320
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11321
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11322
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11323
def register_Ns3HashFunctionHash64_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11324
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash64::Hash64(ns3::Hash::Function::Hash64 const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11325
    cls.add_constructor([param('ns3::Hash::Function::Hash64 const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11326
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash64::Hash64(ns3::Hash::Hash64Function_ptr hp) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11327
    cls.add_constructor([param('ns3::Hash::Hash64Function_ptr', 'hp')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11328
    ## hash-function.h (module 'core'): uint32_t ns3::Hash::Function::Hash64::GetHash32(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11329
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11330
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11331
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11332
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11333
    ## hash-function.h (module 'core'): uint64_t ns3::Hash::Function::Hash64::GetHash64(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11334
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11335
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11336
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11337
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11338
    ## hash-function.h (module 'core'): void ns3::Hash::Function::Hash64::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11339
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11340
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11341
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11342
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11343
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11344
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11345
def register_Ns3HashFunctionMurmur3_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11346
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3::Murmur3(ns3::Hash::Function::Murmur3 const & arg0) [copy constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11347
    cls.add_constructor([param('ns3::Hash::Function::Murmur3 const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11348
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3::Murmur3() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11349
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11350
    ## hash-murmur3.h (module 'core'): uint32_t ns3::Hash::Function::Murmur3::GetHash32(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11351
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11352
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11353
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11354
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11355
    ## hash-murmur3.h (module 'core'): uint64_t ns3::Hash::Function::Murmur3::GetHash64(char const * buffer, size_t const size) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11356
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11357
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11358
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11359
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11360
    ## hash-murmur3.h (module 'core'): void ns3::Hash::Function::Murmur3::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11361
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11362
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11363
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11364
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11365
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11366
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11367
def register_functions(root_module):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11368
    module = root_module
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11369
    register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11370
    register_functions_ns3_Hash(module.get_submodule('Hash'), root_module)
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
 11371
    register_functions_ns3_TracedValueCallback(module.get_submodule('TracedValueCallback'), root_module)
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11372
    register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11373
    register_functions_ns3_internal(module.get_submodule('internal'), root_module)
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11374
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11375
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11376
def register_functions_ns3_FatalImpl(module, root_module):
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11377
    return
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11378
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11379
def register_functions_ns3_Hash(module, root_module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11380
    register_functions_ns3_Hash_Function(module.get_submodule('Function'), root_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11381
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11382
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11383
def register_functions_ns3_Hash_Function(module, root_module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11384
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11385
11654
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
 11386
def register_functions_ns3_TracedValueCallback(module, root_module):
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
 11387
    return
5db1372be9a3 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 11579
diff changeset
 11388
6983
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11389
def register_functions_ns3_addressUtils(module, root_module):
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11390
    return
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11391
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11392
def register_functions_ns3_internal(module, root_module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11393
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11394
6905
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11395
def main():
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11396
    out = FileCodeSink(sys.stdout)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11397
    root_module = module_init()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11398
    register_types(root_module)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11399
    register_methods(root_module)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11400
    register_functions(root_module)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11401
    root_module.generate(out)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11402
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11403
if __name__ == '__main__':
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11404
    main()
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11405