src/applications/bindings/modulegen__gcc_ILP32.py
author Tom Henderson <tomh@tomh.org>
Mon, 15 Sep 2014 20:51:08 -0700
changeset 10956 fa4be182ef17
parent 10903 19a4ea65c582
child 10990 414d94e669c5
permissions -rw-r--r--
rescan remaining bindings
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')
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
   113
    ## 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
   114
    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
   115
    ## 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
   116
    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
   117
    ## 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
   118
    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
   119
    ## 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
   120
    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
   121
    ## 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
   122
    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
   123
    ## 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
   124
    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
   125
    ## 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
   126
    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
   127
    ## 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
   128
    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
   129
    ## 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
   130
    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
   131
    ## 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
   132
    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
   133
    ## 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
   134
    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
   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
    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
   137
    ## 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
   138
    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
   139
    ## 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
   140
    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
   141
    ## 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
   142
    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
   143
    ## 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
   144
    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
   145
    ## 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
   146
    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
   147
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData_e [enumeration]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
   148
    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
   149
    ## 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
   150
    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
   151
    ## 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
   152
    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
   153
    ## 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
   154
    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
   155
    ## 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
   156
    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
   157
    ## trace-helper.h (module 'network'): ns3::PcapHelper [enumeration]
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   158
    module.add_enum('', ['DLT_NULL', 'DLT_EN10MB', 'DLT_PPP', 'DLT_RAW', 'DLT_IEEE802_11', 'DLT_PRISM_HEADER', 'DLT_IEEE802_11_RADIO', 'DLT_IEEE802_15_4'], 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
   159
    ## 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
   160
    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
   161
    ## 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
   162
    module.add_class('Ping6Helper')
10132
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
   163
    ## radvd-helper.h (module 'applications'): ns3::RadvdHelper [class]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
   164
    module.add_class('RadvdHelper')
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   165
    ## simple-net-device-helper.h (module 'network'): ns3::SimpleNetDeviceHelper [class]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   166
    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
   167
    ## 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
   168
    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
   169
    ## 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
   170
    module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core')
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   171
    ## data-calculator.h (module 'stats'): ns3::StatisticalSummary [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   172
    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
   173
    ## 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
   174
    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
   175
    ## 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
   176
    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
   177
    ## 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
   178
    module.add_class('TagBuffer', import_from_module='ns.network')
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   179
    ## nstime.h (module 'core'): ns3::TimeWithUnit [class]
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   180
    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
   181
    ## 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
   182
    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
   183
    ## 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
   184
    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
   185
    ## 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
   186
    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
   187
    ## 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
   188
    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
   189
    ## 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
   190
    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
   191
    ## 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
   192
    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
   193
    ## 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
   194
    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
   195
    ## 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
   196
    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
   197
    ## 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
   198
    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
   199
    ## 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
   200
    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
   201
    ## 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
   202
    module.add_class('empty', import_from_module='ns.core')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   203
    ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   204
    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
   205
    ## 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
   206
    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
   207
    ## 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
   208
    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
   209
    ## packet-socket.h (module 'network'): ns3::DeviceNameTag [class]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   210
    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
   211
    ## 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
   212
    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
   213
    ## 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
   214
    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
   215
    ## 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
   216
    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
   217
    ## 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
   218
    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
   219
    ## 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
   220
    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
   221
    ## 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
   222
    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
   223
    ## packet-socket.h (module 'network'): ns3::PacketSocketTag [class]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   224
    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
   225
    ## 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
   226
    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
   227
    ## 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
   228
    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
   229
    ## queue.h (module 'network'): ns3::Queue::QueueMode [enumeration]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
   230
    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
   231
    ## 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
   232
    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
   233
    ## 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
   234
    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
   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('', ['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')
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   237
    ## random-variable-stream.h (module 'core'): ns3::RandomVariableStream [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   238
    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
   239
    ## red-queue.h (module 'network'): ns3::RedQueue [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   240
    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
   241
    ## red-queue.h (module 'network'): ns3::RedQueue [enumeration]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   242
    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
   243
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats [struct]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   244
    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
   245
    ## 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
   246
    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
   247
    ## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   248
    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
   249
    ## 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
   250
    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
   251
    ## 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
   252
    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
   253
    ## 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
   254
    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
   255
    ## 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
   256
    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
   257
    ## 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
   258
    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
   259
    ## 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
   260
    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
   261
    ## 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
   262
    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
   263
    ## 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
   264
    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
   265
    ## 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
   266
    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
   267
    ## 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
   268
    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
   269
    ## 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
   270
    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
   271
    ## 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
   272
    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
   273
    ## 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
   274
    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
   275
    ## 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
   276
    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
   277
    ## 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
   278
    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
   279
    ## 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
   280
    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
   281
    ## 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
   282
    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
   283
    ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
7449
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   284
    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
   285
    ## 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
   286
    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
   287
    ## 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
   288
    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
   289
    ## 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
   290
    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
   291
    ## socket.h (module 'network'): ns3::SocketIpTosTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   292
    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
   293
    ## 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
   294
    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
   295
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   296
    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
   297
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   298
    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
   299
    ## 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
   300
    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
   301
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   302
    module.add_class('Time', import_from_module='ns.core')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   303
    ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
   304
    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
   305
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   306
    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
   307
    ## 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
   308
    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
   309
    ## 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
   310
    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
   311
    ## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   312
    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
   313
    ## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   314
    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
   315
    ## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   316
    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
   317
    ## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   318
    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
   319
    ## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   320
    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
   321
    ## 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
   322
    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
   323
    ## 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
   324
    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
   325
    ## 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
   326
    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
   327
    ## 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
   328
    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
   329
    ## boolean.h (module 'core'): ns3::BooleanChecker [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   330
    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
   331
    ## boolean.h (module 'core'): ns3::BooleanValue [class]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   332
    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
   333
    ## 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
   334
    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
   335
    ## 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
   336
    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
   337
    ## 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
   338
    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
   339
    ## 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
   340
    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
   341
    ## 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
   342
    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
   343
    ## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   344
    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
   345
    ## data-calculator.h (module 'stats'): ns3::DataCalculator [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   346
    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
   347
    ## data-collection-object.h (module 'stats'): ns3::DataCollectionObject [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   348
    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
   349
    ## data-output-interface.h (module 'stats'): ns3::DataOutputInterface [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   350
    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
   351
    ## 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
   352
    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
   353
    ## 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
   354
    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
   355
    ## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   356
    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
   357
    ## double.h (module 'core'): ns3::DoubleValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   358
    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
   359
    ## 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
   360
    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
   361
    ## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   362
    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
   363
    ## 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
   364
    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
   365
    ## enum.h (module 'core'): ns3::EnumChecker [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   366
    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
   367
    ## enum.h (module 'core'): ns3::EnumValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   368
    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
   369
    ## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   370
    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
   371
    ## 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
   372
    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
   373
    ## 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
   374
    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
   375
    ## 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
   376
    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
   377
    ## 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
   378
    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
   379
    ## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   380
    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
   381
    ## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   382
    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
   383
    ## integer.h (module 'core'): ns3::IntegerValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   384
    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
   385
    ## 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
   386
    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
   387
    ## 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
   388
    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
   389
    ## 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
   390
    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
   391
    ## 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
   392
    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
   393
    ## 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
   394
    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
   395
    ## 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
   396
    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
   397
    ## 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
   398
    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
   399
    ## 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
   400
    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
   401
    ## 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
   402
    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
   403
    ## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   404
    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
   405
    ## mac16-address.h (module 'network'): ns3::Mac16AddressChecker [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   406
    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
   407
    ## mac16-address.h (module 'network'): ns3::Mac16AddressValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   408
    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
   409
    ## 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
   410
    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
   411
    ## 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
   412
    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
   413
    ## mac64-address.h (module 'network'): ns3::Mac64AddressChecker [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   414
    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
   415
    ## mac64-address.h (module 'network'): ns3::Mac64AddressValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   416
    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
   417
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double> [class]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   418
    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
   419
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<unsigned int> [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   420
    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
   421
    ## 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
   422
    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
   423
    ## 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
   424
    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
   425
    ## 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
   426
    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
   427
    ## 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
   428
    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
   429
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   430
    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
   431
    ## 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
   432
    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
   433
    ## 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
   434
    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
   435
    ## 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
   436
    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
   437
    ## 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
   438
    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
   439
    ## 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
   440
    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
   441
    ## 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
   442
    module.add_class('PacketSink', parent=root_module['ns3::Application'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   443
    ## packet-data-calculators.h (module 'network'): ns3::PacketSizeMinMaxAvgTotalCalculator [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   444
    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
   445
    ## 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
   446
    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
   447
    ## packet-socket-client.h (module 'network'): ns3::PacketSocketClient [class]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   448
    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
   449
    ## 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
   450
    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
   451
    ## packet-socket-server.h (module 'network'): ns3::PacketSocketServer [class]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   452
    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
   453
    ## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable [class]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   454
    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
   455
    ## 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
   456
    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
   457
    ## 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
   458
    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
   459
    ## 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
   460
    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
   461
    ## 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
   462
    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
   463
    ## 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
   464
    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
   465
    ## 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
   466
    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
   467
    ## 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
   468
    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
   469
    ## 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
   470
    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
   471
    ## 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
   472
    module.add_class('Ping6', parent=root_module['ns3::Application'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   473
    ## probe.h (module 'stats'): ns3::Probe [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   474
    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
   475
    ## 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
   476
    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
   477
    ## 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
   478
    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
   479
    ## 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
   480
    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
   481
    ## 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
   482
    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
   483
    ## error-model.h (module 'network'): ns3::RateErrorModel::ErrorUnit [enumeration]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
   484
    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
   485
    ## 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
   486
    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
   487
    ## 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
   488
    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
   489
    ## 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
   490
    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
   491
    ## 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
   492
    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
   493
    ## 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
   494
    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
   495
    ## 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
   496
    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
   497
    ## 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
   498
    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
   499
    ## 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
   500
    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
   501
    ## 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
   502
    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
   503
    ## 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
   504
    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
   505
    ## 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
   506
    module.add_class('UdpTraceClient', parent=root_module['ns3::Application'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   507
    ## uinteger.h (module 'core'): ns3::UintegerValue [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   508
    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
   509
    ## 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
   510
    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
   511
    ## 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
   512
    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
   513
    ## 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
   514
    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
   515
    ## application-packet-probe.h (module 'applications'): ns3::ApplicationPacketProbe [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   516
    module.add_class('ApplicationPacketProbe', parent=root_module['ns3::Probe'])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
   517
    ## error-model.h (module 'network'): ns3::BurstErrorModel [class]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
   518
    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
   519
    ## basic-data-calculators.h (module 'stats'): ns3::CounterCalculator<unsigned int> [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   520
    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
   521
    ## packet-data-calculators.h (module 'network'): ns3::PacketCounterCalculator [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   522
    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
   523
    ## packet-probe.h (module 'network'): ns3::PacketProbe [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   524
    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
   525
    ## 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
   526
    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
   527
    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
   528
    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
   529
    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
   530
    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
   531
    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
   532
    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
   533
    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
   534
    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
   535
    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
   536
    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
   537
    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
   538
    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
   539
    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
   540
    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
   541
    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
   542
    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
   543
    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
   544
    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
   545
    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
   546
    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
   547
    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
   548
    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
   549
    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
   550
    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
   551
    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
   552
    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
   553
    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
   554
    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
   555
    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
   556
    
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   557
    ## 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
   558
    
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   559
    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
   560
    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
   561
    
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
   562
    
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   563
    ## Register a nested module for the namespace Hash
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   564
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   565
    nested_module = module.add_cpp_namespace('Hash')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   566
    register_types_ns3_Hash(nested_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   567
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   568
    
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
   569
    ## 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
   570
    
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   571
    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
   572
    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
   573
    
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   574
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   575
    ## Register a nested module for the namespace internal
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('internal')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   578
    register_types_ns3_internal(nested_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   579
    
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
   580
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   581
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
   582
    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
   583
    
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   584
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   585
def register_types_ns3_Hash(module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   586
    root_module = module.get_root()
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   587
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   588
    ## hash-function.h (module 'core'): ns3::Hash::Implementation [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   589
    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
   590
    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
   591
    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
   592
    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
   593
    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
   594
    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
   595
    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
   596
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   597
    ## Register a nested module for the namespace Function
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   598
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   599
    nested_module = module.add_cpp_namespace('Function')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   600
    register_types_ns3_Hash_Function(nested_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   601
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   602
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   603
def register_types_ns3_Hash_Function(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-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   607
    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
   608
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash32 [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   609
    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
   610
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash64 [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   611
    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
   612
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3 [class]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   613
    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
   614
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
   615
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
   616
    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
   617
    
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
   618
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   619
def register_types_ns3_internal(module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   620
    root_module = module.get_root()
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   621
    
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   622
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
   623
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
   624
    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
   625
    register_Ns3ApplicationContainer_methods(root_module, root_module['ns3::ApplicationContainer'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   626
    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
   627
    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
   628
    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
   629
    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
   630
    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
   631
    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
   632
    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
   633
    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
   634
    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
   635
    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
   636
    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
   637
    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
   638
    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
   639
    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
   640
    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
   641
    register_Ns3ChannelList_methods(root_module, root_module['ns3::ChannelList'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   642
    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
   643
    register_Ns3DataRate_methods(root_module, root_module['ns3::DataRate'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   644
    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
   645
    register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   646
    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
   647
    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
   648
    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
   649
    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
   650
    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
   651
    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
   652
    register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   653
    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
   654
    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
   655
    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
   656
    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
   657
    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
   658
    register_Ns3NodeList_methods(root_module, root_module['ns3::NodeList'])
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
   659
    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
   660
    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
   661
    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
   662
    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
   663
    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
   664
    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
   665
    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
   666
    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
   667
    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
   668
    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
   669
    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
   670
    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
   671
    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
   672
    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
   673
    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
   674
    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
   675
    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
   676
    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
   677
    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
   678
    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
   679
    register_Ns3Ping6Helper_methods(root_module, root_module['ns3::Ping6Helper'])
10132
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
   680
    register_Ns3RadvdHelper_methods(root_module, root_module['ns3::RadvdHelper'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   681
    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
   682
    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
   683
    register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   684
    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
   685
    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
   686
    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
   687
    register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
   688
    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
   689
    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
   690
    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
   691
    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
   692
    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
   693
    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
   694
    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
   695
    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
   696
    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
   697
    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
   698
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   699
    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
   700
    register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   701
    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
   702
    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
   703
    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
   704
    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
   705
    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
   706
    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
   707
    register_Ns3PacketBurst_methods(root_module, root_module['ns3::PacketBurst'])
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
   708
    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
   709
    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
   710
    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
   711
    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
   712
    register_Ns3RandomVariableStream_methods(root_module, root_module['ns3::RandomVariableStream'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   713
    register_Ns3RedQueue_methods(root_module, root_module['ns3::RedQueue'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   714
    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
   715
    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
   716
    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
   717
    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
   718
    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
   719
    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
   720
    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
   721
    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
   722
    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
   723
    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
   724
    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
   725
    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
   726
    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
   727
    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
   728
    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
   729
    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
   730
    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
   731
    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
   732
    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
   733
    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
   734
    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
   735
    register_Ns3SocketFactory_methods(root_module, root_module['ns3::SocketFactory'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   736
    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
   737
    register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   738
    register_Ns3SocketIpv6HopLimitTag_methods(root_module, root_module['ns3::SocketIpv6HopLimitTag'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   739
    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
   740
    register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
   741
    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
   742
    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
   743
    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
   744
    register_Ns3TriangularRandomVariable_methods(root_module, root_module['ns3::TriangularRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   745
    register_Ns3UniformRandomVariable_methods(root_module, root_module['ns3::UniformRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   746
    register_Ns3WeibullRandomVariable_methods(root_module, root_module['ns3::WeibullRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   747
    register_Ns3ZetaRandomVariable_methods(root_module, root_module['ns3::ZetaRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   748
    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
   749
    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
   750
    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
   751
    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
   752
    register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   753
    register_Ns3BooleanChecker_methods(root_module, root_module['ns3::BooleanChecker'])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
   754
    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
   755
    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
   756
    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
   757
    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
   758
    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
   759
    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
   760
    register_Ns3ConstantRandomVariable_methods(root_module, root_module['ns3::ConstantRandomVariable'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   761
    register_Ns3DataCalculator_methods(root_module, root_module['ns3::DataCalculator'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   762
    register_Ns3DataCollectionObject_methods(root_module, root_module['ns3::DataCollectionObject'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   763
    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
   764
    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
   765
    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
   766
    register_Ns3DeterministicRandomVariable_methods(root_module, root_module['ns3::DeterministicRandomVariable'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   767
    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
   768
    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
   769
    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
   770
    register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   771
    register_Ns3EnumChecker_methods(root_module, root_module['ns3::EnumChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   772
    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
   773
    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
   774
    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
   775
    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
   776
    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
   777
    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
   778
    register_Ns3ExponentialRandomVariable_methods(root_module, root_module['ns3::ExponentialRandomVariable'])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
   779
    register_Ns3GammaRandomVariable_methods(root_module, root_module['ns3::GammaRandomVariable'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   780
    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
   781
    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
   782
    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
   783
    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
   784
    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
   785
    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
   786
    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
   787
    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
   788
    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
   789
    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
   790
    register_Ns3LogNormalRandomVariable_methods(root_module, root_module['ns3::LogNormalRandomVariable'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   791
    register_Ns3Mac16AddressChecker_methods(root_module, root_module['ns3::Mac16AddressChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   792
    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
   793
    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
   794
    register_Ns3Mac48AddressValue_methods(root_module, root_module['ns3::Mac48AddressValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   795
    register_Ns3Mac64AddressChecker_methods(root_module, root_module['ns3::Mac64AddressChecker'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   796
    register_Ns3Mac64AddressValue_methods(root_module, root_module['ns3::Mac64AddressValue'])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
   797
    register_Ns3MinMaxAvgTotalCalculator__Double_methods(root_module, root_module['ns3::MinMaxAvgTotalCalculator< double >'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   798
    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
   799
    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
   800
    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
   801
    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
   802
    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
   803
    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
   804
    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
   805
    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
   806
    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
   807
    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
   808
    register_Ns3PacketSink_methods(root_module, root_module['ns3::PacketSink'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   809
    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
   810
    register_Ns3PacketSocket_methods(root_module, root_module['ns3::PacketSocket'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   811
    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
   812
    register_Ns3PacketSocketFactory_methods(root_module, root_module['ns3::PacketSocketFactory'])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
   813
    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
   814
    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
   815
    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
   816
    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
   817
    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
   818
    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
   819
    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
   820
    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
   821
    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
   822
    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
   823
    register_Ns3Ping6_methods(root_module, root_module['ns3::Ping6'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   824
    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
   825
    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
   826
    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
   827
    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
   828
    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
   829
    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
   830
    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
   831
    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
   832
    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
   833
    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
   834
    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
   835
    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
   836
    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
   837
    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
   838
    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
   839
    register_Ns3UdpTraceClient_methods(root_module, root_module['ns3::UdpTraceClient'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   840
    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
   841
    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
   842
    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
   843
    register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   844
    register_Ns3ApplicationPacketProbe_methods(root_module, root_module['ns3::ApplicationPacketProbe'])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
   845
    register_Ns3BurstErrorModel_methods(root_module, root_module['ns3::BurstErrorModel'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   846
    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
   847
    register_Ns3PacketCounterCalculator_methods(root_module, root_module['ns3::PacketCounterCalculator'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   848
    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
   849
    register_Ns3PbbAddressTlv_methods(root_module, root_module['ns3::PbbAddressTlv'])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   850
    register_Ns3HashImplementation_methods(root_module, root_module['ns3::Hash::Implementation'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   851
    register_Ns3HashFunctionFnv1a_methods(root_module, root_module['ns3::Hash::Function::Fnv1a'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   852
    register_Ns3HashFunctionHash32_methods(root_module, root_module['ns3::Hash::Function::Hash32'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   853
    register_Ns3HashFunctionHash64_methods(root_module, root_module['ns3::Hash::Function::Hash64'])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   854
    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
   855
    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
   856
355d6562399e Modular 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
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
   858
    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
   859
    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
   860
    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
   861
    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
   862
    ## 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
   863
    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
   864
    ## 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
   865
    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
   866
    ## 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
   867
    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
   868
    ## 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
   869
    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
   870
                   '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
   871
                   [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
   872
                   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
   873
    ## 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
   874
    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
   875
                   '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
   876
                   [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
   877
    ## 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
   878
    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
   879
                   '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
   880
                   [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
   881
                   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
   882
    ## 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
   883
    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
   884
                   '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
   885
                   [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
   886
    ## 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
   887
    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
   888
                   '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
   889
                   [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
   890
                   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
   891
    ## 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
   892
    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
   893
                   '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
   894
                   [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
   895
    ## 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
   896
    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
   897
                   '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
   898
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   899
                   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
   900
    ## 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
   901
    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
   902
                   '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
   903
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   904
                   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
   905
    ## 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
   906
    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
   907
                   '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
   908
                   [], 
355d6562399e Modular 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
                   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
   910
    ## 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
   911
    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
   912
                   '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
   913
                   [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
   914
                   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
   915
    ## 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
   916
    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
   917
                   '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
   918
                   [], 
355d6562399e Modular 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
                   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
   920
    ## 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
   921
    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
   922
                   '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
   923
                   [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
   924
                   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
   925
    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
   926
355d6562399e Modular 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
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
   928
    ## 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
   929
    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
   930
    ## 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
   931
    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
   932
    ## 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
   933
    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
   934
    ## 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
   935
    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
   936
    ## 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
   937
    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
   938
                   '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
   939
                   [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
   940
    ## 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
   941
    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
   942
                   '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
   943
                   [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
   944
    ## 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
   945
    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
   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('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
   948
    ## 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
   949
    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
   950
                   '__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
   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
    ## 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
   954
    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
   955
                   '__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
   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
    ## 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
   959
    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
   960
                   '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
   961
                   [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
   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
    ## 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
   964
    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
   965
                   '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
   966
                   [], 
355d6562399e Modular 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
    ## 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
   969
    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
   970
                   '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
   971
                   [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
   972
    ## 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
   973
    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
   974
                   '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
   975
                   [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
   976
    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
   977
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   978
def register_Ns3AsciiFile_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   979
    ## ascii-file.h (module 'network'): ns3::AsciiFile::AsciiFile() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   980
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   981
    ## ascii-file.h (module 'network'): bool ns3::AsciiFile::Fail() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   982
    cls.add_method('Fail', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   983
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   984
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   985
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   986
    ## ascii-file.h (module 'network'): bool ns3::AsciiFile::Eof() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   987
    cls.add_method('Eof', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   988
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   989
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   990
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   991
    ## 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
   992
    cls.add_method('Open', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   993
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   994
                   [param('std::string const &', 'filename'), param('std::_Ios_Openmode', 'mode')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   995
    ## ascii-file.h (module 'network'): void ns3::AsciiFile::Close() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   996
    cls.add_method('Close', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   997
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   998
                   [])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
   999
    ## 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
  1000
    cls.add_method('Read', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1001
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1002
                   [param('std::string &', 'line')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1003
    ## 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
  1004
    cls.add_method('Diff', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1005
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1006
                   [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
  1007
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1008
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  1009
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
  1010
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
  1011
    ## 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
  1012
    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
  1013
    ## 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
  1014
    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
  1015
    ## 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
  1016
    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
  1017
                   '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
  1018
                   [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
  1019
    ## 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
  1020
    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
  1021
                   '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
  1022
                   [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
  1023
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1024
    ## 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
  1025
    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
  1026
                   '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
  1027
                   [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
  1028
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1029
    ## 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
  1030
    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
  1031
                   '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
  1032
                   [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
  1033
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1034
    ## 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
  1035
    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
  1036
                   '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
  1037
                   [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
  1038
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1039
    ## 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
  1040
    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
  1041
                   '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
  1042
                   [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
  1043
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1044
    ## 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
  1045
    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
  1046
                   '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
  1047
                   [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
  1048
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1049
    ## 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
  1050
    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
  1051
                   '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
  1052
                   [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
  1053
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1054
    ## 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
  1055
    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
  1056
                   '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
  1057
                   [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
  1058
                   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
  1059
    ## 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
  1060
    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
  1061
                   '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
  1062
                   [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
  1063
    ## 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
  1064
    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
  1065
                   '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
  1066
                   [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
  1067
    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
  1068
0fb01581be59 Modular bindings: application module must include 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
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
  1070
    ## 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
  1071
    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
  1072
    ## 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
  1073
    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
  1074
    ## 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
  1075
    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
  1076
                   '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
  1077
                   [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
  1078
    ## 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
  1079
    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
  1080
                   '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
  1081
                   [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
  1082
    ## 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
  1083
    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
  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('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
  1086
    ## 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
  1087
    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
  1088
                   '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
  1089
                   [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
  1090
    ## 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
  1091
    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
  1092
                   '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
  1093
                   [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
  1094
    ## 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
  1095
    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
  1096
                   '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
  1097
                   [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
  1098
    ## 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
  1099
    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
  1100
                   '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
  1101
                   [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
  1102
    ## 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
  1103
    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
  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 >', '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
  1106
    ## 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
  1107
    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
  1108
                   '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
  1109
                   [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
  1110
    ## 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
  1111
    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
  1112
                   '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
  1113
                   [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
  1114
    ## 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
  1115
    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
  1116
                   '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
  1117
                   [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
  1118
    ## 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
  1119
    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
  1120
                   '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
  1121
                   [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
  1122
    ## 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
  1123
    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
  1124
                   '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
  1125
                   [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
  1126
                   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
  1127
    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
  1128
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1129
def register_Ns3AttributeConstructionList_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1130
    ## 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
  1131
    cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1132
    ## 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
  1133
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1134
    ## 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
  1135
    cls.add_method('Add', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1136
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1137
                   [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
  1138
    ## 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
  1139
    cls.add_method('Begin', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1140
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1141
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1142
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1143
    ## 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
  1144
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1145
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1146
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1147
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1148
    ## 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
  1149
    cls.add_method('Find', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1150
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1151
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1152
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1153
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1154
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1155
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1156
    ## 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
  1157
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1158
    ## 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
  1159
    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
  1160
    ## 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
  1161
    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
  1162
    ## 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
  1163
    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
  1164
    ## 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
  1165
    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
  1166
    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
  1167
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1168
def register_Ns3Average__Double_methods(root_module, cls):
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1169
    ## 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
  1170
    cls.add_constructor([param('ns3::Average< double > const &', 'arg0')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1171
    ## average.h (module 'stats'): ns3::Average<double>::Average() [constructor]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1172
    cls.add_constructor([])
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1173
    ## 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
  1174
    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
  1175
                   '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
  1176
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1177
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1178
    ## 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
  1179
    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
  1180
                   '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
  1181
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1182
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1183
    ## 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
  1184
    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
  1185
                   '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
  1186
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1187
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1188
    ## 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
  1189
    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
  1190
                   '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
  1191
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1192
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1193
    ## 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
  1194
    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
  1195
                   '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
  1196
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1197
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1198
    ## 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
  1199
    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
  1200
                   '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
  1201
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1202
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1203
    ## 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
  1204
    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
  1205
                   '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
  1206
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1207
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1208
    ## 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
  1209
    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
  1210
                   '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
  1211
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1212
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1213
    ## 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
  1214
    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
  1215
                   '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
  1216
                   [])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1217
    ## 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
  1218
    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
  1219
                   '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
  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
                   is_const=True)
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1222
    ## 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
  1223
    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
  1224
                   '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
  1225
                   [param('double const &', 'x')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1226
    ## 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
  1227
    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
  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)
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1231
    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
  1232
355d6562399e Modular 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
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
  1234
    ## 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
  1235
    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
  1236
    ## 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
  1237
    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
  1238
    ## 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
  1239
    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
  1240
    ## 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
  1241
    cls.add_constructor([param('ns3::Buffer 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
  1242
    ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(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
  1243
    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
  1244
                   '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
  1245
                   [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
  1246
    ## 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
  1247
    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
  1248
                   '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
  1249
                   [param('ns3::Buffer 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
  1250
    ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(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
  1251
    cls.add_method('AddAtStart', 
355d6562399e Modular 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
                   '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
  1253
                   [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
  1254
    ## 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
  1255
    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
  1256
                   '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
  1257
                   [], 
355d6562399e Modular 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
                   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
  1259
    ## 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
  1260
    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
  1261
                   '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
  1262
                   [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
  1263
                   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
  1264
    ## 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
  1265
    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
  1266
                   '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
  1267
                   [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
  1268
                   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
  1269
    ## 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
  1270
    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
  1271
                   '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
  1272
                   [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
  1273
                   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
  1274
    ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() 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
  1275
    cls.add_method('CreateFullCopy', 
355d6562399e Modular 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
                   '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
  1277
                   [], 
355d6562399e Modular 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
                   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
  1279
    ## 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
  1280
    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
  1281
                   '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
  1282
                   [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
  1283
    ## 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
  1284
    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
  1285
                   '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
  1286
                   [], 
355d6562399e Modular 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
                   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
  1288
    ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() 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
  1289
    cls.add_method('GetCurrentEndOffset', 
355d6562399e Modular 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
                   'int32_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
  1291
                   [], 
355d6562399e Modular 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
                   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
  1293
    ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() 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
  1294
    cls.add_method('GetCurrentStartOffset', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1295
                   'int32_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
  1296
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1297
                   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
  1298
    ## 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
  1299
    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
  1300
                   '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
  1301
                   [], 
355d6562399e Modular 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
                   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
  1303
    ## 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
  1304
    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
  1305
                   '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
  1306
                   [], 
355d6562399e Modular 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
                   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
  1308
    ## 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
  1309
    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
  1310
                   '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
  1311
                   [], 
355d6562399e Modular 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
                   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
  1313
    ## 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
  1314
    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
  1315
                   '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
  1316
                   [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
  1317
    ## 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
  1318
    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
  1319
                   '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
  1320
                   [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
  1321
    ## 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
  1322
    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
  1323
                   '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
  1324
                   [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
  1325
                   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
  1326
    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
  1327
355d6562399e Modular 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
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
  1329
    ## 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
  1330
    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
  1331
    ## 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
  1332
    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
  1333
    ## 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
  1334
    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
  1335
                   '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
  1336
                   [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
  1337
    ## 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
  1338
    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
  1339
                   '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
  1340
                   [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
  1341
    ## 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
  1342
    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
  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
                   [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
  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'): 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
  1347
    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
  1348
                   '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
  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'): 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
  1352
    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
  1353
                   '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
  1354
                   [], 
355d6562399e Modular 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
                   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
  1356
    ## 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
  1357
    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
  1358
                   '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
  1359
                   [], 
355d6562399e Modular 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
                   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
  1361
    ## 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
  1362
    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
  1363
                   '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
  1364
                   [])
355d6562399e Modular 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
    ## 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
  1366
    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
  1367
                   '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
  1368
                   [param('uint32_t', 'delta')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1369
    ## 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
  1370
    cls.add_method('PeekU8', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1371
                   'uint8_t', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1372
                   [])
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
  1373
    ## 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
  1374
    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
  1375
                   '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
  1376
                   [])
355d6562399e Modular 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
    ## 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
  1378
    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
  1379
                   '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
  1380
                   [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
  1381
    ## 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
  1382
    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
  1383
                   '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
  1384
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1385
    ## 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
  1386
    cls.add_method('Read', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1387
                   'void', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  1388
                   [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
  1389
    ## 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
  1390
    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
  1391
                   '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
  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
    ## 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
  1394
    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
  1395
                   '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
  1396
                   [])
355d6562399e Modular 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
    ## 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
  1398
    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
  1399
                   '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
  1400
                   [])
355d6562399e Modular 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
    ## 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
  1402
    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
  1403
                   '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
  1404
                   [])
355d6562399e Modular 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
    ## 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
  1406
    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
  1407
                   '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
  1408
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1409
    ## 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
  1410
    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
  1411
                   '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
  1412
                   [])
355d6562399e Modular 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
    ## 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
  1414
    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
  1415
                   '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
  1416
                   [])
355d6562399e Modular 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
    ## 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
  1418
    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
  1419
                   '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
  1420
                   [])
355d6562399e Modular 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
    ## 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
  1422
    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
  1423
                   '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
  1424
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1425
    ## 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
  1426
    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
  1427
                   '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
  1428
                   [])
355d6562399e Modular 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
    ## 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
  1430
    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
  1431
                   '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
  1432
                   [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
  1433
    ## 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
  1434
    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
  1435
                   '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
  1436
                   [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
  1437
    ## 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
  1438
    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
  1439
                   '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
  1440
                   [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
  1441
    ## 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
  1442
    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
  1443
                   '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
  1444
                   [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
  1445
    ## 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
  1446
    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
  1447
                   '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
  1448
                   [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
  1449
    ## 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
  1450
    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
  1451
                   '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
  1452
                   [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
  1453
    ## 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
  1454
    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
  1455
                   '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
  1456
                   [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
  1457
    ## 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
  1458
    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
  1459
                   '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
  1460
                   [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
  1461
    ## 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
  1462
    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
  1463
                   '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
  1464
                   [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
  1465
    ## 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
  1466
    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
  1467
                   '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
  1468
                   [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
  1469
    ## 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
  1470
    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
  1471
                   '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
  1472
                   [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
  1473
    ## 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
  1474
    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
  1475
                   '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
  1476
                   [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
  1477
    ## 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
  1478
    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
  1479
                   '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
  1480
                   [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
  1481
    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
  1482
355d6562399e Modular 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
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
  1484
    ## 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
  1485
    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
  1486
    ## 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
  1487
    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
  1488
    ## 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
  1489
    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
  1490
                   '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
  1491
                   [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
  1492
                   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
  1493
    ## 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
  1494
    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
  1495
                   '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
  1496
                   [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
  1497
                   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
  1498
    ## 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
  1499
    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
  1500
                   '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
  1501
                   [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
  1502
                   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
  1503
    ## 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
  1504
    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
  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('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
  1507
    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
  1508
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
  1509
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
  1510
    ## 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
  1511
    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
  1512
    ## 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
  1513
    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
  1514
                   '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
  1515
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1516
                   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
  1517
    ## 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
  1518
    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
  1519
                   '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
  1520
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1521
    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
  1522
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1523
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
  1524
    ## 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
  1525
    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
  1526
    ## 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
  1527
    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
  1528
                   '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
  1529
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1530
                   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
  1531
    ## 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
  1532
    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
  1533
                   '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
  1534
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1535
                   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
  1536
    ## 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
  1537
    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
  1538
                   '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
  1539
                   [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
  1540
                   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
  1541
    ## 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
  1542
    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
  1543
                   '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
  1544
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1545
                   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
  1546
    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
  1547
0fb01581be59 Modular bindings: application module must include 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
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
  1549
    ## 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
  1550
    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
  1551
    ## 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
  1552
    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
  1553
    ## 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
  1554
    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
  1555
                   '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
  1556
                   [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
  1557
    ## 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
  1558
    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
  1559
                   '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
  1560
                   [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
  1561
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
0fb01581be59 Modular bindings: application module must include 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
    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
  1563
                   '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
  1564
                   [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
0fb01581be59 Modular bindings: application module must include 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
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
0fb01581be59 Modular bindings: application module must include 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
    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
  1567
                   '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
  1568
                   [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  1570
    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
  1571
                   '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
  1572
                   [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
  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
    ## 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
  1575
    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
  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
                   [])
0fb01581be59 Modular bindings: application module must include 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
    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
  1579
0fb01581be59 Modular bindings: application module must include 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
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
  1581
    ## 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
  1582
    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
  1583
    ## 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
  1584
    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
  1585
                   '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
  1586
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  1588
    ## 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
  1589
    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
  1590
                   '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
  1591
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  1593
    ## 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
  1594
    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
  1595
                   '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
  1596
                   [])
0fb01581be59 Modular bindings: application module must include 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
    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
  1598
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1599
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
  1600
    ## 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
  1601
    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
  1602
    ## 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
  1603
    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
  1604
    ## 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
  1605
    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
  1606
    ## 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
  1607
    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
  1608
    ## 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
  1609
    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
  1610
    ## 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
  1611
    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
  1612
    ## 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
  1613
    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
  1614
    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
  1615
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
  1616
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
  1617
    ## 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
  1618
    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
  1619
    ## 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
  1620
    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
  1621
    ## 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
  1622
    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
  1623
                   '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
  1624
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1625
                   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
  1626
    ## 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
  1627
    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
  1628
                        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
  1629
    ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1630
    cls.add_method('Demangle', 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1631
                   '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
  1632
                   [param('std::string const &', 'mangled')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1633
                   is_static=True, 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
  1634
    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
  1635
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
  1636
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
  1637
    ## 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
  1638
    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
  1639
    ## 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
  1640
    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
  1641
    ## 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
  1642
    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
  1643
                   '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
  1644
                   [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
  1645
                   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
  1646
    ## 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
  1647
    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
  1648
                   '__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
  1649
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  1651
    ## 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
  1652
    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
  1653
                   '__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
  1654
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  1656
    ## 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
  1657
    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
  1658
                   '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
  1659
                   [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
  1660
                   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
  1661
    ## 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
  1662
    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
  1663
                   '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
  1664
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1665
                   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
  1666
    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
  1667
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1668
def register_Ns3DataOutputCallback_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1669
    ## data-output-interface.h (module 'stats'): ns3::DataOutputCallback::DataOutputCallback() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1670
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1671
    ## 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
  1672
    cls.add_constructor([param('ns3::DataOutputCallback const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1673
    ## 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
  1674
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1675
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1676
                   [param('std::string', 'key'), param('std::string', 'variable'), param('int', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1677
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1678
    ## 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
  1679
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1680
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1681
                   [param('std::string', 'key'), param('std::string', 'variable'), param('uint32_t', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1682
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1683
    ## 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
  1684
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1685
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1686
                   [param('std::string', 'key'), param('std::string', 'variable'), param('double', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1687
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1688
    ## 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
  1689
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1690
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1691
                   [param('std::string', 'key'), param('std::string', 'variable'), param('std::string', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1692
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1693
    ## 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
  1694
    cls.add_method('OutputSingleton', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1695
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1696
                   [param('std::string', 'key'), param('std::string', 'variable'), param('ns3::Time', 'val')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1697
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1698
    ## 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
  1699
    cls.add_method('OutputStatistic', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1700
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1701
                   [param('std::string', 'key'), param('std::string', 'variable'), param('ns3::StatisticalSummary const *', 'statSum')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1702
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1703
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  1704
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
  1705
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
  1706
    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
  1707
    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
  1708
    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
  1709
    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
  1710
    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
  1711
    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
  1712
    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
  1713
    ## 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
  1714
    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
  1715
    ## 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
  1716
    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
  1717
    ## 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
  1718
    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
  1719
    ## 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
  1720
    cls.add_constructor([param('std::string', 'rate')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1721
    ## 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
  1722
    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
  1723
                   '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
  1724
                   [param('uint32_t', 'bytes')], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1725
                   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
  1726
    ## 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
  1727
    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
  1728
                   '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
  1729
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1730
                   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
  1731
    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
  1732
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1733
def register_Ns3DelayJitterEstimation_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1734
    ## 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
  1735
    cls.add_constructor([param('ns3::DelayJitterEstimation const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1736
    ## delay-jitter-estimation.h (module 'network'): ns3::DelayJitterEstimation::DelayJitterEstimation() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1737
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1738
    ## 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
  1739
    cls.add_method('GetLastDelay', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1740
                   'ns3::Time', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1741
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1742
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1743
    ## 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
  1744
    cls.add_method('GetLastJitter', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1745
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1746
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1747
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1748
    ## 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
  1749
    cls.add_method('PrepareTx', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1750
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1751
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1752
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1753
    ## 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
  1754
    cls.add_method('RecordRx', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1755
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1756
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1757
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1758
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
  1759
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
  1760
    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
  1761
    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
  1762
    ## 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
  1763
    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
  1764
    ## 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
  1765
    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
  1766
    ## 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
  1767
    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
  1768
    ## 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
  1769
    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
  1770
                   '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
  1771
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1772
    ## 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
  1773
    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
  1774
                   '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
  1775
                   [], 
355d6562399e Modular 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
                   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
  1777
    ## 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
  1778
    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
  1779
                   '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
  1780
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1781
                   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
  1782
    ## 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
  1783
    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
  1784
                   '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
  1785
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1786
                   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
  1787
    ## 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
  1788
    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
  1789
                   '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
  1790
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1791
                   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
  1792
    ## 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
  1793
    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
  1794
                   '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
  1795
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1796
                   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
  1797
    ## 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
  1798
    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
  1799
                   '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
  1800
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1801
                   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
  1802
    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
  1803
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1804
def register_Ns3Hasher_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1805
    ## 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
  1806
    cls.add_constructor([param('ns3::Hasher const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1807
    ## hash.h (module 'core'): ns3::Hasher::Hasher() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1808
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1809
    ## 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
  1810
    cls.add_constructor([param('ns3::Ptr< ns3::Hash::Implementation >', 'hp')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1811
    ## 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
  1812
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1813
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1814
                   [param('char const *', 'buffer'), param('size_t const', 'size')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1815
    ## 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
  1816
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1817
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1818
                   [param('std::string const', 's')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1819
    ## 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
  1820
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1821
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1822
                   [param('char const *', 'buffer'), param('size_t const', 'size')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1823
    ## 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
  1824
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1825
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1826
                   [param('std::string const', 's')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1827
    ## hash.h (module 'core'): ns3::Hasher & ns3::Hasher::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1828
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1829
                   'ns3::Hasher &', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1830
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1831
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1832
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
  1833
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
  1834
    ## 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
  1835
    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
  1836
    ## 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
  1837
    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
  1838
    ## 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
  1839
    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
  1840
    ## 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
  1841
    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
  1842
    ## 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
  1843
    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
  1844
    ## 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
  1845
    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
  1846
    ## 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
  1847
    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
  1848
                   '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
  1849
                   [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
  1850
                   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
  1851
    ## 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
  1852
    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
  1853
                   '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
  1854
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1855
                   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
  1856
    ## 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
  1857
    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
  1858
                   '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
  1859
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1860
                   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
  1861
    ## 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
  1862
    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
  1863
                   '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
  1864
                   [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
  1865
                   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
  1866
    ## 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
  1867
    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
  1868
                   '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
  1869
                   [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
  1870
    ## 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
  1871
    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
  1872
                   '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
  1873
                   [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
  1874
    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
  1875
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  1876
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
  1877
    ## 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
  1878
    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
  1879
    ## 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
  1880
    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
  1881
    ## 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
  1882
    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
  1883
    ## 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
  1884
    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
  1885
    ## 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
  1886
    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
  1887
    ## 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
  1888
    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
  1889
    ## 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
  1890
    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
  1891
                   '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
  1892
                   [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
  1893
                   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
  1894
    ## 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
  1895
    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
  1896
                   '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
  1897
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  1899
    ## 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
  1900
    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
  1901
                   '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
  1902
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  1904
    ## 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
  1905
    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
  1906
                   '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
  1907
                   [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
  1908
                   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
  1909
    ## 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
  1910
    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
  1911
                   '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
  1912
                   [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
  1913
    ## 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
  1914
    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
  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('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
  1917
    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
  1918
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
  1919
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
  1920
    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
  1921
    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
  1922
    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
  1923
    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
  1924
    ## 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
  1925
    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
  1926
    ## 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
  1927
    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
  1928
    ## 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
  1929
    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
  1930
    ## 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
  1931
    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
  1932
    ## 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
  1933
    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
  1934
                   '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
  1935
                   [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
  1936
                   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
  1937
    ## 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
  1938
    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
  1939
                   '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
  1940
                   [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
  1941
                   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
  1942
    ## 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
  1943
    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
  1944
                   '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
  1945
                   [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
  1946
                   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
  1947
    ## 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
  1948
    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
  1949
                   '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
  1950
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1951
                   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
  1952
    ## 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
  1953
    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
  1954
                   '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
  1955
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1956
                   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
  1957
    ## 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
  1958
    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
  1959
                   '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
  1960
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1961
                   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
  1962
    ## 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
  1963
    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
  1964
                   '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
  1965
                   [], 
355d6562399e Modular 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
                   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
  1967
    ## 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
  1968
    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
  1969
                   '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
  1970
                   [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
  1971
                   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
  1972
    ## 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
  1973
    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
  1974
                   '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
  1975
                   [], 
355d6562399e Modular 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
                   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
  1977
    ## 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
  1978
    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
  1979
                   '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
  1980
                   [], 
355d6562399e Modular 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
                   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
  1982
    ## 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
  1983
    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
  1984
                   '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
  1985
                   [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
  1986
                   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
  1987
    ## 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
  1988
    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
  1989
                   '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
  1990
                   [], 
355d6562399e Modular 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
                   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
  1992
    ## 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
  1993
    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
  1994
                   '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
  1995
                   [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
  1996
                   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
  1997
    ## 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
  1998
    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
  1999
                   '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
  2000
                   [], 
355d6562399e Modular 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
                   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
  2002
    ## 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
  2003
    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
  2004
                   '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
  2005
                   [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
  2006
                   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
  2007
    ## 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
  2008
    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
  2009
                   '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
  2010
                   [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
  2011
                   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
  2012
    ## 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
  2013
    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
  2014
                   '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
  2015
                   [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
  2016
                   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
  2017
    ## 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
  2018
    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
  2019
                   '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
  2020
                   [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
  2021
    ## 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
  2022
    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
  2023
                   '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
  2024
                   [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
  2025
    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
  2026
355d6562399e Modular 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
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
  2028
    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
  2029
    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
  2030
    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
  2031
    ## 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
  2032
    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
  2033
    ## 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
  2034
    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
  2035
    ## 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
  2036
    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
  2037
    ## 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
  2038
    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
  2039
    ## 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
  2040
    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
  2041
                   '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
  2042
                   [], 
355d6562399e Modular 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_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
  2044
    ## 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
  2045
    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
  2046
                   '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
  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'): 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
  2050
    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
  2051
                   '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
  2052
                   [], 
355d6562399e Modular 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_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
  2054
    ## 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
  2055
    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
  2056
                   '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
  2057
                   [], 
355d6562399e Modular 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_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
  2059
    ## 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
  2060
    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
  2061
                   '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
  2062
                   [], 
355d6562399e Modular 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'): 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
  2065
    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
  2066
                   '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
  2067
                   [], 
355d6562399e Modular 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
                   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
  2069
    ## 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
  2070
    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
  2071
                   '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
  2072
                   [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
  2073
                   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
  2074
    ## 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
  2075
    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
  2076
                   '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
  2077
                   [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
  2078
                   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
  2079
    ## 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
  2080
    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
  2081
                   '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
  2082
                   [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
  2083
                   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
  2084
    ## 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
  2085
    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
  2086
                   '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
  2087
                   [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
  2088
    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
  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
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
  2091
    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
  2092
    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
  2093
    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
  2094
    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
  2095
    ## 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
  2096
    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
  2097
    ## 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
  2098
    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
  2099
    ## 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
  2100
    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
  2101
    ## 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
  2102
    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
  2103
    ## 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
  2104
    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
  2105
    ## 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
  2106
    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
  2107
                   '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
  2108
                   [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
  2109
    ## 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
  2110
    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
  2111
                   '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
  2112
                   [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
  2113
                   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
  2114
    ## 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
  2115
    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
  2116
                   '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
  2117
                   [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
  2118
                   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
  2119
    ## 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
  2120
    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
  2121
                   '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
  2122
                   [], 
355d6562399e Modular 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
                   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
  2124
    ## 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
  2125
    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
  2126
                   '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
  2127
                   [], 
355d6562399e Modular 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
                   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
  2129
    ## 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
  2130
    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
  2131
                   '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
  2132
                   [], 
355d6562399e Modular 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
                   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
  2134
    ## 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
  2135
    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
  2136
                   '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
  2137
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2138
                   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
  2139
    ## 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
  2140
    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
  2141
                   '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
  2142
                   [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
  2143
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2144
    ## 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
  2145
    cls.add_method('GetIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2146
                   'ns3::Ipv4Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2147
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2148
                   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
  2149
    ## 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
  2150
    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
  2151
                   '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
  2152
                   [], 
355d6562399e Modular 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
                   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
  2154
    ## 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
  2155
    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
  2156
                   '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
  2157
                   [], 
355d6562399e Modular 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
                   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
  2159
    ## 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
  2160
    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
  2161
                   '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
  2162
                   [], 
355d6562399e Modular 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
                   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
  2164
    ## 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
  2165
    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
  2166
                   '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
  2167
                   [], 
355d6562399e Modular 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
                   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
  2169
    ## 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
  2170
    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
  2171
                   '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
  2172
                   [], 
355d6562399e Modular 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
                   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
  2174
    ## 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
  2175
    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
  2176
                   '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
  2177
                   [], 
355d6562399e Modular 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
                   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
  2179
    ## 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
  2180
    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
  2181
                   '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
  2182
                   [], 
355d6562399e Modular 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
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2184
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsDocumentation() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2185
    cls.add_method('IsDocumentation', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2186
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2187
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2188
                   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
  2189
    ## 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
  2190
    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
  2191
                   '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
  2192
                   [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
  2193
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  2194
    ## 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
  2195
    cls.add_method('IsIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2196
                   'bool', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  2197
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  2198
                   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
  2199
    ## 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
  2200
    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
  2201
                   '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
  2202
                   [], 
355d6562399e Modular 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
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2204
    ## 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
  2205
    cls.add_method('IsLinkLocalMulticast', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2206
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2207
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2208
                   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
  2209
    ## 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
  2210
    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
  2211
                   '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
  2212
                   [], 
355d6562399e Modular 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
                   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
  2214
    ## 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
  2215
    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
  2216
                   '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
  2217
                   [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
  2218
                   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
  2219
    ## 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
  2220
    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
  2221
                   '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
  2222
                   [], 
355d6562399e Modular 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
                   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
  2224
    ## 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
  2225
    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
  2226
                   '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
  2227
                   [], 
355d6562399e Modular 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
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2229
    ## 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
  2230
    cls.add_method('MakeAutoconfiguredAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2231
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2232
                   [param('ns3::Mac16Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2233
                   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
  2234
    ## 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
  2235
    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
  2236
                   '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
  2237
                   [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
  2238
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2239
    ## 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
  2240
    cls.add_method('MakeAutoconfiguredAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2241
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2242
                   [param('ns3::Mac64Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2243
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2244
    ## 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
  2245
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2246
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2247
                   [param('ns3::Mac16Address', 'mac')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2248
                   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
  2249
    ## 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
  2250
    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
  2251
                   '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
  2252
                   [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
  2253
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2254
    ## 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
  2255
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2256
                   'ns3::Ipv6Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2257
                   [param('ns3::Mac64Address', 'mac')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2258
                   is_static=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2259
    ## 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
  2260
    cls.add_method('MakeIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2261
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2262
                   [param('ns3::Ipv4Address', 'addr')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  2263
                   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
  2264
    ## 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
  2265
    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
  2266
                   '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
  2267
                   [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
  2268
                   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
  2269
    ## 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
  2270
    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
  2271
                   '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
  2272
                   [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
  2273
                   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
  2274
    ## 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
  2275
    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
  2276
                   '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
  2277
                   [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
  2278
                   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
  2279
    ## 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
  2280
    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
  2281
                   '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
  2282
                   [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
  2283
    ## 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
  2284
    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
  2285
                   '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
  2286
                   [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
  2287
    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
  2288
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2289
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
  2290
    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
  2291
    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
  2292
    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
  2293
    ## 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
  2294
    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
  2295
    ## 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
  2296
    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
  2297
    ## 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
  2298
    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
  2299
    ## 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
  2300
    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
  2301
    ## 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
  2302
    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
  2303
    ## 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
  2304
    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
  2305
    ## 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
  2306
    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
  2307
                   '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
  2308
                   [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
  2309
                   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
  2310
    ## 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
  2311
    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
  2312
                   '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
  2313
                   [], 
355d6562399e Modular 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
                   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
  2315
    ## 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
  2316
    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
  2317
                   '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
  2318
                   [], 
355d6562399e Modular 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
                   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
  2320
    ## 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
  2321
    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
  2322
                   '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
  2323
                   [], 
355d6562399e Modular 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
                   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
  2325
    ## 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
  2326
    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
  2327
                   '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
  2328
                   [], 
355d6562399e Modular 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
                   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
  2330
    ## 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
  2331
    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
  2332
                   '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
  2333
                   [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
  2334
                   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
  2335
    ## 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
  2336
    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
  2337
                   '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
  2338
                   [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
  2339
                   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
  2340
    ## 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
  2341
    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
  2342
                   '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
  2343
                   [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
  2344
                   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
  2345
    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
  2346
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2347
def register_Ns3Mac16Address_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2348
    cls.add_binary_comparison_operator('!=')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2349
    cls.add_binary_comparison_operator('<')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2350
    cls.add_output_stream_operator()
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2351
    cls.add_binary_comparison_operator('==')
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2352
    ## 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
  2353
    cls.add_constructor([param('ns3::Mac16Address const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2354
    ## mac16-address.h (module 'network'): ns3::Mac16Address::Mac16Address() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2355
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2356
    ## mac16-address.h (module 'network'): ns3::Mac16Address::Mac16Address(char const * str) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2357
    cls.add_constructor([param('char const *', 'str')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2358
    ## 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
  2359
    cls.add_method('Allocate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2360
                   'ns3::Mac16Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2361
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2362
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2363
    ## 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
  2364
    cls.add_method('ConvertFrom', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2365
                   'ns3::Mac16Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2366
                   [param('ns3::Address const &', 'address')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2367
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2368
    ## 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
  2369
    cls.add_method('CopyFrom', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2370
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2371
                   [param('uint8_t const *', 'buffer')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2372
    ## 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
  2373
    cls.add_method('CopyTo', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2374
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2375
                   [param('uint8_t *', 'buffer')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2376
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2377
    ## 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
  2378
    cls.add_method('IsMatchingType', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2379
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2380
                   [param('ns3::Address const &', 'address')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2381
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2382
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2383
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
  2384
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
  2385
    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
  2386
    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
  2387
    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
  2388
    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
  2389
    ## 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
  2390
    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
  2391
    ## 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
  2392
    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
  2393
    ## 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
  2394
    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
  2395
    ## 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
  2396
    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
  2397
                   '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
  2398
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2399
                   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
  2400
    ## 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
  2401
    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
  2402
                   '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
  2403
                   [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
  2404
                   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
  2405
    ## 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
  2406
    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
  2407
                   '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
  2408
                   [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
  2409
    ## 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
  2410
    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
  2411
                   '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
  2412
                   [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
  2413
                   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
  2414
    ## 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
  2415
    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
  2416
                   '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
  2417
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2418
                   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
  2419
    ## 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
  2420
    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
  2421
                   '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
  2422
                   [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
  2423
                   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
  2424
    ## 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
  2425
    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
  2426
                   '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
  2427
                   [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
  2428
                   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
  2429
    ## 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
  2430
    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
  2431
                   '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
  2432
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2434
    ## 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
  2435
    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
  2436
                   '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
  2437
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2439
    ## 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
  2440
    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
  2441
                   '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
  2442
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2444
    ## 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
  2445
    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
  2446
                   '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
  2447
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2449
    ## 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
  2450
    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
  2451
                   '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
  2452
                   [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
  2453
                   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
  2454
    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
  2455
0fb01581be59 Modular bindings: application module must include 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
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
  2457
    cls.add_binary_comparison_operator('!=')
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2458
    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
  2459
    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
  2460
    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
  2461
    ## 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
  2462
    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
  2463
    ## 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
  2464
    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
  2465
    ## 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
  2466
    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
  2467
    ## 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
  2468
    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
  2469
                   '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
  2470
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2472
    ## 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
  2473
    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
  2474
                   '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
  2475
                   [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
  2476
                   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
  2477
    ## 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
  2478
    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
  2479
                   '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
  2480
                   [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
  2481
    ## 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
  2482
    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
  2483
                   '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
  2484
                   [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
  2485
                   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
  2486
    ## 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
  2487
    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
  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
                   [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
  2490
                   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
  2491
    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
  2492
0fb01581be59 Modular bindings: application module must include 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
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
  2494
    ## 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
  2495
    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
  2496
    ## 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
  2497
    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
  2498
    ## 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
  2499
    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
  2500
    ## 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
  2501
    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
  2502
    ## 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
  2503
    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
  2504
    ## 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
  2505
    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
  2506
                   '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
  2507
                   [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
  2508
    ## 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
  2509
    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
  2510
                   '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
  2511
                   [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
  2512
    ## 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
  2513
    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
  2514
                   '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
  2515
                   [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
  2516
    ## 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
  2517
    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
  2518
                   '__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
  2519
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2521
    ## 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
  2522
    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
  2523
                   '__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
  2524
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2526
    ## 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
  2527
    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
  2528
                   '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
  2529
                   [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
  2530
                   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
  2531
    ## 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
  2532
    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
  2533
                   '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
  2534
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2536
    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
  2537
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
  2538
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
  2539
    ## 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
  2540
    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
  2541
    ## 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
  2542
    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
  2543
    ## 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
  2544
    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
  2545
    ## 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
  2546
    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
  2547
    ## 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
  2548
    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
  2549
    ## 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
  2550
    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
  2551
    ## 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
  2552
    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
  2553
    ## 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
  2554
    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
  2555
    ## 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
  2556
    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
  2557
                   '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
  2558
                   [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
  2559
    ## 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
  2560
    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
  2561
                   '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
  2562
                   [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
  2563
    ## 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
  2564
    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
  2565
                   '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
  2566
                   [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
  2567
    ## 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
  2568
    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
  2569
                   '__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
  2570
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2571
                   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
  2572
    ## 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
  2573
    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
  2574
                   '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
  2575
                   [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
  2576
    ## 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
  2577
    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
  2578
                   '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
  2579
                   [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
  2580
    ## 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
  2581
    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
  2582
                   '__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
  2583
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2584
                   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
  2585
    ## 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
  2586
    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
  2587
                   '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
  2588
                   [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
  2589
                   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
  2590
    ## 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
  2591
    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
  2592
                   '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
  2593
                   [], 
355d6562399e Modular 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
                   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
  2595
    ## 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
  2596
    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
  2597
                   '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
  2598
                   [], 
355d6562399e Modular 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
                   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
  2600
    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
  2601
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
  2602
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
  2603
    ## 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
  2604
    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
  2605
    ## 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
  2606
    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
  2607
    ## 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
  2608
    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
  2609
                   '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
  2610
                   [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
  2611
                   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
  2612
    ## 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
  2613
    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
  2614
                   '__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
  2615
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2616
                   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
  2617
    ## 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
  2618
    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
  2619
                   '__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
  2620
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2621
                   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
  2622
    ## 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
  2623
    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
  2624
                   '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
  2625
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2626
                   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
  2627
    ## 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
  2628
    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
  2629
                   '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
  2630
                   [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
  2631
                   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
  2632
    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
  2633
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
  2634
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
  2635
    ## 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
  2636
    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
  2637
    ## 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
  2638
    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
  2639
    ## 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
  2640
    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
  2641
                   '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
  2642
                   [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
  2643
                   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
  2644
    ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, 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
  2645
    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
  2646
                   '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
  2647
                   [param('std::string', 'name'), 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
  2648
                   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
  2649
    ## 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
  2650
    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
  2651
                   '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
  2652
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2653
                   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
  2654
    ## 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
  2655
    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
  2656
                   '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
  2657
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2658
                   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
  2659
    ## 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
  2660
    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
  2661
                   '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
  2662
                   [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
  2663
    ## 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
  2664
    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
  2665
                   '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
  2666
                   [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
  2667
    ## 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
  2668
    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
  2669
                   '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
  2670
                   [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
  2671
    ## 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
  2672
    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
  2673
                   '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
  2674
                   [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
  2675
    ## 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
  2676
    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
  2677
                   '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
  2678
                   [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
  2679
    ## 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
  2680
    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
  2681
                   '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
  2682
                   [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
  2683
    ## 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
  2684
    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
  2685
                   'void', 
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2686
                   [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
  2687
                   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
  2688
    ## 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
  2689
    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
  2690
                   '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
  2691
                   [], 
355d6562399e Modular 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
                   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
  2693
    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
  2694
355d6562399e Modular 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
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
  2696
    ## 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
  2697
    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
  2698
    ## 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
  2699
    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
  2700
    ## 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
  2701
    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
  2702
                   '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
  2703
                   [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
  2704
                   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
  2705
    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
  2706
355d6562399e Modular 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
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
  2708
    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
  2709
    ## 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
  2710
    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
  2711
    ## 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
  2712
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2713
    ## 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
  2714
    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
  2715
    ## 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
  2716
    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
  2717
                   '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
  2718
                   [], 
355d6562399e Modular 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
                   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
  2720
    ## 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
  2721
    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
  2722
                   '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
  2723
                   [], 
355d6562399e Modular 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
                   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
  2725
    ## 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
  2726
    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
  2727
                   '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
  2728
                   [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
  2729
    ## 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
  2730
    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
  2731
                   '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
  2732
                   [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
  2733
    ## 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
  2734
    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
  2735
                   '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
  2736
                   [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
  2737
    ## 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
  2738
    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
  2739
                   '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
  2740
                   [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
  2741
    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
  2742
355d6562399e Modular 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
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
  2744
    ## 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
  2745
    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
  2746
    ## 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
  2747
    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
  2748
    ## 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
  2749
    cls.add_method('AssignStreams', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  2750
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  2751
                   [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
  2752
    ## 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
  2753
    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
  2754
                   '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
  2755
                   [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
  2756
                   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
  2757
    ## 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
  2758
    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
  2759
                   '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
  2760
                   [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
  2761
                   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
  2762
    ## 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
  2763
    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
  2764
                   '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
  2765
                   [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
  2766
                   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
  2767
    ## 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
  2768
    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
  2769
                   '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
  2770
                   [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
  2771
    ## 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
  2772
    cls.add_method('SetConstantRate', 
3ec20a64fd08 Add a constant rate setting function to the on-off helper
Mitch Watrous
parents: 8986
diff changeset
  2773
                   'void', 
3ec20a64fd08 Add a constant rate setting function to the on-off helper
Mitch Watrous
parents: 8986
diff changeset
  2774
                   [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
  2775
    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
  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
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
  2778
    ## 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
  2779
    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
  2780
    ## 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
  2781
    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
  2782
    ## 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
  2783
    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
  2784
                   '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
  2785
                   [], 
355d6562399e Modular 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
                   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
  2787
    ## 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
  2788
    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
  2789
                   '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
  2790
                   [], 
355d6562399e Modular 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
                   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
  2792
    ## 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
  2793
    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
  2794
                   '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
  2795
                   [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
  2796
    ## 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
  2797
    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
  2798
                   '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
  2799
                   [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
  2800
    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
  2801
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
  2802
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
  2803
    ## 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
  2804
    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
  2805
    ## 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
  2806
    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
  2807
    ## 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
  2808
    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
  2809
                   '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
  2810
                   [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
  2811
    ## 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
  2812
    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
  2813
                   '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
  2814
                   [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
  2815
    ## 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
  2816
    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
  2817
                   '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
  2818
                   [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
  2819
    ## 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
  2820
    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
  2821
                   '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
  2822
                   [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
  2823
    ## 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
  2824
    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
  2825
                   '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
  2826
                   [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
  2827
                   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
  2828
    ## 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
  2829
    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
  2830
                   '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
  2831
                   [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
  2832
                   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
  2833
    ## 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
  2834
    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
  2835
                   '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
  2836
                   [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
  2837
    ## 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
  2838
    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
  2839
                   '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
  2840
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2841
                   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
  2842
    ## 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
  2843
    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
  2844
                   '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
  2845
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2846
                   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
  2847
    ## 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
  2848
    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
  2849
                   '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
  2850
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2851
                   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
  2852
    ## 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
  2853
    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
  2854
                   '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
  2855
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2857
    ## 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
  2858
    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
  2859
                   '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
  2860
                   [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
  2861
    ## 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
  2862
    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
  2863
                   '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
  2864
                   [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
  2865
    ## 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
  2866
    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
  2867
                   '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
  2868
                   [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
  2869
    ## 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
  2870
    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
  2871
                   '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
  2872
                   [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
  2873
    ## 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
  2874
    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
  2875
                   '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
  2876
                   [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
  2877
                   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
  2878
    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
  2879
0fb01581be59 Modular bindings: application module must include 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
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
  2881
    ## 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
  2882
    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
  2883
    ## 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
  2884
    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
  2885
    ## 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
  2886
    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
  2887
    ## 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
  2888
    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
  2889
    ## 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
  2890
    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
  2891
    ## 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
  2892
    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
  2893
    ## 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
  2894
    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
  2895
    ## 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
  2896
    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
  2897
    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
  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
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
  2900
    ## 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
  2901
    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
  2902
    ## 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
  2903
    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
  2904
    ## 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
  2905
    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
  2906
                   '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
  2907
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2909
    ## 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
  2910
    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
  2911
                   '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
  2912
                   [])
0fb01581be59 Modular bindings: application module must include 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
    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
  2914
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
  2915
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
  2916
    ## 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
  2917
    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
  2918
    ## 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
  2919
    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
  2920
    ## 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
  2921
    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
  2922
                   '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
  2923
                   [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
  2924
                   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
  2925
    ## 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
  2926
    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
  2927
                   '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
  2928
                   [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
  2929
                   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
  2930
    ## 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
  2931
    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
  2932
                   '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
  2933
                   [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
  2934
                   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
  2935
    ## 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
  2936
    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
  2937
                   '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
  2938
                   [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
  2939
    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
  2940
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
  2941
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
  2942
    ## 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
  2943
    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
  2944
    ## 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
  2945
    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
  2946
    ## 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
  2947
    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
  2948
                   '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
  2949
                   [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
  2950
                   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
  2951
    ## 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
  2952
    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
  2953
                   '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
  2954
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2956
    ## 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
  2957
    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
  2958
                   '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
  2959
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2961
    ## 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
  2962
    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
  2963
                   '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
  2964
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  2966
    ## 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
  2967
    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
  2968
                   '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
  2969
                   [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
  2970
                   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
  2971
    ## 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
  2972
    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
  2973
                   '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
  2974
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2975
                   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
  2976
    ## 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
  2977
    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
  2978
                   '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
  2979
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  2980
    ## 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
  2981
    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
  2982
                   '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
  2983
                   [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
  2984
    ## 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
  2985
    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
  2986
                   '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
  2987
                   [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
  2988
    ## 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
  2989
    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
  2990
                   '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
  2991
                   [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
  2992
    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
  2993
0fb01581be59 Modular bindings: application module must include 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_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
  2995
    ## 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
  2996
    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
  2997
    ## 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
  2998
    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
  2999
    ## 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
  3000
    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
  3001
                   '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
  3002
                   [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
  3003
                   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
  3004
    ## 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
  3005
    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
  3006
                   '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
  3007
                   [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
  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-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
  3010
    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
  3011
                   '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
  3012
                   [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
  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
    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
  3015
0fb01581be59 Modular bindings: application module must include 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
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
  3017
    ## 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
  3018
    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
  3019
    ## 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
  3020
    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
  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
                   [], 
0fb01581be59 Modular bindings: application module must include 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_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
  3024
    ## 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
  3025
    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
  3026
                   '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
  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
    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
  3029
0fb01581be59 Modular bindings: application module must include 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
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
  3031
    ## 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
  3032
    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
  3033
    ## 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
  3034
    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
  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::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
  3037
                   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
  3038
    ## 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
  3039
    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
  3040
                   '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
  3041
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3043
    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
  3044
0fb01581be59 Modular bindings: application module must include 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
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
  3046
    ## 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
  3047
    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
  3048
    ## 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
  3049
    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
  3050
    ## 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
  3051
    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
  3052
                   '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
  3053
                   [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
  3054
                   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
  3055
    ## 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
  3056
    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
  3057
                   '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
  3058
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3060
    ## 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
  3061
    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
  3062
                   '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
  3063
                   [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
  3064
                   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
  3065
    ## 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
  3066
    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
  3067
                   '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
  3068
                   [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
  3069
    ## 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
  3070
    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
  3071
                   '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
  3072
                   [])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  3073
    ## 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
  3074
    cls.add_method('Replace', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  3075
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  3076
                   [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
  3077
    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
  3078
0fb01581be59 Modular bindings: application module must include 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
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
  3080
    ## 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
  3081
    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
  3082
    ## 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
  3083
    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
  3084
    ## 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
  3085
    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
  3086
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [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
  3087
    cls.add_instance_attribute('data', 'uint8_t [ 20 ]', 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
  3088
    ## 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
  3089
    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
  3090
    ## 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
  3091
    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
  3092
    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
  3093
0fb01581be59 Modular bindings: application module must include 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
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
  3095
    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
  3096
    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
  3097
    ## 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
  3098
    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
  3099
    ## 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
  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
    ## 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
  3102
    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
  3103
                   '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
  3104
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3106
    ## 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
  3107
    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
  3108
                   '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
  3109
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3111
    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
  3112
                   '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
  3113
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3115
    ## 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
  3116
    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
  3117
                   '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
  3118
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3120
    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
  3121
                   '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
  3122
                   [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
  3123
    ## 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
  3124
    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
  3125
                   '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
  3126
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  3127
                   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
  3128
    ## 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
  3129
    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
  3130
                   '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
  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
    ## 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
  3133
    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
  3134
                   '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
  3135
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3137
    ## 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
  3138
    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
  3139
                   '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
  3140
                   [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
  3141
    ## 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
  3142
    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
  3143
                   '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
  3144
                   [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
  3145
    ## 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
  3146
    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
  3147
                   '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
  3148
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3150
    ## 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
  3151
    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
  3152
                   '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
  3153
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3155
    ## 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
  3156
    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
  3157
                   '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
  3158
                   [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
  3159
    ## 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
  3160
    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
  3161
                   '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
  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'): 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
  3164
    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
  3165
                   '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
  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
    ## 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
  3168
    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
  3169
                   '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
  3170
                   [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
  3171
                   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
  3172
    ## 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
  3173
    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
  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('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
  3176
                   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
  3177
    ## 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
  3178
    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
  3179
                   '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
  3180
                   [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
  3181
    ## 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
  3182
    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
  3183
                   '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
  3184
                   [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
  3185
    ## 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
  3186
    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
  3187
                   '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
  3188
                   [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
  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'): 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
  3191
    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
  3192
                   '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
  3193
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3195
    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
  3196
0fb01581be59 Modular bindings: application module must include 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
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
  3198
    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
  3199
    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
  3200
    ## 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
  3201
    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
  3202
    ## 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
  3203
    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
  3204
    ## 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
  3205
    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
  3206
                   '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
  3207
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3209
    ## 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
  3210
    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
  3211
                   '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
  3212
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3214
    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
  3215
                   '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
  3216
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3218
    ## 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
  3219
    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
  3220
                   '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
  3221
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3223
    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
  3224
                   '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
  3225
                   [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
  3226
    ## 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
  3227
    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
  3228
                   '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
  3229
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3231
    ## 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
  3232
    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
  3233
                   '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
  3234
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3236
    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
  3237
                   '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
  3238
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3240
    ## 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
  3241
    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
  3242
                   '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
  3243
                   [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
  3244
    ## 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
  3245
    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
  3246
                   '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
  3247
                   [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
  3248
    ## 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
  3249
    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
  3250
                   '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
  3251
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3253
    ## 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
  3254
    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
  3255
                   '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
  3256
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3258
    ## 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
  3259
    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
  3260
                   '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
  3261
                   [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
  3262
    ## 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
  3263
    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
  3264
                   '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
  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'): 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
  3267
    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
  3268
                   '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
  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
    ## 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
  3271
    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
  3272
                   '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
  3273
                   [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
  3274
                   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
  3275
    ## 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
  3276
    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
  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('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
  3279
                   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
  3280
    ## 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
  3281
    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
  3282
                   '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
  3283
                   [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
  3284
    ## 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
  3285
    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
  3286
                   '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
  3287
                   [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
  3288
    ## 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
  3289
    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
  3290
                   '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
  3291
                   [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
  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'): 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
  3294
    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
  3295
                   '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
  3296
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3298
    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
  3299
0fb01581be59 Modular bindings: application module must include 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
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
  3301
    ## 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
  3302
    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
  3303
    ## 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
  3304
    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
  3305
                   '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
  3306
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3308
    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
  3309
                   '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
  3310
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## pcap-file.h (module 'network'): static bool ns3::PcapFile::Diff(std::string const & f1, std::string const & f2, uint32_t & sec, uint32_t & usec, uint32_t snapLen=ns3::PcapFile::SNAPLEN_DEFAULT) [member function]
0fb01581be59 Modular bindings: application module must include 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('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
  3313
                   '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
  3314
                   [param('std::string const &', 'f1'), param('std::string const &', 'f2'), param('uint32_t &', 'sec'), param('uint32_t &', 'usec'), param('uint32_t', 'snapLen', default_value='ns3::PcapFile::SNAPLEN_DEFAULT')], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3316
    ## 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
  3317
    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
  3318
                   '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
  3319
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3321
    ## 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
  3322
    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
  3323
                   '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
  3324
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  3326
    ## 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
  3327
    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
  3328
                   '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
  3329
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3331
    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
  3332
                   '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
  3333
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3335
    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
  3336
                   '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
  3337
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3339
    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
  3340
                   '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
  3341
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3343
    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
  3344
                   '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
  3345
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3347
    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
  3348
                   '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
  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
    ## 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
  3351
    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
  3352
                   '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
  3353
                   [])
0fb01581be59 Modular bindings: application module must include 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'): 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
  3355
    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
  3356
                   '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
  3357
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3359
    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
  3360
                   '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
  3361
                   [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
  3362
    ## 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
  3363
    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
  3364
                   '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
  3365
                   [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
  3366
    ## 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
  3367
    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
  3368
                   '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
  3369
                   [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
  3370
    ## 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
  3371
    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
  3372
                   '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
  3373
                   [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
  3374
    ## 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
  3375
    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
  3376
                   '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
  3377
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Ptr< ns3::Packet const >', 'p')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3378
    ## pcap-file.h (module 'network'): void ns3::PcapFile::Write(uint32_t tsSec, uint32_t tsUsec, ns3::Header & 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
  3379
    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
  3380
                   '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
  3381
                   [param('uint32_t', 'tsSec'), param('uint32_t', 'tsUsec'), param('ns3::Header &', 'header'), 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
  3382
    ## 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
  3383
    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
  3384
    ## 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
  3385
    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
  3386
    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
  3387
0fb01581be59 Modular bindings: application module must include 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
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
  3389
    ## 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
  3390
    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
  3391
    ## 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
  3392
    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
  3393
    ## trace-helper.h (module 'network'): ns3::Ptr<ns3::PcapFileWrapper> ns3::PcapHelper::CreateFile(std::string filename, std::_Ios_Openmode filemode, uint32_t dataLinkType, uint32_t snapLen=65535, int32_t tzCorrection=0) [member function]
0fb01581be59 Modular bindings: application module must include 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
    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
  3395
                   'ns3::Ptr< 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
  3396
                   [param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode'), param('uint32_t', 'dataLinkType'), param('uint32_t', 'snapLen', default_value='65535'), param('int32_t', 'tzCorrection', default_value='0')])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  3398
    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
  3399
                   '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
  3400
                   [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
  3401
    ## 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
  3402
    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
  3403
                   '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
  3404
                   [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
  3405
    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
  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
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
  3408
    ## 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
  3409
    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
  3410
    ## 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
  3411
    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
  3412
    ## 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
  3413
    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
  3414
                   '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
  3415
                   [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
  3416
    ## 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
  3417
    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
  3418
                   '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
  3419
                   [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
  3420
    ## 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
  3421
    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
  3422
                   '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
  3423
                   [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
  3424
    ## 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
  3425
    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
  3426
                   '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
  3427
                   [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
  3428
    ## 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
  3429
    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
  3430
                   '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
  3431
                   [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
  3432
    ## 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
  3433
    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
  3434
                   '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
  3435
                   [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
  3436
    ## 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
  3437
    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
  3438
                   '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
  3439
                   [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
  3440
                   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
  3441
    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
  3442
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
  3443
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
  3444
    ## 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
  3445
    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
  3446
    ## 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
  3447
    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
  3448
    ## 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
  3449
    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
  3450
                   '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
  3451
                   [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
  3452
    ## 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
  3453
    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
  3454
                   '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
  3455
                   [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
  3456
    ## 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
  3457
    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
  3458
                   '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
  3459
                   [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
  3460
    ## 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
  3461
    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
  3462
                   '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
  3463
                   [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
  3464
    ## 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
  3465
    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
  3466
                   '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
  3467
                   [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
  3468
    ## 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
  3469
    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
  3470
                   '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
  3471
                   [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
  3472
    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
  3473
10132
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3474
def register_Ns3RadvdHelper_methods(root_module, cls):
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3475
    ## 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
  3476
    cls.add_constructor([param('ns3::RadvdHelper const &', 'arg0')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3477
    ## radvd-helper.h (module 'applications'): ns3::RadvdHelper::RadvdHelper() [constructor]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3478
    cls.add_constructor([])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3479
    ## 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
  3480
    cls.add_method('AddAnnouncedPrefix', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3481
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3482
                   [param('uint32_t', 'interface'), param('ns3::Ipv6Address', 'prefix'), param('uint32_t', 'prefixLength')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3483
    ## radvd-helper.h (module 'applications'): void ns3::RadvdHelper::ClearPrefixes() [member function]
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3484
    cls.add_method('ClearPrefixes', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3485
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3486
                   [])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3487
    ## 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
  3488
    cls.add_method('DisableDefaultRouterForInterface', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3489
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3490
                   [param('uint32_t', 'interface')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3491
    ## 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
  3492
    cls.add_method('EnableDefaultRouterForInterface', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3493
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3494
                   [param('uint32_t', 'interface')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3495
    ## 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
  3496
    cls.add_method('GetRadvdInterface', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3497
                   'ns3::Ptr< ns3::RadvdInterface >', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3498
                   [param('uint32_t', 'interface')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3499
    ## 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
  3500
    cls.add_method('Install', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3501
                   'ns3::ApplicationContainer', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3502
                   [param('ns3::Ptr< ns3::Node >', 'node')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3503
    ## 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
  3504
    cls.add_method('SetAttribute', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3505
                   'void', 
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3506
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3507
    return
c11b8c143664 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 10123
diff changeset
  3508
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3509
def register_Ns3SimpleNetDeviceHelper_methods(root_module, cls):
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3510
    ## 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
  3511
    cls.add_constructor([param('ns3::SimpleNetDeviceHelper const &', 'arg0')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3512
    ## 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
  3513
    cls.add_constructor([])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3514
    ## 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
  3515
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3516
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3517
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3518
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3519
    ## 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
  3520
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3521
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3522
                   [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
  3523
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3524
    ## 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
  3525
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3526
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3527
                   [param('ns3::NodeContainer const &', 'c')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3528
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3529
    ## 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
  3530
    cls.add_method('Install', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3531
                   'ns3::NetDeviceContainer', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3532
                   [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
  3533
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3534
    ## 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
  3535
    cls.add_method('SetChannel', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3536
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3537
                   [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
  3538
    ## 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
  3539
    cls.add_method('SetChannelAttribute', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3540
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3541
                   [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3542
    ## 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
  3543
    cls.add_method('SetDeviceAttribute', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3544
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3545
                   [param('std::string', 'n1'), param('ns3::AttributeValue const &', 'v1')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3546
    ## 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
  3547
    cls.add_method('SetNetDevicePointToPointMode', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3548
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3549
                   [param('bool', 'pointToPointMode')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3550
    ## 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
  3551
    cls.add_method('SetQueue', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3552
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3553
                   [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
  3554
    return
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  3555
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
  3556
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
  3557
    ## 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
  3558
    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
  3559
    ## 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
  3560
    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
  3561
    ## 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
  3562
    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
  3563
                   '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
  3564
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3565
                   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
  3566
    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
  3567
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3568
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
  3569
    ## 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
  3570
    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
  3571
    ## 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
  3572
    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
  3573
                   '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
  3574
                   [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
  3575
                   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
  3576
    ## 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
  3577
    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
  3578
                   '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
  3579
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3580
                   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
  3581
    ## 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
  3582
    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
  3583
                   '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
  3584
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3585
                   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
  3586
    ## 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
  3587
    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
  3588
                   '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
  3589
                   [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
  3590
                   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
  3591
    ## 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
  3592
    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
  3593
                   '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
  3594
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3595
                   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
  3596
    ## 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
  3597
    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
  3598
                   '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
  3599
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3600
                   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
  3601
    ## 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
  3602
    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
  3603
                   '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
  3604
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3605
                   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
  3606
    ## 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
  3607
    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
  3608
                   '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
  3609
                   [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
  3610
                   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
  3611
    ## 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
  3612
    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
  3613
                   '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
  3614
                   [], 
355d6562399e Modular 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
                   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
  3616
    ## 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
  3617
    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
  3618
                   '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
  3619
                   [], 
355d6562399e Modular 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
                   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
  3621
    ## 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
  3622
    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
  3623
                   '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
  3624
                   [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
  3625
                   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
  3626
    ## 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
  3627
    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
  3628
                   '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
  3629
                   [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
  3630
                   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
  3631
    ## 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
  3632
    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
  3633
                   '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
  3634
                   [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
  3635
                   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
  3636
    ## 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
  3637
    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
  3638
                   '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
  3639
                   [], 
355d6562399e Modular 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
                   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
  3641
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
355d6562399e Modular 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
    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
  3643
                   '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
  3644
                   [param('ns3::Time const &', '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
  3645
                   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
  3646
    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
  3647
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3648
def register_Ns3StatisticalSummary_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3649
    ## data-calculator.h (module 'stats'): ns3::StatisticalSummary::StatisticalSummary() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3650
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3651
    ## 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
  3652
    cls.add_constructor([param('ns3::StatisticalSummary const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3653
    ## data-calculator.h (module 'stats'): long int ns3::StatisticalSummary::getCount() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3654
    cls.add_method('getCount', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3655
                   'long int', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3656
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3657
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3658
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMax() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3659
    cls.add_method('getMax', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3660
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3661
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3662
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3663
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMean() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3664
    cls.add_method('getMean', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3665
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3666
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3667
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3668
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getMin() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3669
    cls.add_method('getMin', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3670
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3671
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3672
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3673
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getSqrSum() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3674
    cls.add_method('getSqrSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3675
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3676
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3677
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3678
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getStddev() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3679
    cls.add_method('getStddev', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3680
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3681
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3682
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3683
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getSum() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3684
    cls.add_method('getSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3685
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3686
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3687
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3688
    ## data-calculator.h (module 'stats'): double ns3::StatisticalSummary::getVariance() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3689
    cls.add_method('getVariance', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3690
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3691
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3692
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3693
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3694
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3695
def register_Ns3SystemWallClockMs_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3696
    ## 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
  3697
    cls.add_constructor([param('ns3::SystemWallClockMs const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3698
    ## 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
  3699
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3700
    ## 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
  3701
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3702
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3703
                   [])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3704
    ## 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
  3705
    cls.add_method('GetElapsedReal', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3706
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3707
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3708
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3709
    ## 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
  3710
    cls.add_method('GetElapsedSystem', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3711
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3712
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3713
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3714
    ## 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
  3715
    cls.add_method('GetElapsedUser', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3716
                   'int64_t', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3717
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3718
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3719
    ## 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
  3720
    cls.add_method('Start', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3721
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3722
                   [])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3723
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3724
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
  3725
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
  3726
    ## 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
  3727
    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
  3728
    ## 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
  3729
    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
  3730
    ## 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
  3731
    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
  3732
                   '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
  3733
                   [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
  3734
                   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
  3735
    ## 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
  3736
    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
  3737
                   '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
  3738
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3739
                   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
  3740
    ## 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
  3741
    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
  3742
                   '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
  3743
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3744
                   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
  3745
    ## 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
  3746
    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
  3747
                   '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
  3748
                   [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
  3749
                   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
  3750
    ## 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
  3751
    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
  3752
                   '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
  3753
                   [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
  3754
                   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
  3755
    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
  3756
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3757
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
  3758
    ## 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
  3759
    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
  3760
    ## 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
  3761
    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
  3762
    ## 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
  3763
    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
  3764
                   '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
  3765
                   [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
  3766
    ## 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
  3767
    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
  3768
                   '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
  3769
                   [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
  3770
    ## 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
  3771
    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
  3772
                   '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
  3773
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3774
    ## 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
  3775
    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
  3776
                   '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
  3777
                   [])
355d6562399e Modular 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
    ## 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
  3779
    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
  3780
                   '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
  3781
                   [])
355d6562399e Modular 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
    ## 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
  3783
    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
  3784
                   '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
  3785
                   [])
355d6562399e Modular 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
    ## 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
  3787
    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
  3788
                   '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
  3789
                   [])
355d6562399e Modular 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
    ## 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
  3791
    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
  3792
                   '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
  3793
                   [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
  3794
    ## 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
  3795
    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
  3796
                   '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
  3797
                   [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
  3798
    ## 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
  3799
    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
  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('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
  3802
    ## 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
  3803
    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
  3804
                   '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
  3805
                   [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
  3806
    ## 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
  3807
    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
  3808
                   '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
  3809
                   [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
  3810
    ## 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
  3811
    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
  3812
                   '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
  3813
                   [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
  3814
    ## 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
  3815
    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
  3816
                   '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
  3817
                   [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
  3818
    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
  3819
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3820
def register_Ns3TimeWithUnit_methods(root_module, cls):
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3821
    cls.add_output_stream_operator()
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3822
    ## 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
  3823
    cls.add_constructor([param('ns3::TimeWithUnit const &', 'arg0')])
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3824
    ## 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
  3825
    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
  3826
    return
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  3827
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
  3828
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
  3829
    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
  3830
    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
  3831
    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
  3832
    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
  3833
    ## 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
  3834
    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
  3835
    ## 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
  3836
    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
  3837
    ## 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
  3838
    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
  3839
    ## 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
  3840
    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
  3841
                   '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
  3842
                   [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
  3843
    ## 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
  3844
    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
  3845
                   '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
  3846
                   [param('std::string', 'name'), param('std::string', 'help'), param('uint32_t', 'flags'), param('ns3::AttributeValue const &', 'initialValue'), param('ns3::Ptr< ns3::AttributeAccessor const >', 'accessor'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3847
    ## 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
  3848
    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
  3849
                   '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
  3850
                   [param('std::string', 'name'), param('std::string', 'help'), param('ns3::Ptr< ns3::TraceSourceAccessor const >', 'accessor')])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3851
    ## 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
  3852
    cls.add_method('GetAttribute', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3853
                   '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
  3854
                   [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
  3855
                   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
  3856
    ## 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
  3857
    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
  3858
                   '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
  3859
                   [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
  3860
                   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
  3861
    ## 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
  3862
    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
  3863
                   '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
  3864
                   [], 
355d6562399e Modular 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
                   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
  3866
    ## 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
  3867
    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
  3868
                   '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
  3869
                   [], 
355d6562399e Modular 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
                   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
  3871
    ## 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
  3872
    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
  3873
                   '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
  3874
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3875
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3876
    ## 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
  3877
    cls.add_method('GetHash', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3878
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3879
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3880
                   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
  3881
    ## 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
  3882
    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
  3883
                   '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
  3884
                   [], 
355d6562399e Modular 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
                   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
  3886
    ## 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
  3887
    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
  3888
                   '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
  3889
                   [], 
355d6562399e Modular 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
                   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
  3891
    ## 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
  3892
    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
  3893
                   '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
  3894
                   [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
  3895
                   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
  3896
    ## 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
  3897
    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
  3898
                   '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
  3899
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3900
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3901
    ## 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
  3902
    cls.add_method('GetTraceSource', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3903
                   '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
  3904
                   [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
  3905
                   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
  3906
    ## 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
  3907
    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
  3908
                   '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
  3909
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3910
                   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
  3911
    ## 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
  3912
    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
  3913
                   '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
  3914
                   [], 
355d6562399e Modular 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
                   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
  3916
    ## 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
  3917
    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
  3918
                   '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
  3919
                   [], 
355d6562399e Modular 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
                   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
  3921
    ## 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
  3922
    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
  3923
                   '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
  3924
                   [], 
355d6562399e Modular 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
                   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
  3926
    ## 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
  3927
    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
  3928
                   '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
  3929
                   [])
355d6562399e Modular 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
    ## 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
  3931
    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
  3932
                   '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
  3933
                   [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
  3934
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3935
    ## 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
  3936
    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
  3937
                   'bool', 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  3938
                   [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
  3939
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3940
    ## 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
  3941
    cls.add_method('LookupByHash', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3942
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3943
                   [param('uint32_t', 'hash')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3944
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3945
    ## 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
  3946
    cls.add_method('LookupByHashFailSafe', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3947
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3948
                   [param('uint32_t', 'hash'), param('ns3::TypeId *', 'tid')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3949
                   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
  3950
    ## 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
  3951
    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
  3952
                   '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
  3953
                   [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
  3954
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3955
    ## 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
  3956
    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
  3957
                   '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
  3958
                   [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
  3959
                   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
  3960
    ## 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
  3961
    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
  3962
                   '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
  3963
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3964
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3965
    ## 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
  3966
    cls.add_method('SetAttributeInitialValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3967
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3968
                   [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
  3969
    ## 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
  3970
    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
  3971
                   '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
  3972
                   [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
  3973
    ## 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
  3974
    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
  3975
                   '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
  3976
                   [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
  3977
    ## 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
  3978
    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
  3979
                   '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
  3980
                   [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
  3981
    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
  3982
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3983
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3984
    ## 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
  3985
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3986
    ## 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
  3987
    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
  3988
    ## 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
  3989
    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
  3990
    ## 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
  3991
    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
  3992
    ## 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
  3993
    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
  3994
    ## 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
  3995
    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
  3996
    ## 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
  3997
    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
  3998
    ## 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
  3999
    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
  4000
    ## 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
  4001
    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
  4002
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4003
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4004
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4005
    ## 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
  4006
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4007
    ## 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
  4008
    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
  4009
    ## 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
  4010
    cls.add_instance_attribute('accessor', 'ns3::Ptr< ns3::TraceSourceAccessor const >', is_const=False)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4011
    ## 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
  4012
    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
  4013
    ## 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
  4014
    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
  4015
    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
  4016
355d6562399e Modular 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
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
  4018
    ## 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
  4019
    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
  4020
    ## 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
  4021
    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
  4022
    ## 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
  4023
    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
  4024
    ## 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
  4025
    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
  4026
    ## 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
  4027
    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
  4028
    ## 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
  4029
    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
  4030
                   '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
  4031
                   [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
  4032
    ## 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
  4033
    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
  4034
                   '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
  4035
                   [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
  4036
    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
  4037
355d6562399e Modular 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
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
  4039
    ## 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
  4040
    cls.add_constructor([param('ns3::UdpEchoClientHelper const &', 'arg0')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4041
    ## 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
  4042
    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
  4043
    ## 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
  4044
    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
  4045
    ## 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
  4046
    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
  4047
    ## 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
  4048
    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
  4049
                   '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
  4050
                   [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
  4051
                   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
  4052
    ## 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
  4053
    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
  4054
                   '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
  4055
                   [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
  4056
                   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
  4057
    ## 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
  4058
    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
  4059
                   '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
  4060
                   [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
  4061
                   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
  4062
    ## 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
  4063
    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
  4064
                   '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
  4065
                   [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
  4066
    ## 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
  4067
    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
  4068
                   '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
  4069
                   [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
  4070
    ## 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
  4071
    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
  4072
                   '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
  4073
                   [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
  4074
    ## 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
  4075
    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
  4076
                   '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
  4077
                   [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
  4078
    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
  4079
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4080
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
  4081
    ## 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
  4082
    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
  4083
    ## 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
  4084
    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
  4085
    ## 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
  4086
    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
  4087
                   '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
  4088
                   [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
  4089
                   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
  4090
    ## 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
  4091
    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
  4092
                   '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
  4093
                   [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
  4094
                   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
  4095
    ## 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
  4096
    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
  4097
                   '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
  4098
                   [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
  4099
                   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
  4100
    ## 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
  4101
    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
  4102
                   '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
  4103
                   [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
  4104
    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
  4105
355d6562399e Modular 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
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
  4107
    ## 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
  4108
    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
  4109
    ## 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
  4110
    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
  4111
    ## 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
  4112
    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
  4113
    ## 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
  4114
    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
  4115
                   '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
  4116
                   [])
355d6562399e Modular 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-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
  4118
    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
  4119
                   '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
  4120
                   [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
  4121
    ## 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
  4122
    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
  4123
                   '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
  4124
                   [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
  4125
    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
  4126
355d6562399e Modular 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
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
  4128
    ## 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
  4129
    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
  4130
    ## 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
  4131
    cls.add_constructor([])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  4132
    ## 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
  4133
    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
  4134
    ## 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
  4135
    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
  4136
    ## 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
  4137
    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
  4138
    ## 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
  4139
    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
  4140
                   '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
  4141
                   [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
  4142
    ## 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
  4143
    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
  4144
                   '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
  4145
                   [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
  4146
    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
  4147
355d6562399e Modular 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
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
  4149
    ## 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
  4150
    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
  4151
    ## 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
  4152
    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
  4153
    ## 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
  4154
    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
  4155
                   '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
  4156
                   [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
  4157
                   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
  4158
    ## 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
  4159
    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
  4160
                   '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
  4161
                   [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
  4162
                   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
  4163
    ## 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
  4164
    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
  4165
                   '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
  4166
                   [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
  4167
                   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
  4168
    ## 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
  4169
    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
  4170
                   '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
  4171
                   [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
  4172
    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
  4173
355d6562399e Modular 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
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
  4175
    ## 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
  4176
    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
  4177
    ## 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
  4178
    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
  4179
    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
  4180
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4181
def register_Ns3Int64x64_t_methods(root_module, cls):
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10903
diff changeset
  4182
    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
  4183
    cls.add_binary_comparison_operator('!=')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4184
    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
  4185
    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
  4186
    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
  4187
    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
  4188
    cls.add_unary_numeric_operator('-')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4189
    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
  4190
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4191
    cls.add_binary_comparison_operator('>')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  4192
    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
  4193
    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
  4194
    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
  4195
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4196
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4197
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4198
    ## 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
  4199
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4200
    ## 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
  4201
    cls.add_constructor([param('double', 'v')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  4202
    ## 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
  4203
    cls.add_constructor([param('long double', 'v')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4204
    ## 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
  4205
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4206
    ## 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
  4207
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4208
    ## 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
  4209
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4210
    ## 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
  4211
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4212
    ## 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
  4213
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4214
    ## 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
  4215
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4216
    ## 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
  4217
    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
  4218
    ## 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
  4219
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4220
    ## 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
  4221
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4222
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4223
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4224
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4225
    ## 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
  4226
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4227
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4228
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4229
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4230
    ## 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
  4231
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4232
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4233
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4234
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4235
    ## 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
  4236
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4237
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4238
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4239
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4240
    ## 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
  4241
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4242
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4243
                   [param('ns3::int64x64_t const &', 'o')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10567
diff changeset
  4244
    ## 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
  4245
    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
  4246
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  4247
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
  4248
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
  4249
    ## 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
  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
    ## 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
  4252
    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
  4253
    ## 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
  4254
    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
  4255
                   '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
  4256
                   [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
  4257
                   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
  4258
    ## 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
  4259
    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
  4260
                   '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
  4261
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4262
                   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
  4263
    ## 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
  4264
    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
  4265
                   '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
  4266
                   [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
  4267
                   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
  4268
    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
  4269
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4270
def register_Ns3DeviceNameTag_methods(root_module, cls):
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4271
    ## 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
  4272
    cls.add_constructor([param('ns3::DeviceNameTag const &', 'arg0')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4273
    ## packet-socket.h (module 'network'): ns3::DeviceNameTag::DeviceNameTag() [constructor]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4274
    cls.add_constructor([])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4275
    ## 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
  4276
    cls.add_method('Deserialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4277
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4278
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4279
                   is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4280
    ## 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
  4281
    cls.add_method('GetDeviceName', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4282
                   'std::string', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4283
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4284
                   is_const=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4285
    ## 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
  4286
    cls.add_method('GetInstanceTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4287
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4288
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4289
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4290
    ## 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
  4291
    cls.add_method('GetSerializedSize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4292
                   'uint32_t', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4293
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4294
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4295
    ## 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
  4296
    cls.add_method('GetTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4297
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4298
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4299
                   is_static=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4300
    ## 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
  4301
    cls.add_method('Print', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4302
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4303
                   [param('std::ostream &', 'os')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4304
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4305
    ## 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
  4306
    cls.add_method('Serialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4307
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4308
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4309
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4310
    ## 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
  4311
    cls.add_method('SetDeviceName', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4312
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4313
                   [param('std::string', 'n')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4314
    return
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4315
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
  4316
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
  4317
    ## 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
  4318
    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
  4319
    ## 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
  4320
    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
  4321
    ## 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
  4322
    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
  4323
    ## 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
  4324
    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
  4325
                   '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
  4326
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4327
                   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
  4328
    ## 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
  4329
    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
  4330
                   '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
  4331
                   [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
  4332
                   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
  4333
    ## 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
  4334
    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
  4335
                   '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
  4336
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4337
                   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
  4338
    ## 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
  4339
    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
  4340
                   '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
  4341
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4342
                   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
  4343
    ## 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
  4344
    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
  4345
                   '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
  4346
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4347
                   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
  4348
    ## 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
  4349
    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
  4350
                   '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
  4351
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4352
                   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
  4353
    ## 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
  4354
    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
  4355
                   '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
  4356
                   [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
  4357
                   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
  4358
    ## 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
  4359
    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
  4360
                   '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
  4361
                   [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
  4362
                   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
  4363
    ## 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
  4364
    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
  4365
                   '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
  4366
                   [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
  4367
    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
  4368
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
  4369
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
  4370
    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
  4371
    ## 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
  4372
    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
  4373
    ## 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
  4374
    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
  4375
    ## 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
  4376
    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
  4377
                   '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
  4378
                   [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
  4379
                   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
  4380
    ## 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
  4381
    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
  4382
                   '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
  4383
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4384
                   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
  4385
    ## 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
  4386
    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
  4387
                   '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
  4388
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4389
                   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
  4390
    ## 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
  4391
    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
  4392
                   '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
  4393
                   [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
  4394
                   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
  4395
    ## 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
  4396
    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
  4397
                   '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
  4398
                   [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
  4399
                   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
  4400
    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
  4401
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
  4402
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
  4403
    ## 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
  4404
    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
  4405
    ## 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
  4406
    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
  4407
    ## 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
  4408
    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
  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
                   [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
  4411
                   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
  4412
    ## 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
  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
    ## 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
  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
    ## 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
  4423
    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
  4424
                   '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
  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
    ## 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
  4427
    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
  4428
                   '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
  4429
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4431
    ## 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
  4432
    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
  4433
                   '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
  4434
                   [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
  4435
                   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
  4436
    ## 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
  4437
    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
  4438
                   '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
  4439
                   [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
  4440
                   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
  4441
    ## 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
  4442
    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
  4443
                   '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
  4444
                   [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
  4445
    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
  4446
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
  4447
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
  4448
    ## 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
  4449
    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
  4450
    ## 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
  4451
    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
  4452
                   '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
  4453
                   [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
  4454
    ## 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
  4455
    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
  4456
                   '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
  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
    ## 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
  4459
    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
  4460
                   '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
  4461
                   [], 
355d6562399e Modular 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
                   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
  4463
    ## 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
  4464
    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
  4465
                   '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
  4466
                   [], 
355d6562399e Modular 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
                   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
  4468
    ## 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
  4469
    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
  4470
                   '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
  4471
                   [], 
355d6562399e Modular 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
                   is_static=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4473
    ## object.h (module 'core'): void ns3::Object::Initialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4474
    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
  4475
                   '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
  4476
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4477
    ## 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
  4478
    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
  4479
                        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
  4480
    ## 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
  4481
    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
  4482
                   '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
  4483
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4484
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4485
    ## object.h (module 'core'): void ns3::Object::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  4486
    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
  4487
                   '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
  4488
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4489
                   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
  4490
    ## 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
  4491
    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
  4492
                   '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
  4493
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4494
                   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
  4495
    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
  4496
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4497
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
  4498
    ## 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
  4499
    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
  4500
    ## 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
  4501
    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
  4502
    ## 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
  4503
    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
  4504
                   '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
  4505
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4506
                   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
  4507
    ## 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
  4508
    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
  4509
                   '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
  4510
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4511
    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
  4512
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
  4513
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
  4514
    ## 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
  4515
    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
  4516
    ## 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
  4517
    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
  4518
    ## 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
  4519
    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
  4520
                   '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
  4521
                   [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
  4522
    ## 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
  4523
    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
  4524
                   '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
  4525
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4526
                   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
  4527
    ## 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
  4528
    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
  4529
                   '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
  4530
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4531
                   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
  4532
    ## 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
  4533
    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
  4534
                   '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
  4535
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4536
                   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
  4537
    ## 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
  4538
    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
  4539
                   '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
  4540
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4541
                   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
  4542
    ## 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
  4543
    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
  4544
                   '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
  4545
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4546
                   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
  4547
    ## 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
  4548
    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
  4549
                   '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
  4550
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4551
                   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
  4552
    ## 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
  4553
    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
  4554
                   '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
  4555
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4556
                   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
  4557
    ## 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
  4558
    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
  4559
                   '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
  4560
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4561
                   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
  4562
    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
  4563
9294
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4564
def register_Ns3PacketSocketTag_methods(root_module, cls):
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4565
    ## 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
  4566
    cls.add_constructor([param('ns3::PacketSocketTag const &', 'arg0')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4567
    ## packet-socket.h (module 'network'): ns3::PacketSocketTag::PacketSocketTag() [constructor]
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4568
    cls.add_constructor([])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4569
    ## 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
  4570
    cls.add_method('Deserialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4571
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4572
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4573
                   is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4574
    ## 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
  4575
    cls.add_method('GetDestAddress', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4576
                   'ns3::Address', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4577
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4578
                   is_const=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4579
    ## 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
  4580
    cls.add_method('GetInstanceTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4581
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4582
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4583
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4584
    ## 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
  4585
    cls.add_method('GetPacketType', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4586
                   'ns3::NetDevice::PacketType', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4587
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4588
                   is_const=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4589
    ## 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
  4590
    cls.add_method('GetSerializedSize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4591
                   'uint32_t', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4592
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4593
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4594
    ## 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
  4595
    cls.add_method('GetTypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4596
                   'ns3::TypeId', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4597
                   [], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4598
                   is_static=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4599
    ## 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
  4600
    cls.add_method('Print', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4601
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4602
                   [param('std::ostream &', 'os')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4603
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4604
    ## 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
  4605
    cls.add_method('Serialize', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4606
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4607
                   [param('ns3::TagBuffer', 'i')], 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4608
                   is_const=True, is_virtual=True)
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4609
    ## 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
  4610
    cls.add_method('SetDestAddress', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4611
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4612
                   [param('ns3::Address', 'a')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4613
    ## 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
  4614
    cls.add_method('SetPacketType', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4615
                   'void', 
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4616
                   [param('ns3::NetDevice::PacketType', 't')])
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4617
    return
4cac575735b3 update python bindings
Tom Henderson <tomh@tomh.org>
parents: 9190
diff changeset
  4618
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
  4619
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
  4620
    ## 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
  4621
    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
  4622
                   '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
  4623
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4625
    ## 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
  4626
    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
  4627
    ## 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
  4628
    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
  4629
                   '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
  4630
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4632
    ## 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
  4633
    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
  4634
                   '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
  4635
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4637
    ## 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
  4638
    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
  4639
                   '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
  4640
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4641
    ## 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
  4642
    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
  4643
                   '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
  4644
                   [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
  4645
    ## 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
  4646
    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
  4647
                   '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
  4648
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4649
    ## 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
  4650
    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
  4651
                   '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
  4652
                   [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
  4653
    ## 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
  4654
    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
  4655
                   '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
  4656
                   [param('ns3::Time', 't'), param('ns3::Ptr< ns3::Packet const >', 'p')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4657
    ## pcap-file-wrapper.h (module 'network'): void ns3::PcapFileWrapper::Write(ns3::Time t, ns3::Header & 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
  4658
    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
  4659
                   '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
  4660
                   [param('ns3::Time', 't'), param('ns3::Header &', 'header'), 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
  4661
    ## 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
  4662
    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
  4663
                   '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
  4664
                   [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
  4665
    ## 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
  4666
    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
  4667
                   '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
  4668
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4669
    ## 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
  4670
    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
  4671
                   '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
  4672
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4673
    ## 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
  4674
    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
  4675
                   '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
  4676
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4677
    ## 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
  4678
    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
  4679
                   '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
  4680
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4681
    ## 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
  4682
    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
  4683
                   '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
  4684
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4685
    ## 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
  4686
    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
  4687
                   '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
  4688
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4689
    ## 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
  4690
    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
  4691
                   '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
  4692
                   [])
0fb01581be59 Modular bindings: application module must include 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
    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
  4694
0fb01581be59 Modular bindings: application module must include 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
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
  4696
    ## 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
  4697
    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
  4698
    ## 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
  4699
    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
  4700
    ## 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
  4701
    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
  4702
                   '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
  4703
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  4705
    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
  4706
                   '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
  4707
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  4709
    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
  4710
                   '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
  4711
                   [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
  4712
    ## 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
  4713
    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
  4714
                   '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
  4715
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4717
    ## 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
  4718
    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
  4719
                   '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
  4720
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4722
    ## 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
  4723
    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
  4724
                   '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
  4725
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4727
    ## 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
  4728
    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
  4729
                   '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
  4730
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  4731
                   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
  4732
    ## 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
  4733
    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
  4734
                   '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
  4735
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4737
    ## 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
  4738
    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
  4739
                   '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
  4740
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4742
    ## 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
  4743
    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
  4744
                   '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
  4745
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4747
    ## 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
  4748
    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
  4749
                   '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
  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
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4752
    ## 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
  4753
    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
  4754
                   '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
  4755
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4757
    ## 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
  4758
    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
  4759
                   '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
  4760
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  4762
    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
  4763
                   '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
  4764
                   [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
  4765
                   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
  4766
    ## 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
  4767
    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
  4768
                   '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
  4769
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4771
    ## 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
  4772
    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
  4773
                   '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
  4774
                   [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
  4775
                   is_pure_virtual=True, visibility='private', is_virtual=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4776
    ## 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
  4777
    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
  4778
                   '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
  4779
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4781
    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
  4782
0fb01581be59 Modular bindings: application module must include 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
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
  4784
    ## 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
  4785
    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
  4786
    ## 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
  4787
    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
  4788
    ## 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
  4789
    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
  4790
                   '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
  4791
                   [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
  4792
                   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
  4793
    ## 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
  4794
    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
  4795
                   '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
  4796
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4798
    ## 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
  4799
    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
  4800
                   '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
  4801
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4803
    ## 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
  4804
    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
  4805
                   '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
  4806
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4808
    ## 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
  4809
    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
  4810
                   '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
  4811
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4813
    ## 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
  4814
    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
  4815
                   '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
  4816
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4818
    ## 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
  4819
    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
  4820
                   '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
  4821
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4823
    ## 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
  4824
    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
  4825
                   '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
  4826
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4828
    ## 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
  4829
    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
  4830
                   '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
  4831
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4833
    ## 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
  4834
    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
  4835
                   '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
  4836
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4838
    ## 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
  4839
    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
  4840
                   '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
  4841
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  4843
    ## 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
  4844
    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
  4845
                   '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
  4846
                   [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
  4847
                   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
  4848
    ## 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
  4849
    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
  4850
                   '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
  4851
                   [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
  4852
                   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
  4853
    ## 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
  4854
    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
  4855
                   '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
  4856
                   [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
  4857
    ## 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
  4858
    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
  4859
                   '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
  4860
                   [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
  4861
    ## 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
  4862
    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
  4863
                   '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
  4864
                   [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
  4865
    ## 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
  4866
    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
  4867
                   '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
  4868
                   [param('uint8_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
  4869
    ## 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
  4870
    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
  4871
                   '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
  4872
                   [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
  4873
    ## 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
  4874
    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
  4875
                   '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
  4876
                   [param('uint64_t', 'tsft')])
0fb01581be59 Modular bindings: application module must include 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
    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
  4878
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4879
def register_Ns3RandomVariableStream_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4880
    ## 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
  4881
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4882
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4883
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4884
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4885
    ## 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
  4886
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4887
    ## 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
  4888
    cls.add_method('SetStream', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4889
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4890
                   [param('int64_t', 'stream')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4891
    ## 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
  4892
    cls.add_method('GetStream', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4893
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4894
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4895
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4896
    ## 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
  4897
    cls.add_method('SetAntithetic', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4898
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4899
                   [param('bool', 'isAntithetic')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4900
    ## 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
  4901
    cls.add_method('IsAntithetic', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4902
                   'bool', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4903
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4904
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4905
    ## 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
  4906
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4907
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4908
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4909
                   is_pure_virtual=True, is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4910
    ## 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
  4911
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4912
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4913
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4914
                   is_pure_virtual=True, is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4915
    ## 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
  4916
    cls.add_method('Peek', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4917
                   'ns3::RngStream *', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4918
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4919
                   is_const=True, visibility='protected')
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4920
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  4921
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4922
def register_Ns3RedQueue_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4923
    ## 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
  4924
    cls.add_constructor([param('ns3::RedQueue const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4925
    ## red-queue.h (module 'network'): ns3::RedQueue::RedQueue() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4926
    cls.add_constructor([])
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
  4927
    ## 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
  4928
    cls.add_method('AssignStreams', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
  4929
                   'int64_t', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
  4930
                   [param('int64_t', 'stream')])
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  4931
    ## 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
  4932
    cls.add_method('GetMode', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  4933
                   'ns3::Queue::QueueMode', 
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4934
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4935
    ## red-queue.h (module 'network'): uint32_t ns3::RedQueue::GetQueueSize() [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4936
    cls.add_method('GetQueueSize', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4937
                   'uint32_t', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4938
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4939
    ## 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
  4940
    cls.add_method('GetStats', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4941
                   'ns3::RedQueue::Stats', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4942
                   [])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4943
    ## 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
  4944
    cls.add_method('GetTypeId', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4945
                   'ns3::TypeId', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4946
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4947
                   is_static=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  4948
    ## 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
  4949
    cls.add_method('SetMode', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4950
                   'void', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  4951
                   [param('ns3::Queue::QueueMode', 'mode')])
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4952
    ## 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
  4953
    cls.add_method('SetQueueLimit', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4954
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4955
                   [param('uint32_t', 'lim')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4956
    ## 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
  4957
    cls.add_method('SetTh', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4958
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4959
                   [param('double', 'minTh'), param('double', 'maxTh')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4960
    ## 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
  4961
    cls.add_method('DoDequeue', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4962
                   'ns3::Ptr< ns3::Packet >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4963
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4964
                   visibility='private', is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4965
    ## 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
  4966
    cls.add_method('DoEnqueue', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4967
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4968
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4969
                   visibility='private', is_virtual=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4970
    ## 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
  4971
    cls.add_method('DoPeek', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4972
                   'ns3::Ptr< ns3::Packet const >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4973
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4974
                   is_const=True, visibility='private', is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4975
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4976
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4977
def register_Ns3RedQueueStats_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4978
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::Stats() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4979
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4980
    ## 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
  4981
    cls.add_constructor([param('ns3::RedQueue::Stats const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4982
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::forcedDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4983
    cls.add_instance_attribute('forcedDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4984
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::qLimDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4985
    cls.add_instance_attribute('qLimDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4986
    ## red-queue.h (module 'network'): ns3::RedQueue::Stats::unforcedDrop [variable]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4987
    cls.add_instance_attribute('unforcedDrop', 'uint32_t', is_const=False)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4988
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  4989
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
  4990
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
  4991
    ## 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
  4992
    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
  4993
    ## 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
  4994
    cls.add_constructor([])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  4995
    ## 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
  4996
    cls.add_method('Deserialize', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  4997
                   'uint32_t', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  4998
                   [param('ns3::Buffer::Iterator', 'start')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  4999
                   is_virtual=True)
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5000
    ## 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
  5001
    cls.add_method('GetInstanceTypeId', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5002
                   'ns3::TypeId', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5003
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5004
                   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
  5005
    ## 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
  5006
    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
  5007
                   '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
  5008
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5009
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5010
    ## 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
  5011
    cls.add_method('GetSerializedSize', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5012
                   'uint32_t', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5013
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5014
                   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
  5015
    ## 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
  5016
    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
  5017
                   '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
  5018
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5019
                   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
  5020
    ## 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
  5021
    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
  5022
                   '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
  5023
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5024
                   is_static=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5025
    ## 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
  5026
    cls.add_method('Print', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5027
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5028
                   [param('std::ostream &', 'os')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5029
                   is_const=True, is_virtual=True)
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5030
    ## 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
  5031
    cls.add_method('Serialize', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5032
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5033
                   [param('ns3::Buffer::Iterator', 'start')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5034
                   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
  5035
    ## 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
  5036
    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
  5037
                   '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
  5038
                   [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
  5039
    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
  5040
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5041
def register_Ns3SequentialRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5042
    ## 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
  5043
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5044
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5045
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5046
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5047
    ## 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
  5048
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5049
    ## 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
  5050
    cls.add_method('GetMin', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5051
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5052
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5053
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5054
    ## 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
  5055
    cls.add_method('GetMax', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5056
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5057
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5058
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5059
    ## 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
  5060
    cls.add_method('GetIncrement', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5061
                   'ns3::Ptr< ns3::RandomVariableStream >', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5062
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5063
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5064
    ## 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
  5065
    cls.add_method('GetConsecutive', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5066
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5067
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5068
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5069
    ## 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
  5070
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5071
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5072
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5073
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5074
    ## 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
  5075
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5076
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5077
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5078
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5079
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  5080
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
  5081
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
  5082
    ## 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
  5083
    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
  5084
    ## 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
  5085
    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
  5086
    ## 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
  5087
    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
  5088
                   '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
  5089
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5090
                   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
  5091
    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
  5092
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5093
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
  5094
    ## 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
  5095
    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
  5096
    ## 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
  5097
    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
  5098
    ## 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
  5099
    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
  5100
                   '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
  5101
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5102
                   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
  5103
    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
  5104
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5105
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
  5106
    ## 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
  5107
    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
  5108
    ## 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
  5109
    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
  5110
    ## 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
  5111
    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
  5112
                   '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
  5113
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5114
                   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
  5115
    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
  5116
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5117
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
  5118
    ## 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
  5119
    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
  5120
    ## 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
  5121
    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
  5122
    ## 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
  5123
    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
  5124
                   '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
  5125
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5126
                   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
  5127
    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
  5128
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5129
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
  5130
    ## 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
  5131
    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
  5132
    ## 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
  5133
    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
  5134
    ## 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
  5135
    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
  5136
                   '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
  5137
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5138
                   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
  5139
    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
  5140
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5141
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
  5142
    ## 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
  5143
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5144
    ## 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
  5145
    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
  5146
    ## 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
  5147
    cls.add_method('Cleanup', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5148
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5149
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5150
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5151
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  5152
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
  5153
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
  5154
    ## 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
  5155
    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
  5156
    ## 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
  5157
    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
  5158
    ## 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
  5159
    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
  5160
                   '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
  5161
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5162
                   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
  5163
    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
  5164
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5165
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
  5166
    ## 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
  5167
    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
  5168
    ## 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
  5169
    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
  5170
    ## 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
  5171
    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
  5172
                   '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
  5173
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5174
                   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
  5175
    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
  5176
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5177
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
  5178
    ## 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
  5179
    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
  5180
    ## 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
  5181
    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
  5182
    ## 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
  5183
    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
  5184
                   '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
  5185
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5186
                   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
  5187
    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
  5188
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5189
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
  5190
    ## 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
  5191
    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
  5192
    ## 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
  5193
    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
  5194
    ## 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
  5195
    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
  5196
                   '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
  5197
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5198
                   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
  5199
    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
  5200
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5201
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
  5202
    ## 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
  5203
    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
  5204
    ## 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
  5205
    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
  5206
    ## 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
  5207
    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
  5208
                   '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
  5209
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5210
                   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
  5211
    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
  5212
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5213
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
  5214
    ## 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
  5215
    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
  5216
    ## 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
  5217
    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
  5218
    ## 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
  5219
    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
  5220
                   '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
  5221
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5222
                   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
  5223
    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
  5224
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5225
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
  5226
    ## 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
  5227
    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
  5228
    ## 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
  5229
    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
  5230
    ## 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
  5231
    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
  5232
                   '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
  5233
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5234
                   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
  5235
    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
  5236
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
  5237
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
  5238
    ## 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
  5239
    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
  5240
    ## 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
  5241
    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
  5242
    ## 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
  5243
    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
  5244
                   '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
  5245
                   [], 
355d6562399e Modular 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
                   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
  5247
    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
  5248
355d6562399e Modular 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
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
  5250
    ## 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
  5251
    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
  5252
    ## 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
  5253
    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
  5254
    ## 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
  5255
    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
  5256
                   '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
  5257
                   [], 
355d6562399e Modular 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
                   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
  5259
    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
  5260
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5261
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
  5262
    ## 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
  5263
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5264
    ## 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
  5265
    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
  5266
    ## 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
  5267
    cls.add_method('Cleanup', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5268
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5269
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5270
                   is_static=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5271
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  5272
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
  5273
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
  5274
    ## 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
  5275
    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
  5276
    ## 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
  5277
    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
  5278
    ## 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
  5279
    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
  5280
                   '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
  5281
                   [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
  5282
                   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
  5283
    ## 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
  5284
    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
  5285
                   '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
  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_pure_virtual=True, is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5288
    ## 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
  5289
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5290
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5291
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  5292
                   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
  5293
    ## 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
  5294
    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
  5295
                   '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
  5296
                   [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
  5297
                   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
  5298
    ## 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
  5299
    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
  5300
                   '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
  5301
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5302
                   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
  5303
    ## 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
  5304
    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
  5305
                   '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
  5306
                   [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
  5307
                   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
  5308
    ## 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
  5309
    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
  5310
                   '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
  5311
                   [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
  5312
                   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
  5313
    ## 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
  5314
    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
  5315
                   '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
  5316
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5317
                   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
  5318
    ## 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
  5319
    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
  5320
                   '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
  5321
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5322
    ## 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
  5323
    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
  5324
                   '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
  5325
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5326
                   is_pure_virtual=True, is_const=True, is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5327
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5328
    cls.add_method('GetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5329
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5330
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5331
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5332
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5333
    cls.add_method('GetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5334
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5335
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5336
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5337
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5338
    cls.add_method('GetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5339
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5340
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5341
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5342
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5343
    cls.add_method('GetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5344
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5345
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5346
                   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
  5347
    ## 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
  5348
    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
  5349
                   '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
  5350
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5351
                   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
  5352
    ## 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
  5353
    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
  5354
                   '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
  5355
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5356
                   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
  5357
    ## 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
  5358
    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
  5359
                   '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
  5360
                   [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
  5361
                   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
  5362
    ## 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
  5363
    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
  5364
                   '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
  5365
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5366
                   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
  5367
    ## 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
  5368
    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
  5369
                   '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
  5370
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5371
                   is_pure_virtual=True, is_const=True, is_virtual=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5372
    ## socket.h (module 'network'): static ns3::TypeId ns3::Socket::GetTypeId() [member function]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5373
    cls.add_method('GetTypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5374
                   'ns3::TypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5375
                   [], 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  5376
                   is_static=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5377
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5378
    cls.add_method('IsIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5379
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5380
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5381
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5382
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5383
    cls.add_method('IsIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5384
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5385
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5386
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5387
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5388
    cls.add_method('IsIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5389
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5390
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5391
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5392
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5393
    cls.add_method('IsIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5394
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5395
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5396
                   is_const=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5397
    ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5398
    cls.add_method('IsRecvPktInfo', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5399
                   'bool', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5400
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5401
                   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
  5402
    ## 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
  5403
    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
  5404
                   '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
  5405
                   [], 
355d6562399e Modular 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
                   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
  5407
    ## 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
  5408
    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
  5409
                   '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
  5410
                   [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
  5411
                   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
  5412
    ## 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
  5413
    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
  5414
                   '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
  5415
                   [])
355d6562399e Modular 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
    ## 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
  5417
    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
  5418
                   '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
  5419
                   [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
  5420
    ## 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
  5421
    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
  5422
                   '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
  5423
                   [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
  5424
                   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
  5425
    ## 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
  5426
    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
  5427
                   '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
  5428
                   [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
  5429
    ## 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
  5430
    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
  5431
                   '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
  5432
                   [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
  5433
    ## 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
  5434
    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
  5435
                   '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
  5436
                   [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
  5437
                   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
  5438
    ## 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
  5439
    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
  5440
                   '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
  5441
                   [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
  5442
    ## 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
  5443
    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
  5444
                   '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
  5445
                   [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
  5446
    ## 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
  5447
    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
  5448
                   '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
  5449
                   [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
  5450
                   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
  5451
    ## 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
  5452
    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
  5453
                   '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
  5454
                   [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
  5455
    ## 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
  5456
    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
  5457
                   '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
  5458
                   [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
  5459
    ## 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
  5460
    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
  5461
                   '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
  5462
                   [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
  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'): 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
  5465
    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
  5466
                   '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
  5467
                   [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
  5468
    ## 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
  5469
    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
  5470
                   '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
  5471
                   [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
  5472
    ## 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
  5473
    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
  5474
                   '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
  5475
                   [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
  5476
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTos(bool ipv4RecvTos) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5477
    cls.add_method('SetIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5478
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5479
                   [param('bool', 'ipv4RecvTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5480
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTtl(bool ipv4RecvTtl) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5481
    cls.add_method('SetIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5482
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5483
                   [param('bool', 'ipv4RecvTtl')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5484
    ## 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
  5485
    cls.add_method('SetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5486
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5487
                   [param('uint8_t', 'ipTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5488
    ## 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
  5489
    cls.add_method('SetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5490
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5491
                   [param('uint8_t', 'ipTtl')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5492
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5493
    ## 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
  5494
    cls.add_method('SetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5495
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5496
                   [param('uint8_t', 'ipHopLimit')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5497
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5498
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvHopLimit(bool ipv6RecvHopLimit) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5499
    cls.add_method('SetIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5500
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5501
                   [param('bool', 'ipv6RecvHopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5502
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvTclass(bool ipv6RecvTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5503
    cls.add_method('SetIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5504
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5505
                   [param('bool', 'ipv6RecvTclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5506
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6Tclass(int ipTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5507
    cls.add_method('SetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5508
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5509
                   [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
  5510
    ## 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
  5511
    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
  5512
                   '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
  5513
                   [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
  5514
    ## 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
  5515
    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
  5516
                   '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
  5517
                   [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
  5518
    ## 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
  5519
    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
  5520
                   '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
  5521
                   [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
  5522
    ## 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
  5523
    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
  5524
                   '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
  5525
                   [], 
355d6562399e Modular 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
                   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
  5527
    ## 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
  5528
    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
  5529
                   '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
  5530
                   [], 
355d6562399e Modular 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
                   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
  5532
    ## 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
  5533
    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
  5534
                   '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
  5535
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5536
                   visibility='protected', is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5537
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5538
    cls.add_method('IsManualIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5539
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5540
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5541
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5542
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5543
    cls.add_method('IsManualIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5544
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5545
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5546
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5547
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5548
    cls.add_method('IsManualIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5549
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5550
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5551
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5552
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5553
    cls.add_method('IsManualIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5554
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5555
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5556
                   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
  5557
    ## 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
  5558
    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
  5559
                   '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
  5560
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5561
                   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
  5562
    ## 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
  5563
    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
  5564
                   '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
  5565
                   [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
  5566
                   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
  5567
    ## 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
  5568
    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
  5569
                   '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
  5570
                   [], 
355d6562399e Modular 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
                   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
  5572
    ## 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
  5573
    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
  5574
                   '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
  5575
                   [], 
355d6562399e Modular 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
                   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
  5577
    ## 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
  5578
    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
  5579
                   '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
  5580
                   [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
  5581
                   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
  5582
    ## 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
  5583
    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
  5584
                   '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
  5585
                   [], 
355d6562399e Modular 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
                   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
  5587
    ## 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
  5588
    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
  5589
                   '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
  5590
                   [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
  5591
                   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
  5592
    ## 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
  5593
    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
  5594
                   '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
  5595
                   [], 
355d6562399e Modular 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
                   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
  5597
    ## 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
  5598
    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
  5599
                   '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
  5600
                   [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
  5601
                   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
  5602
    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
  5603
355d6562399e Modular 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
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
  5605
    ## 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
  5606
    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
  5607
    ## 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
  5608
    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
  5609
    ## 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
  5610
    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
  5611
                   '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
  5612
                   [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
  5613
                   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
  5614
    ## 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
  5615
    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
  5616
                   '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
  5617
                   [], 
355d6562399e Modular 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
                   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
  5619
    ## 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
  5620
    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
  5621
                   '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
  5622
                   [], 
355d6562399e Modular 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
                   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
  5624
    ## 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
  5625
    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
  5626
                   '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
  5627
                   [], 
355d6562399e Modular 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
                   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
  5629
    ## 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
  5630
    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
  5631
                   '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
  5632
                   [], 
355d6562399e Modular 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
                   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
  5634
    ## 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
  5635
    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
  5636
                   '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
  5637
                   [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
  5638
                   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
  5639
    ## 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
  5640
    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
  5641
                   '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
  5642
                   [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
  5643
                   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
  5644
    ## 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
  5645
    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
  5646
                   '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
  5647
                   [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
  5648
    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
  5649
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
  5650
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
  5651
    ## 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
  5652
    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
  5653
    ## 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
  5654
    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
  5655
    ## 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
  5656
    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
  5657
                   '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
  5658
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5659
                   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
  5660
    ## 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
  5661
    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
  5662
                   '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
  5663
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  5664
                   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
  5665
    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
  5666
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5667
def register_Ns3SocketIpTosTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5668
    ## 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
  5669
    cls.add_constructor([param('ns3::SocketIpTosTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5670
    ## socket.h (module 'network'): ns3::SocketIpTosTag::SocketIpTosTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5671
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5672
    ## 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
  5673
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5674
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5675
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5676
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5677
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTosTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5678
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5679
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5680
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5681
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5682
    ## socket.h (module 'network'): uint32_t ns3::SocketIpTosTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5683
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5684
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5685
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5686
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5687
    ## socket.h (module 'network'): uint8_t ns3::SocketIpTosTag::GetTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5688
    cls.add_method('GetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5689
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5690
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5691
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5692
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTosTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5693
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5694
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5695
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5696
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5697
    ## 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
  5698
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5699
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5700
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5701
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5702
    ## 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
  5703
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5704
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5705
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5706
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5707
    ## 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
  5708
    cls.add_method('SetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5709
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5710
                   [param('uint8_t', 'tos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5711
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5712
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
  5713
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
  5714
    ## 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
  5715
    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
  5716
    ## 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
  5717
    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
  5718
    ## 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
  5719
    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
  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
                   [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
  5722
                   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
  5723
    ## 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
  5724
    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
  5725
                   '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
  5726
                   [], 
355d6562399e Modular 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
                   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
  5728
    ## 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
  5729
    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
  5730
                   '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
  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
                   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
  5733
    ## 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
  5734
    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
  5735
                   '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
  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
                   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
  5738
    ## 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
  5739
    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
  5740
                   '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
  5741
                   [], 
355d6562399e Modular 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
                   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
  5743
    ## 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
  5744
    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
  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
                   [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
  5747
                   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
  5748
    ## 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
  5749
    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
  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::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
  5752
                   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
  5753
    ## 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
  5754
    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
  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
                   [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
  5757
    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
  5758
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5759
def register_Ns3SocketIpv6HopLimitTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5760
    ## 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
  5761
    cls.add_constructor([param('ns3::SocketIpv6HopLimitTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5762
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag::SocketIpv6HopLimitTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5763
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5764
    ## 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
  5765
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5766
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5767
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5768
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5769
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6HopLimitTag::GetHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5770
    cls.add_method('GetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5771
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5772
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5773
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5774
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6HopLimitTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5775
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5776
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5777
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5778
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5779
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6HopLimitTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5780
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5781
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5782
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5783
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5784
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6HopLimitTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5785
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5786
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5787
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5788
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5789
    ## 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
  5790
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5791
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5792
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5793
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5794
    ## 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
  5795
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5796
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5797
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5798
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5799
    ## 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
  5800
    cls.add_method('SetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5801
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5802
                   [param('uint8_t', 'hopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5803
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5804
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5805
def register_Ns3SocketIpv6TclassTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5806
    ## 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
  5807
    cls.add_constructor([param('ns3::SocketIpv6TclassTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5808
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag::SocketIpv6TclassTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5809
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5810
    ## 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
  5811
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5812
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5813
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5814
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5815
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6TclassTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5816
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5817
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5818
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5819
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5820
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6TclassTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5821
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5822
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5823
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5824
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5825
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6TclassTag::GetTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5826
    cls.add_method('GetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5827
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5828
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5829
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5830
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6TclassTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5831
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5832
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5833
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5834
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5835
    ## 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
  5836
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5837
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5838
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5839
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5840
    ## 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
  5841
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5842
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5843
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5844
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5845
    ## 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
  5846
    cls.add_method('SetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5847
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5848
                   [param('uint8_t', 'tclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5849
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5850
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
  5851
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
  5852
    ## 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
  5853
    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
  5854
    ## 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
  5855
    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
  5856
    ## 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
  5857
    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
  5858
                   '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
  5859
                   [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
  5860
                   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
  5861
    ## 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
  5862
    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
  5863
                   '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
  5864
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5865
    ## 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
  5866
    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
  5867
                   '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
  5868
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5869
    ## 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
  5870
    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
  5871
                   '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
  5872
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5873
                   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
  5874
    ## 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
  5875
    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
  5876
                   '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
  5877
                   [], 
355d6562399e Modular 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
                   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
  5879
    ## 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
  5880
    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
  5881
                   '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
  5882
                   [], 
355d6562399e Modular 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_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
  5884
    ## 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
  5885
    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
  5886
                   '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
  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)
355d6562399e Modular 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'): 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
  5890
    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
  5891
                   '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
  5892
                   [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
  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'): 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
  5895
    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
  5896
                   '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
  5897
                   [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
  5898
                   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
  5899
    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
  5900
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5901
def register_Ns3Time_methods(root_module, cls):
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10903
diff changeset
  5902
    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
  5903
    cls.add_binary_comparison_operator('!=')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  5904
    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
  5905
    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
  5906
    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
  5907
    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
  5908
    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
  5909
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5910
    cls.add_binary_comparison_operator('>')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  5911
    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
  5912
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5913
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5914
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5915
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5916
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5917
    ## 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
  5918
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5919
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5920
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5921
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5922
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5923
    ## 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
  5924
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5925
    ## 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
  5926
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5927
    ## 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
  5928
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5929
    ## 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
  5930
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5931
    ## 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
  5932
    cls.add_constructor([param('long long unsigned int', 'v')])
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5933
    ## 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
  5934
    cls.add_constructor([param('ns3::int64x64_t const &', 'v')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5935
    ## 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
  5936
    cls.add_constructor([param('std::string const &', 's')])
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  5937
    ## 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
  5938
    cls.add_method('As', 
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  5939
                   'ns3::TimeWithUnit', 
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  5940
                   [param('ns3::Time::Unit const', 'unit')], 
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  5941
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5942
    ## 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
  5943
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5944
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5945
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5946
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5947
    ## 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
  5948
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5949
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5950
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5951
                   is_static=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5952
    ## 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
  5953
    cls.add_method('From', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5954
                   'ns3::Time', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5955
                   [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
  5956
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5957
    ## 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
  5958
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5959
                   'ns3::Time', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5960
                   [param('double', 'value'), param('ns3::Time::Unit', 'unit')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5961
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5962
    ## 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
  5963
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5964
                   'ns3::Time', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  5965
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'unit')], 
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5966
                   is_static=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5967
    ## nstime.h (module 'core'): double ns3::Time::GetDays() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5968
    cls.add_method('GetDays', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5969
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5970
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5971
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5972
    ## 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
  5973
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5974
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5975
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5976
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5977
    ## 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
  5978
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5979
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5980
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5981
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5982
    ## nstime.h (module 'core'): double ns3::Time::GetHours() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5983
    cls.add_method('GetHours', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5984
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5985
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  5986
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5987
    ## 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
  5988
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5989
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5990
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5991
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5992
    ## 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
  5993
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5994
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5995
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5996
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5997
    ## 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
  5998
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  5999
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6000
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6001
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6002
    ## nstime.h (module 'core'): double ns3::Time::GetMinutes() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6003
    cls.add_method('GetMinutes', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6004
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6005
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6006
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6007
    ## 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
  6008
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6009
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6010
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6011
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6012
    ## 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
  6013
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6014
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6015
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6016
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6017
    ## 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
  6018
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6019
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6020
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6021
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6022
    ## 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
  6023
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6024
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6025
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6026
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6027
    ## 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
  6028
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6029
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6030
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6031
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6032
    ## nstime.h (module 'core'): double ns3::Time::GetYears() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6033
    cls.add_method('GetYears', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6034
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6035
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
  6036
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6037
    ## 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
  6038
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6039
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6040
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6041
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6042
    ## 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
  6043
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6044
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6045
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6046
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6047
    ## 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
  6048
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6049
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6050
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6051
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6052
    ## 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
  6053
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6054
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6055
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6056
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6057
    ## 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
  6058
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6059
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6060
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6061
                   is_const=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6062
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::Max() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6063
    cls.add_method('Max', 
9901
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6064
                   'ns3::Time', 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6065
                   [], 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6066
                   is_static=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6067
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::Min() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6068
    cls.add_method('Min', 
9901
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6069
                   'ns3::Time', 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6070
                   [], 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  6071
                   is_static=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6072
    ## 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
  6073
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6074
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6075
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6076
                   is_static=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6077
    ## nstime.h (module 'core'): static bool ns3::Time::StaticInit() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6078
    cls.add_method('StaticInit', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6079
                   'bool', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6080
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10132
diff changeset
  6081
                   is_static=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6082
    ## 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
  6083
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6084
                   'ns3::int64x64_t', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6085
                   [param('ns3::Time::Unit', 'unit')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6086
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6087
    ## 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
  6088
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6089
                   'double', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6090
                   [param('ns3::Time::Unit', 'unit')], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6091
                   is_const=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6092
    ## 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
  6093
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6094
                   'int64_t', 
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  6095
                   [param('ns3::Time::Unit', 'unit')], 
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6096
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6097
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6983
diff changeset
  6098
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6099
def register_Ns3TraceSourceAccessor_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6100
    ## 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
  6101
    cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6102
    ## 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
  6103
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6104
    ## 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
  6105
    cls.add_method('Connect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6106
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6107
                   [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
  6108
                   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
  6109
    ## 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
  6110
    cls.add_method('ConnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6111
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6112
                   [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
  6113
                   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
  6114
    ## 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
  6115
    cls.add_method('Disconnect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6116
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6117
                   [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
  6118
                   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
  6119
    ## 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
  6120
    cls.add_method('DisconnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6121
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6122
                   [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
  6123
                   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
  6124
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6125
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
  6126
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
  6127
    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
  6128
    ## 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
  6129
    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
  6130
    ## 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
  6131
    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
  6132
    ## 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
  6133
    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
  6134
                   '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
  6135
                   [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
  6136
                   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
  6137
    ## 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
  6138
    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
  6139
                   '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
  6140
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6141
                   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
  6142
    ## 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
  6143
    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
  6144
                   '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
  6145
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6146
                   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
  6147
    ## 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
  6148
    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
  6149
                   '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
  6150
                   [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
  6151
                   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
  6152
    ## 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
  6153
    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
  6154
                   '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
  6155
                   [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
  6156
                   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
  6157
    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
  6158
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6159
def register_Ns3TriangularRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6160
    ## 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
  6161
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6162
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6163
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6164
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6165
    ## 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
  6166
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6167
    ## 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
  6168
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6169
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6170
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6171
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6172
    ## 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
  6173
    cls.add_method('GetMin', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6174
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6175
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6176
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6177
    ## 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
  6178
    cls.add_method('GetMax', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6179
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6180
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6181
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6182
    ## 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
  6183
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6184
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6185
                   [param('double', 'mean'), param('double', 'min'), param('double', 'max')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6186
    ## 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
  6187
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6188
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6189
                   [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
  6190
    ## 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
  6191
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6192
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6193
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6194
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6195
    ## 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
  6196
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6197
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6198
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6199
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6200
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6201
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6202
def register_Ns3UniformRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6203
    ## 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
  6204
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6205
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6206
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6207
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6208
    ## 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
  6209
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6210
    ## 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
  6211
    cls.add_method('GetMin', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6212
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6213
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6214
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6215
    ## 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
  6216
    cls.add_method('GetMax', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6217
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6218
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6219
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6220
    ## 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
  6221
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6222
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6223
                   [param('double', 'min'), param('double', 'max')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6224
    ## 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
  6225
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6226
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6227
                   [param('uint32_t', 'min'), param('uint32_t', 'max')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6228
    ## 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
  6229
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6230
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6231
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6232
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6233
    ## 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
  6234
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6235
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6236
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6237
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6238
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6239
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6240
def register_Ns3WeibullRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6241
    ## 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
  6242
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6243
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6244
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6245
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6246
    ## 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
  6247
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6248
    ## 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
  6249
    cls.add_method('GetScale', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6250
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6251
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6252
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6253
    ## 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
  6254
    cls.add_method('GetShape', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6255
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6256
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6257
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6258
    ## 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
  6259
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6260
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6261
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6262
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6263
    ## 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
  6264
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6265
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6266
                   [param('double', 'scale'), param('double', 'shape'), param('double', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6267
    ## 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
  6268
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6269
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6270
                   [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
  6271
    ## 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
  6272
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6273
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6274
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6275
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6276
    ## 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
  6277
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6278
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6279
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6280
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6281
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6282
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6283
def register_Ns3ZetaRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6284
    ## 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
  6285
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6286
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6287
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6288
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6289
    ## 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
  6290
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6291
    ## 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
  6292
    cls.add_method('GetAlpha', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6293
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6294
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6295
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6296
    ## 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
  6297
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6298
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6299
                   [param('double', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6300
    ## 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
  6301
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6302
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6303
                   [param('uint32_t', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6304
    ## 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
  6305
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6306
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6307
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6308
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6309
    ## 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
  6310
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6311
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6312
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6313
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6314
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6315
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6316
def register_Ns3ZipfRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6317
    ## 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
  6318
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6319
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6320
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6321
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6322
    ## 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
  6323
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6324
    ## 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
  6325
    cls.add_method('GetN', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6326
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6327
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6328
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6329
    ## 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
  6330
    cls.add_method('GetAlpha', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6331
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6332
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6333
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6334
    ## 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
  6335
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6336
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6337
                   [param('uint32_t', 'n'), param('double', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6338
    ## 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
  6339
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6340
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6341
                   [param('uint32_t', 'n'), param('uint32_t', 'alpha')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6342
    ## 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
  6343
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6344
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6345
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6346
                   is_virtual=True)
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::ZipfRandomVariable::GetInteger() [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
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6351
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6352
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6353
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
  6354
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
  6355
    ## 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
  6356
    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
  6357
    ## 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
  6358
    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
  6359
    ## 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
  6360
    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
  6361
                   '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
  6362
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6363
                   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
  6364
    ## 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
  6365
    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
  6366
                   '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
  6367
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6368
                   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
  6369
    ## 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
  6370
    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
  6371
                   '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
  6372
                   [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
  6373
    ## 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
  6374
    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
  6375
                   '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
  6376
                   [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
  6377
    ## 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
  6378
    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
  6379
                   '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
  6380
                   [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
  6381
    ## 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
  6382
    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
  6383
                   '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
  6384
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6385
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  6386
    ## application.h (module 'network'): void ns3::Application::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  6387
    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
  6388
                   '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
  6389
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6390
                   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
  6391
    ## 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
  6392
    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
  6393
                   '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
  6394
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6395
                   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
  6396
    ## 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
  6397
    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
  6398
                   '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
  6399
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6400
                   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
  6401
    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
  6402
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6403
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
  6404
    ## 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
  6405
    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
  6406
    ## 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
  6407
    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
  6408
    ## 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
  6409
    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
  6410
                   '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
  6411
                   [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
  6412
                   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
  6413
    ## 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
  6414
    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
  6415
                   '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
  6416
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6417
                   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
  6418
    ## 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
  6419
    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
  6420
                   '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
  6421
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6422
                   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
  6423
    ## 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
  6424
    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
  6425
                   '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
  6426
                   [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
  6427
                   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
  6428
    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
  6429
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6430
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
  6431
    ## 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
  6432
    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
  6433
    ## 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
  6434
    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
  6435
    ## 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
  6436
    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
  6437
                   '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
  6438
                   [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
  6439
                   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
  6440
    ## 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
  6441
    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
  6442
                   '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
  6443
                   [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
  6444
                   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
  6445
    ## 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
  6446
    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
  6447
                   '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
  6448
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6449
                   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
  6450
    ## 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
  6451
    cls.add_method('CreateValidValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6452
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6453
                   [param('ns3::AttributeValue const &', 'value')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  6454
                   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
  6455
    ## 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
  6456
    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
  6457
                   '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
  6458
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6459
                   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
  6460
    ## 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
  6461
    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
  6462
                   '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
  6463
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6464
                   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
  6465
    ## 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
  6466
    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
  6467
                   '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
  6468
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6469
                   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
  6470
    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
  6471
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6472
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
  6473
    ## 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
  6474
    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
  6475
    ## 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
  6476
    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
  6477
    ## 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
  6478
    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
  6479
                   '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
  6480
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6481
                   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
  6482
    ## 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
  6483
    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
  6484
                   '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
  6485
                   [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
  6486
                   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
  6487
    ## 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
  6488
    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
  6489
                   '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
  6490
                   [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
  6491
                   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
  6492
    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
  6493
7626
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6494
def register_Ns3BooleanChecker_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6495
    ## boolean.h (module 'core'): ns3::BooleanChecker::BooleanChecker() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6496
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6497
    ## 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
  6498
    cls.add_constructor([param('ns3::BooleanChecker const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6499
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6500
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6501
def register_Ns3BooleanValue_methods(root_module, cls):
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6502
    cls.add_output_stream_operator()
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6503
    ## 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
  6504
    cls.add_constructor([param('ns3::BooleanValue const &', 'arg0')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6505
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue() [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6506
    cls.add_constructor([])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6507
    ## boolean.h (module 'core'): ns3::BooleanValue::BooleanValue(bool value) [constructor]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6508
    cls.add_constructor([param('bool', 'value')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6509
    ## 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
  6510
    cls.add_method('Copy', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6511
                   'ns3::Ptr< ns3::AttributeValue >', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6512
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6513
                   is_const=True, is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6514
    ## 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
  6515
    cls.add_method('DeserializeFromString', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6516
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6517
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6518
                   is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6519
    ## boolean.h (module 'core'): bool ns3::BooleanValue::Get() const [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6520
    cls.add_method('Get', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6521
                   'bool', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6522
                   [], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6523
                   is_const=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6524
    ## 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
  6525
    cls.add_method('SerializeToString', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6526
                   'std::string', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6527
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6528
                   is_const=True, is_virtual=True)
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6529
    ## boolean.h (module 'core'): void ns3::BooleanValue::Set(bool value) [member function]
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6530
    cls.add_method('Set', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6531
                   'void', 
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6532
                   [param('bool', 'value')])
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6533
    return
bbede1834853 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7449
diff changeset
  6534
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
  6535
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
  6536
    ## 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
  6537
    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
  6538
    ## 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
  6539
    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
  6540
    ## 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
  6541
    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
  6542
                   '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
  6543
                   [], 
355d6562399e Modular 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
                   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
  6545
    ## 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
  6546
    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
  6547
                   '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
  6548
                   [], 
355d6562399e Modular 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
                   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
  6550
    ## 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
  6551
    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
  6552
                   '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
  6553
                   [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
  6554
    ## 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
  6555
    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
  6556
                   '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
  6557
                   [], 
355d6562399e Modular 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
                   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
  6559
    ## 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
  6560
    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
  6561
                   '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
  6562
                   [], 
355d6562399e Modular 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
                   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
  6564
    ## 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
  6565
    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
  6566
                   '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
  6567
                   [], 
355d6562399e Modular 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
                   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
  6569
    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
  6570
355d6562399e Modular 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
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
  6572
    ## 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
  6573
    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
  6574
    ## 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
  6575
    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
  6576
    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
  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
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
  6579
    ## 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
  6580
    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
  6581
    ## 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
  6582
    cls.add_constructor([param('ns3::CallbackImplBase 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
  6583
    ## 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
  6584
    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
  6585
                   '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
  6586
                   [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
  6587
                   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
  6588
    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
  6589
355d6562399e Modular 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
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
  6591
    ## 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
  6592
    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
  6593
    ## 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
  6594
    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
  6595
    ## 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
  6596
    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
  6597
    ## 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
  6598
    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
  6599
                   '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
  6600
                   [], 
355d6562399e Modular 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
                   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
  6602
    ## 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
  6603
    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
  6604
                   '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
  6605
                   [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
  6606
                   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
  6607
    ## 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
  6608
    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
  6609
                   '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
  6610
                   [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
  6611
                   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
  6612
    ## 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
  6613
    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
  6614
                   '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
  6615
                   [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
  6616
    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
  6617
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
  6618
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
  6619
    ## 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
  6620
    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
  6621
    ## 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
  6622
    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
  6623
    ## 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
  6624
    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
  6625
                   '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
  6626
                   [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
  6627
                   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
  6628
    ## 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
  6629
    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
  6630
                   '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
  6631
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6632
                   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
  6633
    ## 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
  6634
    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
  6635
                   '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
  6636
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6637
                   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
  6638
    ## 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
  6639
    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
  6640
                   '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
  6641
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6642
                   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
  6643
    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
  6644
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6645
def register_Ns3ConstantRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6646
    ## 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
  6647
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6648
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6649
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6650
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6651
    ## 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
  6652
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6653
    ## 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
  6654
    cls.add_method('GetConstant', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6655
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6656
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6657
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6658
    ## 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
  6659
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6660
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6661
                   [param('double', 'constant')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6662
    ## 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
  6663
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6664
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6665
                   [param('uint32_t', 'constant')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6666
    ## 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
  6667
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6668
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6669
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6670
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6671
    ## 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
  6672
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6673
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6674
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6675
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6676
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6677
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6678
def register_Ns3DataCalculator_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6679
    ## 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
  6680
    cls.add_constructor([param('ns3::DataCalculator const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6681
    ## data-calculator.h (module 'stats'): ns3::DataCalculator::DataCalculator() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6682
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6683
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::Disable() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6684
    cls.add_method('Disable', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6685
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6686
                   [])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6687
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::Enable() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6688
    cls.add_method('Enable', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6689
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6690
                   [])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6691
    ## data-calculator.h (module 'stats'): std::string ns3::DataCalculator::GetContext() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6692
    cls.add_method('GetContext', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6693
                   'std::string', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6694
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6695
                   is_const=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6696
    ## data-calculator.h (module 'stats'): bool ns3::DataCalculator::GetEnabled() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6697
    cls.add_method('GetEnabled', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6698
                   'bool', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6699
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6700
                   is_const=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6701
    ## data-calculator.h (module 'stats'): std::string ns3::DataCalculator::GetKey() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6702
    cls.add_method('GetKey', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6703
                   'std::string', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6704
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6705
                   is_const=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6706
    ## 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
  6707
    cls.add_method('Output', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6708
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6709
                   [param('ns3::DataOutputCallback &', 'callback')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6710
                   is_pure_virtual=True, is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6711
    ## 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
  6712
    cls.add_method('SetContext', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6713
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6714
                   [param('std::string const', 'context')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6715
    ## 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
  6716
    cls.add_method('SetKey', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6717
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6718
                   [param('std::string const', 'key')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6719
    ## 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
  6720
    cls.add_method('Start', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6721
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6722
                   [param('ns3::Time const &', 'startTime')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6723
                   is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6724
    ## 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
  6725
    cls.add_method('Stop', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6726
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6727
                   [param('ns3::Time const &', 'stopTime')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6728
                   is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6729
    ## data-calculator.h (module 'stats'): void ns3::DataCalculator::DoDispose() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6730
    cls.add_method('DoDispose', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6731
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6732
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6733
                   visibility='protected', is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6734
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6735
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6736
def register_Ns3DataCollectionObject_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6737
    ## 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
  6738
    cls.add_constructor([param('ns3::DataCollectionObject const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6739
    ## data-collection-object.h (module 'stats'): ns3::DataCollectionObject::DataCollectionObject() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6740
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6741
    ## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::Disable() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6742
    cls.add_method('Disable', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6743
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6744
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6745
    ## data-collection-object.h (module 'stats'): void ns3::DataCollectionObject::Enable() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6746
    cls.add_method('Enable', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6747
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6748
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6749
    ## 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
  6750
    cls.add_method('GetName', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6751
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6752
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6753
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6754
    ## 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
  6755
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6756
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6757
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6758
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6759
    ## 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
  6760
    cls.add_method('IsEnabled', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6761
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6762
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6763
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6764
    ## 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
  6765
    cls.add_method('SetName', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6766
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6767
                   [param('std::string', 'name')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6768
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6769
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6770
def register_Ns3DataOutputInterface_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6771
    ## 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
  6772
    cls.add_constructor([param('ns3::DataOutputInterface const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6773
    ## data-output-interface.h (module 'stats'): ns3::DataOutputInterface::DataOutputInterface() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6774
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6775
    ## 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
  6776
    cls.add_method('GetFilePrefix', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6777
                   'std::string', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6778
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6779
                   is_const=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6780
    ## 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
  6781
    cls.add_method('Output', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6782
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6783
                   [param('ns3::DataCollector &', 'dc')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6784
                   is_pure_virtual=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6785
    ## 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
  6786
    cls.add_method('SetFilePrefix', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6787
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6788
                   [param('std::string const', 'prefix')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6789
    ## data-output-interface.h (module 'stats'): void ns3::DataOutputInterface::DoDispose() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6790
    cls.add_method('DoDispose', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6791
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6792
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6793
                   visibility='protected', is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6794
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  6795
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
  6796
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
  6797
    ## 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
  6798
    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
  6799
    ## 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
  6800
    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
  6801
    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
  6802
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6803
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
  6804
    ## 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
  6805
    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
  6806
    ## 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
  6807
    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
  6808
    ## 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
  6809
    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
  6810
    ## 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
  6811
    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
  6812
                   '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
  6813
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6814
                   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
  6815
    ## 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
  6816
    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
  6817
                   '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
  6818
                   [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
  6819
                   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
  6820
    ## 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
  6821
    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
  6822
                   '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
  6823
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6824
                   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
  6825
    ## 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
  6826
    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
  6827
                   '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
  6828
                   [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
  6829
                   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
  6830
    ## 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
  6831
    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
  6832
                   '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
  6833
                   [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
  6834
    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
  6835
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6836
def register_Ns3DeterministicRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6837
    ## 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
  6838
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6839
                   'ns3::TypeId', 
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_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6842
    ## 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
  6843
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6844
    ## 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
  6845
    cls.add_method('SetValueArray', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6846
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6847
                   [param('double *', 'values'), param('uint64_t', 'length')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6848
    ## 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
  6849
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6850
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6851
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6852
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6853
    ## 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
  6854
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6855
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6856
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6857
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6858
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6859
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6860
def register_Ns3DoubleValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6861
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6862
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6863
    ## 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
  6864
    cls.add_constructor([param('ns3::DoubleValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6865
    ## double.h (module 'core'): ns3::DoubleValue::DoubleValue(double const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6866
    cls.add_constructor([param('double const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6867
    ## 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
  6868
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6869
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6870
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6871
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6872
    ## 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
  6873
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6874
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6875
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6876
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6877
    ## double.h (module 'core'): double ns3::DoubleValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6878
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6879
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6880
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6881
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6882
    ## 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
  6883
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6884
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6885
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6886
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6887
    ## 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
  6888
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6889
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6890
                   [param('double const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6891
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6892
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
  6893
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
  6894
    ## 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
  6895
    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
  6896
    ## 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
  6897
    cls.add_constructor([])
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  6898
    ## drop-tail-queue.h (module 'network'): ns3::Queue::QueueMode ns3::DropTailQueue::GetMode() [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
  6899
    cls.add_method('GetMode', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  6900
                   'ns3::Queue::QueueMode', 
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
  6901
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6902
    ## 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
  6903
    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
  6904
                   '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
  6905
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6906
                   is_static=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  6907
    ## 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
  6908
    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
  6909
                   'void', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  6910
                   [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
  6911
    ## 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
  6912
    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
  6913
                   '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
  6914
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6915
                   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
  6916
    ## 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
  6917
    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
  6918
                   '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
  6919
                   [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
  6920
                   visibility='private', is_virtual=True)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6921
    ## 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
  6922
    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
  6923
                   '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
  6924
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  6925
                   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
  6926
    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
  6927
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6928
def register_Ns3EmpiricalRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6929
    ## 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
  6930
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6931
    ## 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
  6932
    cls.add_method('CDF', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6933
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6934
                   [param('double', 'v'), param('double', 'c')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6935
    ## 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
  6936
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6937
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6938
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6939
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6940
    ## 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
  6941
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6942
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6943
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6944
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6945
    ## 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
  6946
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6947
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6948
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6949
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6950
    ## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::Interpolate(double arg0, double arg1, double arg2, double arg3, double arg4) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6951
    cls.add_method('Interpolate', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6952
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6953
                   [param('double', 'arg0'), param('double', 'arg1'), param('double', 'arg2'), param('double', 'arg3'), param('double', 'arg4')], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6954
                   visibility='private', is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6955
    ## 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
  6956
    cls.add_method('Validate', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6957
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6958
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6959
                   visibility='private', is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6960
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  6961
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
  6962
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
  6963
    ## 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
  6964
    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
  6965
    ## 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
  6966
    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
  6967
    ## 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
  6968
    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
  6969
                   '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
  6970
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6971
                   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
  6972
    ## 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
  6973
    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
  6974
                   '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
  6975
                   [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
  6976
                   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
  6977
    ## 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
  6978
    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
  6979
                   '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
  6980
                   [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
  6981
                   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
  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
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6984
def register_Ns3EnumChecker_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6985
    ## 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
  6986
    cls.add_constructor([param('ns3::EnumChecker const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6987
    ## enum.h (module 'core'): ns3::EnumChecker::EnumChecker() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6988
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6989
    ## enum.h (module 'core'): void ns3::EnumChecker::Add(int v, std::string name) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6990
    cls.add_method('Add', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6991
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6992
                   [param('int', 'v'), param('std::string', 'name')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6993
    ## enum.h (module 'core'): void ns3::EnumChecker::AddDefault(int v, std::string name) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6994
    cls.add_method('AddDefault', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6995
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6996
                   [param('int', 'v'), param('std::string', 'name')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6997
    ## 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
  6998
    cls.add_method('Check', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6999
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7000
                   [param('ns3::AttributeValue const &', 'value')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7001
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7002
    ## 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
  7003
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7004
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7005
                   [param('ns3::AttributeValue const &', 'src'), param('ns3::AttributeValue &', 'dst')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7006
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7007
    ## 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
  7008
    cls.add_method('Create', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7009
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7010
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7011
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7012
    ## enum.h (module 'core'): std::string ns3::EnumChecker::GetUnderlyingTypeInformation() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7013
    cls.add_method('GetUnderlyingTypeInformation', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7014
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7015
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7016
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7017
    ## enum.h (module 'core'): std::string ns3::EnumChecker::GetValueTypeName() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7018
    cls.add_method('GetValueTypeName', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7019
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7020
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7021
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7022
    ## enum.h (module 'core'): bool ns3::EnumChecker::HasUnderlyingTypeInformation() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7023
    cls.add_method('HasUnderlyingTypeInformation', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7024
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7025
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7026
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7027
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7028
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7029
def register_Ns3EnumValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7030
    ## 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
  7031
    cls.add_constructor([param('ns3::EnumValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7032
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7033
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7034
    ## enum.h (module 'core'): ns3::EnumValue::EnumValue(int v) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7035
    cls.add_constructor([param('int', 'v')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7036
    ## 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
  7037
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7038
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7039
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7040
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7041
    ## 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
  7042
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7043
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7044
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7045
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7046
    ## enum.h (module 'core'): int ns3::EnumValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7047
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7048
                   'int', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7049
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7050
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7051
    ## 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
  7052
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7053
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7054
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7055
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7056
    ## enum.h (module 'core'): void ns3::EnumValue::Set(int v) [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7057
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7058
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7059
                   [param('int', 'v')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7060
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7061
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7062
def register_Ns3ErlangRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7063
    ## 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
  7064
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7065
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7066
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7067
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7068
    ## 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
  7069
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7070
    ## 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
  7071
    cls.add_method('GetK', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7072
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7073
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7074
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7075
    ## 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
  7076
    cls.add_method('GetLambda', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7077
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7078
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7079
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7080
    ## 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
  7081
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7082
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7083
                   [param('uint32_t', 'k'), param('double', 'lambda')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7084
    ## 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
  7085
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7086
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7087
                   [param('uint32_t', 'k'), param('uint32_t', 'lambda')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7088
    ## 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
  7089
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7090
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7091
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7092
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7093
    ## 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
  7094
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7095
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7096
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7097
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7098
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7099
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
  7100
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
  7101
    ## 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
  7102
    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
  7103
    ## 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
  7104
    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
  7105
    ## 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
  7106
    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
  7107
                   '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
  7108
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  7110
    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
  7111
                   '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
  7112
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7113
    ## 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
  7114
    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
  7115
                   '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
  7116
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7117
                   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
  7118
    ## 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
  7119
    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
  7120
                   '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
  7121
                   [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
  7122
    ## 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
  7123
    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
  7124
                   '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
  7125
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7126
                   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
  7127
    ## 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
  7128
    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
  7129
                   '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
  7130
                   [])
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  7131
    ## 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
  7132
    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
  7133
                   'bool', 
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  7134
                   [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
  7135
                   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
  7136
    ## 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
  7137
    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
  7138
                   '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
  7139
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7140
                   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
  7141
    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
  7142
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7143
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
  7144
    ## 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
  7145
    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
  7146
    ## 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
  7147
    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
  7148
    ## 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
  7149
    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
  7150
    ## 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
  7151
    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
  7152
                   '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
  7153
                   [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
  7154
                   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
  7155
    ## 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
  7156
    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
  7157
                   '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
  7158
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7159
                   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
  7160
    ## 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
  7161
    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
  7162
                   '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
  7163
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7164
                   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
  7165
    ## 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
  7166
    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
  7167
                   '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
  7168
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7169
                   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
  7170
    ## 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
  7171
    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
  7172
                   '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
  7173
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7174
                   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
  7175
    ## 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
  7176
    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
  7177
                   '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
  7178
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7179
                   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
  7180
    ## 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
  7181
    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
  7182
                   '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
  7183
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7184
                   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
  7185
    ## 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
  7186
    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
  7187
                   '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
  7188
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7189
                   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
  7190
    ## 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
  7191
    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
  7192
                   '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
  7193
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7194
                   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
  7195
    ## 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
  7196
    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
  7197
                   '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
  7198
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7199
                   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
  7200
    ## 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
  7201
    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
  7202
                   '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
  7203
                   [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
  7204
                   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
  7205
    ## 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
  7206
    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
  7207
                   '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
  7208
                   [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
  7209
                   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
  7210
    ## 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
  7211
    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
  7212
                   '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
  7213
                   [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
  7214
    ## 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
  7215
    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
  7216
                   '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
  7217
                   [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
  7218
    ## 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
  7219
    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
  7220
                   '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
  7221
                   [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
  7222
    ## 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
  7223
    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
  7224
                   '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
  7225
                   [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
  7226
    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
  7227
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7228
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
  7229
    ## 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
  7230
    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
  7231
    ## 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
  7232
    cls.add_constructor([])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7233
    ## 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
  7234
    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
  7235
                   '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
  7236
                   [param('ns3::Ptr< ns3::Packet const >', 'p')])
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7237
    ## 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
  7238
    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
  7239
                   '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
  7240
                   [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
  7241
                   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
  7242
    ## 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
  7243
    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
  7244
                   '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
  7245
                   [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
  7246
                   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
  7247
    ## 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
  7248
    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
  7249
                   '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
  7250
                   [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
  7251
    ## 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
  7252
    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
  7253
                   '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
  7254
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7255
    ## 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
  7256
    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
  7257
                   '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
  7258
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7259
                   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
  7260
    ## 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
  7261
    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
  7262
                   '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
  7263
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7264
                   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
  7265
    ## 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
  7266
    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
  7267
                   '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
  7268
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7269
                   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
  7270
    ## 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
  7271
    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
  7272
                   '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
  7273
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7274
                   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
  7275
    ## 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
  7276
    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
  7277
                   '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
  7278
                   [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
  7279
                   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
  7280
    ## 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
  7281
    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
  7282
                   '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
  7283
                   [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
  7284
                   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
  7285
    ## 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
  7286
    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
  7287
                   '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
  7288
                   [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
  7289
    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
  7290
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
  7291
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
  7292
    ## 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
  7293
    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
  7294
    ## 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
  7295
    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
  7296
    ## 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
  7297
    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
  7298
                   '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
  7299
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7300
    ## 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
  7301
    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
  7302
                   '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
  7303
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7304
    ## 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
  7305
    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
  7306
                   '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
  7307
                   [])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7308
    ## 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
  7309
    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
  7310
                   '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
  7311
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7312
                   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
  7313
    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
  7314
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7315
def register_Ns3ExponentialRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7316
    ## 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
  7317
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7318
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7319
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7320
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7321
    ## 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
  7322
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7323
    ## 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
  7324
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7325
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7326
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7327
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7328
    ## 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
  7329
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7330
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7331
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7332
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7333
    ## 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
  7334
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7335
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7336
                   [param('double', 'mean'), param('double', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7337
    ## 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
  7338
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7339
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7340
                   [param('uint32_t', 'mean'), param('uint32_t', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7341
    ## 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
  7342
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7343
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7344
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7345
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7346
    ## 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
  7347
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7348
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7349
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7350
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7351
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7352
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7353
def register_Ns3GammaRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7354
    ## 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
  7355
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7356
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7357
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7358
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7359
    ## 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
  7360
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7361
    ## 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
  7362
    cls.add_method('GetAlpha', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7363
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7364
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7365
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7366
    ## 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
  7367
    cls.add_method('GetBeta', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7368
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7369
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7370
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7371
    ## 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
  7372
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7373
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7374
                   [param('double', 'alpha'), param('double', 'beta')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7375
    ## 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
  7376
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7377
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7378
                   [param('uint32_t', 'alpha'), param('uint32_t', 'beta')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7379
    ## 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
  7380
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7381
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7382
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7383
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7384
    ## 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
  7385
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7386
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7387
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7388
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7389
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7390
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7391
def register_Ns3IntegerValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7392
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7393
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7394
    ## 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
  7395
    cls.add_constructor([param('ns3::IntegerValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7396
    ## integer.h (module 'core'): ns3::IntegerValue::IntegerValue(int64_t const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7397
    cls.add_constructor([param('int64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7398
    ## 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
  7399
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7400
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7401
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7402
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7403
    ## 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
  7404
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7405
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7406
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7407
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7408
    ## integer.h (module 'core'): int64_t ns3::IntegerValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7409
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7410
                   'int64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7411
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7412
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7413
    ## 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
  7414
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7415
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7416
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7417
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7418
    ## 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
  7419
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7420
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7421
                   [param('int64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7422
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7423
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
  7424
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
  7425
    ## 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
  7426
    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
  7427
    ## 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
  7428
    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
  7429
    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
  7430
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7431
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
  7432
    ## 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
  7433
    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
  7434
    ## 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
  7435
    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
  7436
    ## 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
  7437
    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
  7438
    ## 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
  7439
    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
  7440
                   '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
  7441
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7442
                   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
  7443
    ## 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
  7444
    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
  7445
                   '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
  7446
                   [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
  7447
                   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
  7448
    ## 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
  7449
    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
  7450
                   '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
  7451
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7452
                   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
  7453
    ## 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
  7454
    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
  7455
                   '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
  7456
                   [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
  7457
                   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
  7458
    ## 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
  7459
    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
  7460
                   '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
  7461
                   [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
  7462
    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
  7463
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7464
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
  7465
    ## 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
  7466
    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
  7467
    ## 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
  7468
    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
  7469
    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
  7470
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7471
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
  7472
    ## 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
  7473
    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
  7474
    ## 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
  7475
    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
  7476
    ## 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
  7477
    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
  7478
    ## 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
  7479
    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
  7480
                   '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
  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
                   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
  7483
    ## 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
  7484
    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
  7485
                   '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
  7486
                   [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
  7487
                   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
  7488
    ## 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
  7489
    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
  7490
                   '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
  7491
                   [], 
355d6562399e Modular 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
                   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
  7493
    ## 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
  7494
    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
  7495
                   '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
  7496
                   [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
  7497
                   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
  7498
    ## 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
  7499
    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
  7500
                   '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
  7501
                   [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
  7502
    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
  7503
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7504
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
  7505
    ## 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
  7506
    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
  7507
    ## 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
  7508
    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
  7509
    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
  7510
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7511
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
  7512
    ## 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
  7513
    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
  7514
    ## 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
  7515
    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
  7516
    ## 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
  7517
    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
  7518
    ## 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
  7519
    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
  7520
                   '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
  7521
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7522
                   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
  7523
    ## 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
  7524
    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
  7525
                   '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
  7526
                   [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
  7527
                   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
  7528
    ## 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
  7529
    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
  7530
                   '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
  7531
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7532
                   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
  7533
    ## 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
  7534
    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
  7535
                   '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
  7536
                   [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
  7537
                   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
  7538
    ## 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
  7539
    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
  7540
                   '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
  7541
                   [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
  7542
    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
  7543
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7544
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
  7545
    ## 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
  7546
    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
  7547
    ## 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
  7548
    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
  7549
    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
  7550
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7551
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
  7552
    ## 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
  7553
    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
  7554
    ## 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
  7555
    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
  7556
    ## 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
  7557
    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
  7558
    ## 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
  7559
    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
  7560
                   '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
  7561
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7562
                   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
  7563
    ## 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
  7564
    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
  7565
                   '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
  7566
                   [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
  7567
                   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
  7568
    ## 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
  7569
    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
  7570
                   '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
  7571
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7572
                   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
  7573
    ## 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
  7574
    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
  7575
                   '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
  7576
                   [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
  7577
                   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
  7578
    ## 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
  7579
    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
  7580
                   '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
  7581
                   [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
  7582
    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
  7583
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
  7584
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
  7585
    ## 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
  7586
    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
  7587
    ## 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
  7588
    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
  7589
    ## 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
  7590
    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
  7591
                   '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
  7592
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7593
                   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
  7594
    ## 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
  7595
    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
  7596
                   '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
  7597
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7598
                   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
  7599
    ## 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
  7600
    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
  7601
                   '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
  7602
                   [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
  7603
    ## 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
  7604
    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
  7605
                   '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
  7606
                   [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
  7607
                   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
  7608
    ## 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
  7609
    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
  7610
                   '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
  7611
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7612
                   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
  7613
    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
  7614
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7615
def register_Ns3LogNormalRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7616
    ## 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
  7617
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7618
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7619
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7620
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7621
    ## 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
  7622
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7623
    ## 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
  7624
    cls.add_method('GetMu', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7625
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7626
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7627
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7628
    ## 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
  7629
    cls.add_method('GetSigma', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7630
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7631
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7632
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7633
    ## 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
  7634
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7635
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7636
                   [param('double', 'mu'), param('double', 'sigma')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7637
    ## 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
  7638
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7639
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7640
                   [param('uint32_t', 'mu'), param('uint32_t', 'sigma')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7641
    ## 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
  7642
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7643
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7644
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7645
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7646
    ## 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
  7647
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7648
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7649
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7650
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7651
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  7652
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7653
def register_Ns3Mac16AddressChecker_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7654
    ## mac16-address.h (module 'network'): ns3::Mac16AddressChecker::Mac16AddressChecker() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7655
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7656
    ## 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
  7657
    cls.add_constructor([param('ns3::Mac16AddressChecker const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7658
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7659
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7660
def register_Ns3Mac16AddressValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7661
    ## mac16-address.h (module 'network'): ns3::Mac16AddressValue::Mac16AddressValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7662
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7663
    ## 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
  7664
    cls.add_constructor([param('ns3::Mac16AddressValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7665
    ## 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
  7666
    cls.add_constructor([param('ns3::Mac16Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7667
    ## 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
  7668
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7669
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7670
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7671
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7672
    ## 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
  7673
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7674
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7675
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7676
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7677
    ## 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
  7678
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7679
                   'ns3::Mac16Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7680
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7681
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7682
    ## 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
  7683
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7684
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7685
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7686
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7687
    ## 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
  7688
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7689
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7690
                   [param('ns3::Mac16Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7691
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7692
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
  7693
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
  7694
    ## 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
  7695
    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
  7696
    ## 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
  7697
    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
  7698
    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
  7699
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7700
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
  7701
    ## 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
  7702
    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
  7703
    ## 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
  7704
    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
  7705
    ## 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
  7706
    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
  7707
    ## 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
  7708
    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
  7709
                   '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
  7710
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7711
                   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
  7712
    ## 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
  7713
    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
  7714
                   '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
  7715
                   [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
  7716
                   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
  7717
    ## 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
  7718
    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
  7719
                   '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
  7720
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  7721
                   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
  7722
    ## 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
  7723
    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
  7724
                   '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
  7725
                   [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
  7726
                   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
  7727
    ## 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
  7728
    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
  7729
                   '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
  7730
                   [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
  7731
    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
  7732
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7733
def register_Ns3Mac64AddressChecker_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7734
    ## mac64-address.h (module 'network'): ns3::Mac64AddressChecker::Mac64AddressChecker() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7735
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7736
    ## 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
  7737
    cls.add_constructor([param('ns3::Mac64AddressChecker const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7738
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7739
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7740
def register_Ns3Mac64AddressValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7741
    ## mac64-address.h (module 'network'): ns3::Mac64AddressValue::Mac64AddressValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7742
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7743
    ## 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
  7744
    cls.add_constructor([param('ns3::Mac64AddressValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7745
    ## 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
  7746
    cls.add_constructor([param('ns3::Mac64Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7747
    ## 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
  7748
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7749
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7750
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7751
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7752
    ## 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
  7753
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7754
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7755
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7756
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7757
    ## 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
  7758
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7759
                   'ns3::Mac64Address', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7760
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7761
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7762
    ## 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
  7763
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7764
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7765
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7766
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7767
    ## 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
  7768
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7769
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7770
                   [param('ns3::Mac64Address const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7771
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7772
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7773
def register_Ns3MinMaxAvgTotalCalculator__Double_methods(root_module, cls):
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7774
    ## 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
  7775
    cls.add_constructor([param('ns3::MinMaxAvgTotalCalculator< double > const &', 'arg0')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7776
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<double>::MinMaxAvgTotalCalculator() [constructor]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7777
    cls.add_constructor([])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7778
    ## 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
  7779
    cls.add_method('Output', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7780
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7781
                   [param('ns3::DataOutputCallback &', 'callback')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7782
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7783
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::Reset() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7784
    cls.add_method('Reset', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7785
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7786
                   [])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7787
    ## 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
  7788
    cls.add_method('Update', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7789
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7790
                   [param('double const', 'i')])
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7791
    ## 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
  7792
    cls.add_method('getCount', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7793
                   'long int', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7794
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7795
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7796
    ## 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
  7797
    cls.add_method('getMax', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7798
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7799
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7800
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7801
    ## 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
  7802
    cls.add_method('getMean', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7803
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7804
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7805
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7806
    ## 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
  7807
    cls.add_method('getMin', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7808
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7809
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7810
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7811
    ## 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
  7812
    cls.add_method('getSqrSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7813
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7814
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7815
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7816
    ## 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
  7817
    cls.add_method('getStddev', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7818
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7819
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7820
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7821
    ## 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
  7822
    cls.add_method('getSum', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7823
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7824
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7825
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7826
    ## 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
  7827
    cls.add_method('getVariance', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7828
                   'double', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7829
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7830
                   is_const=True, is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7831
    ## basic-data-calculators.h (module 'stats'): void ns3::MinMaxAvgTotalCalculator<double>::DoDispose() [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7832
    cls.add_method('DoDispose', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7833
                   'void', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7834
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7835
                   visibility='protected', is_virtual=True)
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7836
    return
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  7837
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7838
def register_Ns3MinMaxAvgTotalCalculator__Unsigned_int_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7839
    ## 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
  7840
    cls.add_constructor([param('ns3::MinMaxAvgTotalCalculator< unsigned int > const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7841
    ## basic-data-calculators.h (module 'stats'): ns3::MinMaxAvgTotalCalculator<unsigned int>::MinMaxAvgTotalCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7842
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7843
    ## 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
  7844
    cls.add_method('Output', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7845
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7846
                   [param('ns3::DataOutputCallback &', 'callback')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7847
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7848
    ## 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
  7849
    cls.add_method('Reset', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7850
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7851
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7852
    ## 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
  7853
    cls.add_method('Update', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7854
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7855
                   [param('unsigned int const', 'i')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7856
    ## 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
  7857
    cls.add_method('getCount', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7858
                   'long int', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7859
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7860
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7861
    ## 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
  7862
    cls.add_method('getMax', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7863
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7864
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7865
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7866
    ## 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
  7867
    cls.add_method('getMean', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7868
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7869
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7870
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7871
    ## 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
  7872
    cls.add_method('getMin', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7873
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7874
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7875
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7876
    ## 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
  7877
    cls.add_method('getSqrSum', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7878
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7879
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7880
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7881
    ## 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
  7882
    cls.add_method('getStddev', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7883
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7884
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7885
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7886
    ## 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
  7887
    cls.add_method('getSum', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7888
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7889
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7890
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7891
    ## 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
  7892
    cls.add_method('getVariance', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7893
                   'double', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7894
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7895
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7896
    ## 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
  7897
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7898
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7899
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7900
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7901
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7902
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
  7903
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
  7904
    ## 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
  7905
    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
  7906
    ## 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
  7907
    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
  7908
    ## 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
  7909
    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
  7910
                   '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
  7911
                   [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
  7912
                   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
  7913
    ## 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
  7914
    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
  7915
                   '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
  7916
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7917
                   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
  7918
    ## 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
  7919
    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
  7920
                   '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
  7921
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7922
                   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
  7923
    ## 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
  7924
    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
  7925
                   '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
  7926
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7927
                   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
  7928
    ## 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
  7929
    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
  7930
                   '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
  7931
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7932
                   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
  7933
    ## 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
  7934
    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
  7935
                   '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
  7936
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7937
                   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
  7938
    ## 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
  7939
    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
  7940
                   '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
  7941
                   [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
  7942
                   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
  7943
    ## 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
  7944
    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
  7945
                   '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
  7946
                   [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
  7947
                   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
  7948
    ## 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
  7949
    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
  7950
                   '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
  7951
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7952
                   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
  7953
    ## 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
  7954
    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
  7955
                   '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
  7956
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7957
                   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
  7958
    ## 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
  7959
    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
  7960
                   '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
  7961
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7962
                   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
  7963
    ## 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
  7964
    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
  7965
                   '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
  7966
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7967
                   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
  7968
    ## 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
  7969
    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
  7970
                   '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
  7971
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7972
                   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
  7973
    ## 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
  7974
    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
  7975
                   '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
  7976
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7977
                   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
  7978
    ## 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
  7979
    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
  7980
                   '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
  7981
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7982
                   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
  7983
    ## 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
  7984
    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
  7985
                   '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
  7986
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7987
                   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
  7988
    ## 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
  7989
    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
  7990
                   '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
  7991
                   [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
  7992
                   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
  7993
    ## 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
  7994
    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
  7995
                   '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
  7996
                   [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
  7997
                   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
  7998
    ## 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
  7999
    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
  8000
                   '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
  8001
                   [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
  8002
                   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
  8003
    ## 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
  8004
    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
  8005
                   '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
  8006
                   [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
  8007
                   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
  8008
    ## 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
  8009
    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
  8010
                   '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
  8011
                   [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
  8012
                   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
  8013
    ## 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
  8014
    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
  8015
                   '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
  8016
                   [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
  8017
                   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
  8018
    ## 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
  8019
    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
  8020
                   '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
  8021
                   [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
  8022
                   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
  8023
    ## 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
  8024
    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
  8025
                   '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
  8026
                   [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
  8027
                   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
  8028
    ## 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
  8029
    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
  8030
                   '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
  8031
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8032
                   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
  8033
    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
  8034
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
  8035
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
  8036
    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
  8037
    ## 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
  8038
    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
  8039
    ## 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
  8040
    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
  8041
    ## 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
  8042
    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
  8043
                   '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
  8044
                   [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
  8045
    ## 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
  8046
    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
  8047
                   '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
  8048
                   [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
  8049
                   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
  8050
    ## 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
  8051
    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
  8052
                   '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
  8053
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8054
                   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
  8055
    ## 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
  8056
    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
  8057
                   '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
  8058
                   [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
  8059
    ## 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
  8060
    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
  8061
                   '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
  8062
                   [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
  8063
    ## 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
  8064
    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
  8065
                   '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
  8066
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8067
    ## 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
  8068
    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
  8069
                   '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
  8070
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8071
                   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
  8072
    ## 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
  8073
    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
  8074
                   '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
  8075
                   [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
  8076
                   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
  8077
    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
  8078
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
  8079
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
  8080
    ## 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
  8081
    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
  8082
    ## 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
  8083
    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
  8084
    ## 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
  8085
    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
  8086
    ## 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
  8087
    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
  8088
                   '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
  8089
                   [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
  8090
    ## 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
  8091
    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
  8092
                   '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
  8093
                   [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
  8094
    ## 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
  8095
    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
  8096
                   '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
  8097
                   [], 
355d6562399e Modular 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
                   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
  8099
    ## 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
  8100
    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
  8101
                   '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
  8102
                   [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
  8103
                   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
  8104
    ## 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
  8105
    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
  8106
                   '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
  8107
                   [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
  8108
                   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
  8109
    ## 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
  8110
    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
  8111
                   '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
  8112
                   [], 
355d6562399e Modular 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
                   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
  8114
    ## 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
  8115
    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
  8116
                   '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
  8117
                   [], 
355d6562399e Modular 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
                   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
  8119
    ## 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
  8120
    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
  8121
                   '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
  8122
                   [], 
355d6562399e Modular 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
                   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
  8124
    ## 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
  8125
    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
  8126
                   '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
  8127
                   [], 
355d6562399e Modular 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
                   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
  8129
    ## 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
  8130
    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
  8131
                   '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
  8132
                   [], 
355d6562399e Modular 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
                   is_static=True)
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8134
    ## 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
  8135
    cls.add_method('RegisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8136
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8137
                   [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
  8138
    ## 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
  8139
    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
  8140
                   '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
  8141
                   [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
  8142
    ## 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
  8143
    cls.add_method('UnregisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8144
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7090
diff changeset
  8145
                   [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
  8146
    ## 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
  8147
    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
  8148
                   '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
  8149
                   [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
  8150
    ## 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
  8151
    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
  8152
                   '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
  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
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  8155
    ## node.h (module 'network'): void ns3::Node::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  8156
    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
  8157
                   '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
  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
                   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
  8160
    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
  8161
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8162
def register_Ns3NormalRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8163
    ## 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
  8164
    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
  8165
    ## 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
  8166
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8167
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8168
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8169
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8170
    ## 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
  8171
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8172
    ## 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
  8173
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8174
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8175
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8176
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8177
    ## 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
  8178
    cls.add_method('GetVariance', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8179
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8180
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8181
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8182
    ## 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
  8183
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8184
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8185
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8186
                   is_const=True)
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  8187
    ## 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
  8188
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8189
                   'double', 
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9000
diff changeset
  8190
                   [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
  8191
    ## 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
  8192
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8193
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8194
                   [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
  8195
    ## 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
  8196
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8197
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8198
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8199
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8200
    ## 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
  8201
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8202
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8203
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8204
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8205
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8206
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
  8207
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
  8208
    ## 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
  8209
    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
  8210
    ## 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
  8211
    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
  8212
    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
  8213
355d6562399e Modular 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
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
  8215
    ## 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
  8216
    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
  8217
    ## 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
  8218
    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
  8219
    ## 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
  8220
    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
  8221
    ## 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
  8222
    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
  8223
                   '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
  8224
                   [], 
355d6562399e Modular 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
                   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
  8226
    ## 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
  8227
    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
  8228
                   '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
  8229
                   [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
  8230
                   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
  8231
    ## 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
  8232
    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
  8233
                   '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
  8234
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8235
                   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
  8236
    ## 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
  8237
    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
  8238
                   '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
  8239
                   [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
  8240
                   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
  8241
    ## 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
  8242
    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
  8243
                   '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
  8244
                   [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
  8245
    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
  8246
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8247
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
  8248
    ## 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
  8249
    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
  8250
    ## 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
  8251
    cls.add_constructor([])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8252
    ## 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
  8253
    cls.add_method('AssignStreams', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8254
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8255
                   [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
  8256
    ## 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
  8257
    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
  8258
                   '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
  8259
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8260
                   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
  8261
    ## 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
  8262
    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
  8263
                   '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
  8264
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8265
                   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
  8266
    ## 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
  8267
    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
  8268
                   '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
  8269
                   [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
  8270
    ## 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
  8271
    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
  8272
                   '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
  8273
                   [], 
355d6562399e Modular 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
                   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
  8275
    ## 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
  8276
    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
  8277
                   '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
  8278
                   [], 
355d6562399e Modular 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
                   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
  8280
    ## 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
  8281
    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
  8282
                   '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
  8283
                   [], 
355d6562399e Modular 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
                   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
  8285
    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
  8286
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
  8287
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
  8288
    ## 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
  8289
    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
  8290
    ## 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
  8291
    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
  8292
    ## 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
  8293
    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
  8294
    ## 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
  8295
    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
  8296
                   '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
  8297
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8298
    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
  8299
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8300
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
  8301
    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
  8302
    ## 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
  8303
    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
  8304
    ## 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
  8305
    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
  8306
    ## 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
  8307
    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
  8308
    ## 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
  8309
    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
  8310
    ## 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
  8311
    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
  8312
    ## 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
  8313
    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
  8314
                   '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
  8315
                   [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
  8316
    ## 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
  8317
    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
  8318
                   '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
  8319
                   [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
  8320
                   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
  8321
    ## 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
  8322
    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
  8323
                   '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
  8324
                   [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
  8325
    ## 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
  8326
    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
  8327
                   '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
  8328
                   [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
  8329
                   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
  8330
    ## 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
  8331
    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
  8332
                   '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
  8333
                   [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
  8334
    ## 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
  8335
    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
  8336
                   '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
  8337
                   [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
  8338
    ## 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
  8339
    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
  8340
                   '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
  8341
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8342
                   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
  8343
    ## 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
  8344
    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
  8345
                   '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
  8346
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8347
                   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
  8348
    ## 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
  8349
    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
  8350
                   '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
  8351
                   [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
  8352
                   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
  8353
    ## 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
  8354
    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
  8355
                   '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
  8356
                   [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
  8357
                   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
  8358
    ## 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
  8359
    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
  8360
                   '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
  8361
                   [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
  8362
                   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
  8363
    ## 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
  8364
    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
  8365
                   '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
  8366
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8367
                   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
  8368
    ## 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
  8369
    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
  8370
                   '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
  8371
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8372
                   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
  8373
    ## 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
  8374
    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
  8375
                   '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
  8376
                   [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
  8377
                   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
  8378
    ## 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
  8379
    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
  8380
                   '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
  8381
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8382
                   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
  8383
    ## 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
  8384
    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
  8385
                   '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
  8386
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8387
                   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
  8388
    ## 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
  8389
    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
  8390
                   '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
  8391
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8392
                   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
  8393
    ## 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
  8394
    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
  8395
                   '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
  8396
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8397
                   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
  8398
    ## 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
  8399
    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
  8400
                   '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
  8401
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8402
                   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
  8403
    ## 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
  8404
    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
  8405
                   '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
  8406
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8407
                   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
  8408
    ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8409
    cls.add_method('PeekData', 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8410
                   'uint8_t 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
  8411
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8412
                   deprecated=True, 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
  8413
    ## 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
  8414
    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
  8415
                   '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
  8416
                   [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
  8417
                   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
  8418
    ## 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
  8419
    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
  8420
                   '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
  8421
                   [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
  8422
                   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
  8423
    ## 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
  8424
    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
  8425
                   '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
  8426
                   [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
  8427
    ## 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
  8428
    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
  8429
                   '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
  8430
                   [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
  8431
                   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
  8432
    ## 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
  8433
    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
  8434
                   '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
  8435
                   [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
  8436
                   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
  8437
    ## 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
  8438
    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
  8439
                   '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
  8440
                   [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
  8441
                   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
  8442
    ## 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
  8443
    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
  8444
                   '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
  8445
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8446
    ## 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
  8447
    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
  8448
                   '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
  8449
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8450
    ## 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
  8451
    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
  8452
                   '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
  8453
                   [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
  8454
    ## 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
  8455
    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
  8456
                   '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
  8457
                   [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
  8458
    ## 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
  8459
    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
  8460
                   '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
  8461
                   [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
  8462
    ## 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
  8463
    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
  8464
                   '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
  8465
                   [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
  8466
    ## 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
  8467
    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
  8468
                   '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
  8469
                   [param('ns3::Trailer &', 'trailer')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  8470
    ## 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
  8471
    cls.add_method('ReplacePacketTag', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  8472
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  8473
                   [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
  8474
    ## 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
  8475
    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
  8476
                   '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
  8477
                   [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
  8478
                   is_const=True)
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  8479
    ## 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
  8480
    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
  8481
                   'void', 
10795
29506f2221e2 update bindings
Tom Henderson <tomh@tomh.org>
parents: 10631
diff changeset
  8482
                   [param('ns3::Ptr< ns3::NixVector >', 'nixVector')])
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
  8483
    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
  8484
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
  8485
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
  8486
    ## 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
  8487
    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
  8488
    ## 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
  8489
    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
  8490
    ## 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
  8491
    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
  8492
                   '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
  8493
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8494
                   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
  8495
    ## 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
  8496
    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
  8497
                   '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
  8498
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8499
                   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
  8500
    ## 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
  8501
    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
  8502
                   '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
  8503
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8504
                   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
  8505
    ## 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
  8506
    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
  8507
                   '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
  8508
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8509
                   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
  8510
    ## 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
  8511
    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
  8512
                   '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
  8513
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8514
                   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
  8515
    ## 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
  8516
    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
  8517
                   '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
  8518
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8519
                   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
  8520
    ## 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
  8521
    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
  8522
                   '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
  8523
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  8524
                   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
  8525
    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
  8526
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8527
def register_Ns3PacketSizeMinMaxAvgTotalCalculator_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8528
    ## 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
  8529
    cls.add_constructor([param('ns3::PacketSizeMinMaxAvgTotalCalculator const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8530
    ## packet-data-calculators.h (module 'network'): ns3::PacketSizeMinMaxAvgTotalCalculator::PacketSizeMinMaxAvgTotalCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8531
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8532
    ## 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
  8533
    cls.add_method('FrameUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8534
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8535
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'realto')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8536
    ## 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
  8537
    cls.add_method('PacketUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8538
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8539
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8540
    ## packet-data-calculators.h (module 'network'): void ns3::PacketSizeMinMaxAvgTotalCalculator::DoDispose() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8541
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8542
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8543
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8544
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8545
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  8546
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
  8547
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
  8548
    ## 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
  8549
    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
  8550
    ## 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
  8551
    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
  8552
    ## 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
  8553
    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
  8554
                   '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
  8555
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8557
    ## 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
  8558
    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
  8559
                   '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
  8560
                   [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
  8561
                   is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8562
    ## 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
  8563
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8564
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8565
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
  8566
                   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
  8567
    ## 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
  8568
    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
  8569
                   '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
  8570
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8572
    ## 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
  8573
    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
  8574
                   '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
  8575
                   [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
  8576
                   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
  8577
    ## 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
  8578
    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
  8579
                   '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
  8580
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8582
    ## 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
  8583
    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
  8584
                   '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
  8585
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8587
    ## 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
  8588
    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
  8589
                   '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
  8590
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8592
    ## 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
  8593
    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
  8594
                   '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
  8595
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8597
    ## 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
  8598
    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
  8599
                   '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
  8600
                   [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
  8601
                   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
  8602
    ## 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
  8603
    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
  8604
                   '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
  8605
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8607
    ## 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
  8608
    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
  8609
                   '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
  8610
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8612
    ## 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
  8613
    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
  8614
                   '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
  8615
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8617
    ## 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
  8618
    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
  8619
                   '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
  8620
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8622
    ## 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
  8623
    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
  8624
                   '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
  8625
                   [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
  8626
                   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
  8627
    ## 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
  8628
    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
  8629
                   '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
  8630
                   [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
  8631
                   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
  8632
    ## 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
  8633
    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
  8634
                   '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
  8635
                   [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
  8636
                   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
  8637
    ## 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
  8638
    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
  8639
                   '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
  8640
                   [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
  8641
                   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
  8642
    ## 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
  8643
    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
  8644
                   '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
  8645
                   [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
  8646
                   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
  8647
    ## 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
  8648
    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
  8649
                   '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
  8650
                   [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
  8651
    ## 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
  8652
    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
  8653
                   '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
  8654
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8656
    ## 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
  8657
    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
  8658
                   '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
  8659
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8660
                   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
  8661
    ## 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
  8662
    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
  8663
                   '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
  8664
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8666
    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
  8667
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8668
def register_Ns3PacketSocketClient_methods(root_module, cls):
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8669
    ## 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
  8670
    cls.add_constructor([param('ns3::PacketSocketClient const &', 'arg0')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8671
    ## packet-socket-client.h (module 'network'): ns3::PacketSocketClient::PacketSocketClient() [constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8672
    cls.add_constructor([])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8673
    ## 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
  8674
    cls.add_method('GetTypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8675
                   'ns3::TypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8676
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8677
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8678
    ## 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
  8679
    cls.add_method('SetRemote', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8680
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8681
                   [param('ns3::PacketSocketAddress', 'addr')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8682
    ## 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
  8683
    cls.add_method('DoDispose', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8684
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8685
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8686
                   visibility='protected', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8687
    ## 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
  8688
    cls.add_method('StartApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8689
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8690
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8691
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8692
    ## 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
  8693
    cls.add_method('StopApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8694
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8695
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8696
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8697
    return
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8698
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
  8699
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
  8700
    ## 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
  8701
    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
  8702
    ## 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
  8703
    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
  8704
    ## 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
  8705
    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
  8706
                   '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
  8707
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8708
                   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
  8709
    ## 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
  8710
    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
  8711
                   '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
  8712
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8713
                   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
  8714
    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
  8715
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8716
def register_Ns3PacketSocketServer_methods(root_module, cls):
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8717
    ## 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
  8718
    cls.add_constructor([param('ns3::PacketSocketServer const &', 'arg0')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8719
    ## packet-socket-server.h (module 'network'): ns3::PacketSocketServer::PacketSocketServer() [constructor]
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8720
    cls.add_constructor([])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8721
    ## 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
  8722
    cls.add_method('GetTypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8723
                   'ns3::TypeId', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8724
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8725
                   is_static=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8726
    ## 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
  8727
    cls.add_method('SetLocal', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8728
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8729
                   [param('ns3::PacketSocketAddress', 'addr')])
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8730
    ## 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
  8731
    cls.add_method('DoDispose', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8732
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8733
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8734
                   visibility='protected', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8735
    ## 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
  8736
    cls.add_method('StartApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8737
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8738
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8739
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8740
    ## 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
  8741
    cls.add_method('StopApplication', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8742
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8743
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8744
                   visibility='private', is_virtual=True)
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8745
    return
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
  8746
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8747
def register_Ns3ParetoRandomVariable_methods(root_module, cls):
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8748
    ## 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
  8749
    cls.add_method('GetTypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8750
                   'ns3::TypeId', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8751
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8752
                   is_static=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8753
    ## 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
  8754
    cls.add_constructor([])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8755
    ## 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
  8756
    cls.add_method('GetMean', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8757
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8758
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8759
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8760
    ## 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
  8761
    cls.add_method('GetShape', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8762
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8763
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8764
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8765
    ## 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
  8766
    cls.add_method('GetBound', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8767
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8768
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8769
                   is_const=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8770
    ## 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
  8771
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8772
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8773
                   [param('double', 'mean'), param('double', 'shape'), param('double', 'bound')])
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8774
    ## 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
  8775
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8776
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8777
                   [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
  8778
    ## 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
  8779
    cls.add_method('GetValue', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8780
                   'double', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8781
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8782
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8783
    ## 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
  8784
    cls.add_method('GetInteger', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8785
                   'uint32_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8786
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8787
                   is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8788
    return
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  8789
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
  8790
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
  8791
    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
  8792
    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
  8793
    ## 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
  8794
    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
  8795
    ## 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
  8796
    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
  8797
    ## 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
  8798
    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
  8799
                   '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
  8800
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8802
    ## 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
  8803
    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
  8804
                   '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
  8805
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  8807
    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
  8808
                   '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
  8809
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8811
    ## 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
  8812
    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
  8813
                   '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
  8814
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  8816
    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
  8817
                   '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
  8818
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8820
    ## 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
  8821
    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
  8822
                   '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
  8823
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  8825
    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
  8826
                   '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
  8827
                   [], 
0fb01581be59 Modular bindings: application module must include 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_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
  8829
    ## 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
  8830
    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
  8831
                   '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
  8832
                   [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
  8833
    ## 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
  8834
    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
  8835
                   '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
  8836
                   [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
  8837
    ## 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
  8838
    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
  8839
                   '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
  8840
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8842
    ## 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
  8843
    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
  8844
                   '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
  8845
                   [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
  8846
    ## 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
  8847
    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
  8848
                   '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
  8849
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  8851
    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
  8852
                   '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
  8853
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  8855
    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
  8856
                   '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
  8857
                   [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
  8858
    ## 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
  8859
    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
  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
                   [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
  8862
    ## 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
  8863
    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
  8864
                   '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
  8865
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8866
                   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
  8867
    ## 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
  8868
    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
  8869
                   '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
  8870
                   [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
  8871
    ## 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
  8872
    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
  8873
                   '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
  8874
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8875
                   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
  8876
    ## 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
  8877
    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
  8878
                   '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
  8879
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8880
                   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
  8881
    ## 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
  8882
    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
  8883
                   '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
  8884
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8885
    ## 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
  8886
    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
  8887
                   '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
  8888
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8889
                   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
  8890
    ## 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
  8891
    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
  8892
                   '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
  8893
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8894
    ## 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
  8895
    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
  8896
                   '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
  8897
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8899
    ## 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
  8900
    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
  8901
                   '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
  8902
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  8904
    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
  8905
                   '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
  8906
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8908
    ## 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
  8909
    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
  8910
                   '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
  8911
                   [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
  8912
    ## 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
  8913
    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
  8914
                   '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
  8915
                   [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
  8916
    ## 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
  8917
    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
  8918
                   '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
  8919
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8920
                   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
  8921
    ## 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
  8922
    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
  8923
                   '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
  8924
                   [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
  8925
    ## 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
  8926
    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
  8927
                   '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
  8928
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8929
    ## 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
  8930
    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
  8931
                   '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
  8932
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8933
    ## 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
  8934
    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
  8935
                   '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
  8936
                   [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
  8937
    ## 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
  8938
    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
  8939
                   '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
  8940
                   [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
  8941
    ## 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
  8942
    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
  8943
                   '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
  8944
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8945
                   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
  8946
    ## 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
  8947
    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
  8948
                   '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
  8949
                   [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
  8950
                   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
  8951
    ## 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
  8952
    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
  8953
                   '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
  8954
                   [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
  8955
                   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
  8956
    ## 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
  8957
    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
  8958
                   '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
  8959
                   [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
  8960
                   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
  8961
    ## 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
  8962
    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
  8963
                   '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
  8964
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8965
    ## 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
  8966
    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
  8967
                   '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
  8968
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8969
                   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
  8970
    ## 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
  8971
    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
  8972
                   '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
  8973
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8974
    ## 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
  8975
    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
  8976
                   '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
  8977
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8978
                   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
  8979
    ## 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
  8980
    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
  8981
                   '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
  8982
                   [])
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
  8983
    ## 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
  8984
    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
  8985
                   '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
  8986
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8988
    ## 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
  8989
    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
  8990
                   '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
  8991
                   [])
0fb01581be59 Modular bindings: application module must include 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'): 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
  8993
    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
  8994
                   '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
  8995
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  8997
    ## 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
  8998
    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
  8999
                   '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
  9000
                   [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
  9001
    ## 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
  9002
    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
  9003
                   '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
  9004
                   [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
  9005
    ## 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
  9006
    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
  9007
                   '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
  9008
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9010
    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
  9011
                   '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
  9012
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9014
    ## 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
  9015
    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
  9016
                   '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
  9017
                   [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
  9018
    ## 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
  9019
    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
  9020
                   '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
  9021
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9023
    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
  9024
                   '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
  9025
                   [])
0fb01581be59 Modular bindings: application module must include 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'): 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
  9027
    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
  9028
                   '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
  9029
                   [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
  9030
    ## 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
  9031
    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
  9032
                   '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
  9033
                   [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
  9034
    ## 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
  9035
    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
  9036
                   '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
  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'): 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
  9040
    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
  9041
                   '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('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
  9043
                   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
  9044
    ## 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
  9045
    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
  9046
                   '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
  9047
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9049
    ## 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
  9050
    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
  9051
                   '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
  9052
                   [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
  9053
                   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
  9054
    ## 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
  9055
    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
  9056
                   '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
  9057
                   [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
  9058
                   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
  9059
    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
  9060
0fb01581be59 Modular bindings: application module must include 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
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
  9062
    ## 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
  9063
    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
  9064
    ## 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
  9065
    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
  9066
    ## 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
  9067
    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
  9068
                   '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
  9069
                   [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
  9070
                   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
  9071
    ## 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
  9072
    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
  9073
                   '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
  9074
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9076
    ## 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
  9077
    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
  9078
                   '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
  9079
                   [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
  9080
                   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
  9081
    ## 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
  9082
    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
  9083
                   '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
  9084
                   [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
  9085
                   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
  9086
    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
  9087
0fb01581be59 Modular bindings: application module must include 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
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
  9089
    ## 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
  9090
    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
  9091
    ## 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
  9092
    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
  9093
    ## 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
  9094
    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
  9095
                   '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
  9096
                   [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
  9097
                   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
  9098
    ## 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
  9099
    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
  9100
                   '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
  9101
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9103
    ## 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
  9104
    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
  9105
                   '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
  9106
                   [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
  9107
                   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
  9108
    ## 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
  9109
    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
  9110
                   '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
  9111
                   [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
  9112
                   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
  9113
    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
  9114
0fb01581be59 Modular bindings: application module must include 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
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
  9116
    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
  9117
    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
  9118
    ## 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
  9119
    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
  9120
    ## 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
  9121
    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
  9122
    ## 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
  9123
    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
  9124
                   '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
  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'): 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
  9127
    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
  9128
                   '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
  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
                   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
  9131
    ## 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
  9132
    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
  9133
                   '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
  9134
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9136
    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
  9137
                   '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
  9138
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9140
    ## 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
  9141
    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
  9142
                   '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
  9143
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9145
    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
  9146
                   '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
  9147
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9149
    ## 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
  9150
    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
  9151
                   '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
  9152
                   [])
0fb01581be59 Modular bindings: application module must include 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'): 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
  9154
    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
  9155
                   '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
  9156
                   [], 
0fb01581be59 Modular bindings: application module must include 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'): 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
  9159
    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
  9160
                   '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
  9161
                   [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
  9162
    ## 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
  9163
    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
  9164
                   '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
  9165
                   [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
  9166
    ## 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
  9167
    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
  9168
                   '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
  9169
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9171
    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
  9172
                   '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
  9173
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9175
    ## 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
  9176
    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
  9177
                   '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
  9178
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9180
    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
  9181
                   '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
  9182
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9184
    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
  9185
                   '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
  9186
                   [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
  9187
    ## 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
  9188
    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
  9189
                   '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
  9190
                   [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
  9191
    ## 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
  9192
    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
  9193
                   '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
  9194
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9196
    ## 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
  9197
    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
  9198
                   '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
  9199
                   [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
  9200
    ## 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
  9201
    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
  9202
                   '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
  9203
                   [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
  9204
                   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
  9205
    ## 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
  9206
    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
  9207
                   '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
  9208
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9210
    ## 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
  9211
    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
  9212
                   '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
  9213
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9215
    ## 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
  9216
    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
  9217
                   '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
  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
                   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
  9220
    ## 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
  9221
    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
  9222
                   '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
  9223
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9225
    ## 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
  9226
    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
  9227
                   '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
  9228
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9230
    ## 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
  9231
    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
  9232
                   '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
  9233
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9235
    ## 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
  9236
    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
  9237
                   '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
  9238
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9240
    ## 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
  9241
    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
  9242
                   '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
  9243
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9245
    ## 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
  9246
    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
  9247
                   '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
  9248
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9250
    ## 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
  9251
    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
  9252
                   '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
  9253
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9255
    ## 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
  9256
    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
  9257
                   '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
  9258
                   [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
  9259
                   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
  9260
    ## 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
  9261
    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
  9262
                   '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
  9263
                   [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
  9264
                   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
  9265
    ## 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
  9266
    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
  9267
                   '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
  9268
                   [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
  9269
                   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
  9270
    ## 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
  9271
    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
  9272
                   '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
  9273
                   [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
  9274
    ## 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
  9275
    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
  9276
                   '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
  9277
                   [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
  9278
    ## 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
  9279
    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
  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('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
  9282
    ## 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
  9283
    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
  9284
                   '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
  9285
                   [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
  9286
    ## 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
  9287
    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
  9288
                   '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
  9289
                   [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
  9290
    ## 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
  9291
    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
  9292
                   '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
  9293
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9295
    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
  9296
                   '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
  9297
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9299
    ## 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
  9300
    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
  9301
                   '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
  9302
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9304
    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
  9305
                   '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
  9306
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9308
    ## 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
  9309
    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
  9310
                   '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
  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
    ## 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
  9313
    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
  9314
                   '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
  9315
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9317
    ## 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
  9318
    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
  9319
                   '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
  9320
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9322
    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
  9323
                   '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
  9324
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9326
    ## 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
  9327
    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
  9328
                   '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
  9329
                   [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
  9330
    ## 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
  9331
    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
  9332
                   '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
  9333
                   [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
  9334
    ## 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
  9335
    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
  9336
                   '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
  9337
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9339
    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
  9340
                   '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
  9341
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9343
    ## 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
  9344
    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
  9345
                   '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
  9346
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9348
    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
  9349
                   '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
  9350
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9352
    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
  9353
                   '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
  9354
                   [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
  9355
    ## 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
  9356
    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
  9357
                   '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
  9358
                   [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
  9359
    ## 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
  9360
    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
  9361
                   '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
  9362
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9364
    ## 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
  9365
    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
  9366
                   '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
  9367
                   [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
  9368
                   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
  9369
    ## 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
  9370
    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
  9371
                   '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
  9372
                   [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
  9373
                   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
  9374
    ## 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
  9375
    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
  9376
                   '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
  9377
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9379
    ## 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
  9380
    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
  9381
                   '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
  9382
                   [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
  9383
                   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
  9384
    ## 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
  9385
    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
  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::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
  9388
                   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
  9389
    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
  9390
0fb01581be59 Modular bindings: application module must include 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
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
  9392
    ## 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
  9393
    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
  9394
    ## 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
  9395
    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
  9396
    ## 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
  9397
    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
  9398
                   '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
  9399
                   [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
  9400
                   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
  9401
    ## 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
  9402
    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
  9403
                   '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
  9404
                   [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
  9405
                   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
  9406
    ## 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
  9407
    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
  9408
                   '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
  9409
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9411
    ## 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
  9412
    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
  9413
                   '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
  9414
                   [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
  9415
                   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
  9416
    ## 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
  9417
    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
  9418
                   '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
  9419
                   [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
  9420
                   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
  9421
    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
  9422
0fb01581be59 Modular bindings: application module must include 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
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
  9424
    ## 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
  9425
    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
  9426
    ## 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
  9427
    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
  9428
    ## 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
  9429
    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
  9430
                   '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
  9431
                   [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
  9432
                   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
  9433
    ## 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
  9434
    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
  9435
                   '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
  9436
                   [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
  9437
                   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
  9438
    ## 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
  9439
    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
  9440
                   '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
  9441
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9443
    ## 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
  9444
    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
  9445
                   '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
  9446
                   [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
  9447
                   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
  9448
    ## 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
  9449
    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
  9450
                   '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
  9451
                   [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
  9452
                   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
  9453
    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
  9454
0fb01581be59 Modular bindings: application module must include 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
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
  9456
    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
  9457
    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
  9458
    ## 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
  9459
    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
  9460
    ## 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
  9461
    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
  9462
    ## 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
  9463
    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
  9464
                   '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
  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_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
  9467
    ## 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
  9468
    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
  9469
                   '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
  9470
                   [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
  9471
    ## 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
  9472
    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
  9473
                   '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
  9474
                   [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
  9475
    ## 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
  9476
    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
  9477
                   '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
  9478
                   [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
  9479
    ## 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
  9480
    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
  9481
                   '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
  9482
                   [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
  9483
    ## 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
  9484
    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
  9485
                   '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
  9486
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9488
    ## 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
  9489
    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
  9490
                   '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
  9491
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9493
    ## 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
  9494
    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
  9495
                   '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
  9496
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9498
    ## 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
  9499
    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
  9500
                   '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
  9501
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9503
    ## 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
  9504
    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
  9505
                   '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
  9506
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9508
    ## 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
  9509
    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
  9510
                   '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
  9511
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9513
    ## 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
  9514
    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
  9515
                   '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
  9516
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9518
    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
  9519
                   '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
  9520
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9522
    ## 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
  9523
    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
  9524
                   '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
  9525
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9527
    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
  9528
                   '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
  9529
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9531
    ## 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
  9532
    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
  9533
                   '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
  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'): 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
  9536
    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
  9537
                   '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
  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'): 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
  9541
    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
  9542
                   '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
  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'): 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
  9545
    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
  9546
                   '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
  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
                   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
  9549
    ## 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
  9550
    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
  9551
                   '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
  9552
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9554
    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
  9555
                   '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
  9556
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9558
    ## 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
  9559
    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
  9560
                   '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
  9561
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9563
    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
  9564
                   '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
  9565
                   [])
0fb01581be59 Modular bindings: application module must include 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'): 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
  9567
    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
  9568
                   '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
  9569
                   [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
  9570
    ## 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
  9571
    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
  9572
                   '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
  9573
                   [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
  9574
    ## 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
  9575
    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
  9576
                   '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
  9577
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9579
    ## 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
  9580
    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
  9581
                   '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
  9582
                   [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
  9583
                   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
  9584
    ## 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
  9585
    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
  9586
                   '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
  9587
                   [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
  9588
                   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
  9589
    ## 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
  9590
    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
  9591
                   '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
  9592
                   [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
  9593
    ## 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
  9594
    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
  9595
                   '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
  9596
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9598
    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
  9599
                   '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
  9600
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9602
    ## 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
  9603
    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
  9604
                   '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
  9605
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9607
    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
  9608
                   '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
  9609
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9611
    ## 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
  9612
    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
  9613
                   '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
  9614
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9616
    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
  9617
                   '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
  9618
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9620
    ## 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
  9621
    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
  9622
                   '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
  9623
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9625
    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
  9626
                   '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
  9627
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9629
    ## 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
  9630
    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
  9631
                   '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
  9632
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9634
    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
  9635
                   '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
  9636
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9638
    ## 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
  9639
    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
  9640
                   '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
  9641
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9643
    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
  9644
                   '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
  9645
                   [])
0fb01581be59 Modular bindings: application module must include 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
    ## 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
  9647
    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
  9648
                   '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
  9649
                   [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
  9650
    ## 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
  9651
    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
  9652
                   '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
  9653
                   [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
  9654
    ## 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
  9655
    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
  9656
                   '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
  9657
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9659
    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
  9660
0fb01581be59 Modular bindings: application module must include 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
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
  9662
    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
  9663
    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
  9664
    ## 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
  9665
    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
  9666
    ## 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
  9667
    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
  9668
    ## 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
  9669
    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
  9670
                   '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
  9671
                   [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
  9672
    ## 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
  9673
    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
  9674
                   '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
  9675
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9677
    ## 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
  9678
    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
  9679
                   '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
  9680
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9682
    ## 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
  9683
    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
  9684
                   '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
  9685
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9687
    ## 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
  9688
    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
  9689
                   '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
  9690
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9692
    ## 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
  9693
    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
  9694
                   '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
  9695
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9697
    ## 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
  9698
    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
  9699
                   '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
  9700
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9702
    ## 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
  9703
    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
  9704
                   '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
  9705
                   [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
  9706
                   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
  9707
    ## 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
  9708
    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
  9709
                   '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
  9710
                   [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
  9711
                   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
  9712
    ## 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
  9713
    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
  9714
                   '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
  9715
                   [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
  9716
                   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
  9717
    ## 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
  9718
    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
  9719
                   '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
  9720
                   [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
  9721
    ## 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
  9722
    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
  9723
                   '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
  9724
                   [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
  9725
    ## 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
  9726
    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
  9727
                   '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
  9728
                   [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
  9729
    ## 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
  9730
    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
  9731
                   '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
  9732
                   [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
  9733
    ## 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
  9734
    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
  9735
                   '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
  9736
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9738
    ## 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
  9739
    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
  9740
                   '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
  9741
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9743
    ## 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
  9744
    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
  9745
                   '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
  9746
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9748
    ## 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
  9749
    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
  9750
                   '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
  9751
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9753
    ## 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
  9754
    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
  9755
                   '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
  9756
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
  9758
    ## 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
  9759
    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
  9760
                   '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
  9761
                   [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
  9762
                   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
  9763
    ## 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
  9764
    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
  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('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
  9767
                   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
  9768
    ## 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
  9769
    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
  9770
                   '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
  9771
                   [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
  9772
                   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
  9773
    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
  9774
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
  9775
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
  9776
    ## 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
  9777
    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
  9778
    ## 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
  9779
    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
  9780
    ## 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
  9781
    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
  9782
                   '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
  9783
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9784
                   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
  9785
    ## 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
  9786
    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
  9787
                   '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
  9788
                   [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
  9789
    ## 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
  9790
    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
  9791
                   '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
  9792
                   [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
  9793
    ## 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
  9794
    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
  9795
                   '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
  9796
                   [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
  9797
    ## 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
  9798
    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
  9799
                   '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
  9800
                   [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
  9801
    ## 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
  9802
    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
  9803
                   '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
  9804
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9805
                   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
  9806
    ## 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
  9807
    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
  9808
                   '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
  9809
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9810
                   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
  9811
    ## 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
  9812
    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
  9813
                   '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
  9814
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9815
                   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
  9816
    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
  9817
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9818
def register_Ns3Probe_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9819
    ## 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
  9820
    cls.add_constructor([param('ns3::Probe const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9821
    ## probe.h (module 'stats'): ns3::Probe::Probe() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9822
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9823
    ## 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
  9824
    cls.add_method('ConnectByObject', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9825
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9826
                   [param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9827
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9828
    ## 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
  9829
    cls.add_method('ConnectByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9830
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9831
                   [param('std::string', 'path')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9832
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9833
    ## probe.h (module 'stats'): static ns3::TypeId ns3::Probe::GetTypeId() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9834
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9835
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9836
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9837
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9838
    ## probe.h (module 'stats'): bool ns3::Probe::IsEnabled() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9839
    cls.add_method('IsEnabled', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9840
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9841
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9842
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9843
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  9844
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
  9845
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
  9846
    ## 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
  9847
    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
  9848
    ## 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
  9849
    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
  9850
    ## 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
  9851
    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
  9852
                   '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
  9853
                   [param('ns3::Ptr< ns3::RadvdInterface >', 'routerInterface')])
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  9854
    ## 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
  9855
    cls.add_method('AssignStreams', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  9856
                   'int64_t', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8893
diff changeset
  9857
                   [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
  9858
    ## 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
  9859
    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
  9860
                   '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
  9861
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9862
                   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
  9863
    ## 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
  9864
    cls.add_static_attribute('MAX_RA_DELAY_TIME', 'uint32_t const', 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
  9865
    ## 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
  9866
    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
  9867
                   '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
  9868
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9869
                   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
  9870
    ## 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
  9871
    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
  9872
                   '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
  9873
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9874
                   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
  9875
    ## 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
  9876
    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
  9877
                   '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
  9878
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9879
                   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
  9880
    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
  9881
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9882
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
  9883
    ## 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
  9884
    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
  9885
    ## 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
  9886
    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
  9887
    ## 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
  9888
    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
  9889
    ## 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
  9890
    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
  9891
                   '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
  9892
                   [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
  9893
    ## 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
  9894
    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
  9895
                   '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
  9896
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9897
                   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
  9898
    ## 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
  9899
    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
  9900
                   '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
  9901
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9902
                   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
  9903
    ## 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
  9904
    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
  9905
                   '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
  9906
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9907
                   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
  9908
    ## 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
  9909
    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
  9910
                   '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
  9911
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9912
                   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
  9913
    ## 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
  9914
    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
  9915
                   '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
  9916
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9917
                   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
  9918
    ## 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
  9919
    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
  9920
                   '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
  9921
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9922
                   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
  9923
    ## 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
  9924
    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
  9925
                   '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
  9926
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9927
                   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
  9928
    ## 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
  9929
    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
  9930
                   '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
  9931
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9932
                   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
  9933
    ## 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
  9934
    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
  9935
                   '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
  9936
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9937
                   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
  9938
    ## 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
  9939
    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
  9940
                   '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
  9941
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9942
                   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
  9943
    ## 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
  9944
    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
  9945
                   '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
  9946
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9947
                   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
  9948
    ## 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
  9949
    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
  9950
                   '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
  9951
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9952
                   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
  9953
    ## 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
  9954
    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
  9955
                   '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
  9956
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9957
                   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
  9958
    ## 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
  9959
    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
  9960
                   '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
  9961
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9962
                   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
  9963
    ## 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
  9964
    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
  9965
                   '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
  9966
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  9967
                   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
  9968
    ## 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
  9969
    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
  9970
                   '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
  9971
                   [], 
355d6562399e Modular 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
                   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
  9973
    ## 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
  9974
    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
  9975
                   '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
  9976
                   [], 
355d6562399e Modular 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
                   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
  9978
    ## 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
  9979
    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
  9980
                   '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
  9981
                   [], 
355d6562399e Modular 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
                   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
  9983
    ## 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
  9984
    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
  9985
                   '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
  9986
                   [], 
355d6562399e Modular 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
                   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
  9988
    ## 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
  9989
    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
  9990
                   '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
  9991
                   [], 
355d6562399e Modular 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
                   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
  9993
    ## 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
  9994
    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
  9995
                   '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
  9996
                   [], 
355d6562399e Modular 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
                   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
  9998
    ## 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
  9999
    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
 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
                   [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
 10002
    ## 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
 10003
    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
 10004
                   '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
 10005
                   [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
 10006
    ## 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
 10007
    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
 10008
                   '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
 10009
                   [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
 10010
    ## 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
 10011
    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
 10012
                   '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
 10013
                   [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
 10014
    ## 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
 10015
    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
 10016
                   '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
 10017
                   [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
 10018
    ## 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
 10019
    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
 10020
                   '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
 10021
                   [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
 10022
    ## 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
 10023
    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
 10024
                   '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
 10025
                   [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
 10026
    ## 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
 10027
    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
 10028
                   '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
 10029
                   [param('bool', 'intervalOpt')])
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10030
    ## 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
 10031
    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
 10032
                   '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
 10033
                   [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
 10034
    ## 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
 10035
    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
 10036
                   '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
 10037
                   [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
 10038
    ## 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
 10039
    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
 10040
                   '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
 10041
                   [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
 10042
    ## 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
 10043
    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
 10044
                   '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
 10045
                   [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
 10046
    ## 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
 10047
    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
 10048
                   '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
 10049
                   [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
 10050
    ## 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
 10051
    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
 10052
                   '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
 10053
                   [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
 10054
    ## 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
 10055
    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
 10056
                   '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
 10057
                   [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
 10058
    ## 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
 10059
    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
 10060
                   '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
 10061
                   [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
 10062
    ## 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
 10063
    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
 10064
                   '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
 10065
                   [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
 10066
    ## 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
 10067
    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
 10068
                   '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
 10069
                   [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
 10070
    ## 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
 10071
    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
 10072
                   '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
 10073
                   [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
 10074
    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
 10075
355d6562399e Modular 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
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
 10077
    ## 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
 10078
    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
 10079
    ## 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
 10080
    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
 10081
    ## 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
 10082
    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
 10083
                   '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
 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
                   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
 10086
    ## 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
 10087
    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
 10088
                   '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
 10089
                   [], 
355d6562399e Modular 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
                   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
 10091
    ## 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
 10092
    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
 10093
                   '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
 10094
                   [], 
355d6562399e Modular 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
                   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
 10096
    ## 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
 10097
    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
 10098
                   '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
 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-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
 10102
    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
 10103
                   '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
 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-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
 10107
    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
 10108
                   '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
 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-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
 10112
    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
 10113
                   '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
 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-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
 10117
    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
 10118
                   '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
 10119
                   [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
 10120
    ## 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
 10121
    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
 10122
                   '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
 10123
                   [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
 10124
    ## 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
 10125
    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
 10126
                   '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
 10127
                   [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
 10128
    ## 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
 10129
    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
 10130
                   '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
 10131
                   [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
 10132
    ## 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
 10133
    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
 10134
                   '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
 10135
                   [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
 10136
    ## 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
 10137
    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
 10138
                   '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
 10139
                   [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
 10140
    ## 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
 10141
    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
 10142
                   '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
 10143
                   [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
 10144
    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
 10145
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
 10146
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
 10147
    ## 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
 10148
    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
 10149
    ## 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
 10150
    cls.add_constructor([])
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10151
    ## 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
 10152
    cls.add_method('AssignStreams', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10153
                   'int64_t', 
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10154
                   [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
 10155
    ## 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
 10156
    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
 10157
                   '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
 10158
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10159
                   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
 10160
    ## 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
 10161
    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
 10162
                   '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
 10163
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10164
                   is_static=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10165
    ## 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
 10166
    cls.add_method('GetUnit', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10167
                   '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
 10168
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10169
                   is_const=True)
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10170
    ## 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
 10171
    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
 10172
                   'void', 
8986
3391f6a7fb3b Replace src/network usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 8966
diff changeset
 10173
                   [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
 10174
    ## 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
 10175
    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
 10176
                   '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
 10177
                   [param('double', 'rate')])
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10178
    ## 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
 10179
    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
 10180
                   'void', 
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
 10181
                   [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
 10182
    ## 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
 10183
    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
 10184
                   '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
 10185
                   [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
 10186
                   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
 10187
    ## 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
 10188
    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
 10189
                   '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
 10190
                   [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
 10191
                   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
 10192
    ## 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
 10193
    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
 10194
                   '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
 10195
                   [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
 10196
                   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
 10197
    ## 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
 10198
    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
 10199
                   '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
 10200
                   [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
 10201
                   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
 10202
    ## 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
 10203
    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
 10204
                   '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
 10205
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10206
                   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
 10207
    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
 10208
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10209
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
 10210
    ## 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
 10211
    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
 10212
    ## 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
 10213
    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
 10214
    ## 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
 10215
    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
 10216
                   '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
 10217
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10218
                   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
 10219
    ## 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
 10220
    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
 10221
                   '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
 10222
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10223
                   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
 10224
    ## 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
 10225
    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
 10226
                   '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
 10227
                   [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
 10228
    ## 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
 10229
    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
 10230
                   '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
 10231
                   [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
 10232
                   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
 10233
    ## 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
 10234
    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
 10235
                   '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
 10236
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10237
                   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
 10238
    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
 10239
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10240
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
 10241
    ## 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
 10242
    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
 10243
    ## 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
 10244
    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
 10245
    ## 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
 10246
    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
 10247
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10248
                   [param('ns3::Ptr< ns3::SimpleNetDevice >', 'device')], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10249
                   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
 10250
    ## 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
 10251
    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
 10252
                   '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
 10253
                   [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
 10254
                   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
 10255
    ## 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
 10256
    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
 10257
                   '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
 10258
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10259
                   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
 10260
    ## 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
 10261
    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
 10262
                   '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
 10263
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10264
                   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
 10265
    ## 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
 10266
    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
 10267
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10268
                   [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
 10269
                   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
 10270
    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
 10271
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10272
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
 10273
    ## 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
 10274
    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
 10275
    ## 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
 10276
    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
 10277
    ## 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
 10278
    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
 10279
                   '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
 10280
                   [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
 10281
                   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
 10282
    ## 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
 10283
    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
 10284
                   '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
 10285
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10286
                   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
 10287
    ## 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
 10288
    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
 10289
                   '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
 10290
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10291
                   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
 10292
    ## 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
 10293
    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
 10294
                   '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
 10295
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10296
                   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
 10297
    ## 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
 10298
    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
 10299
                   '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
 10300
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10301
                   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
 10302
    ## 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
 10303
    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
 10304
                   '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
 10305
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10306
                   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
 10307
    ## 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
 10308
    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
 10309
                   '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
 10310
                   [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
 10311
                   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
 10312
    ## 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
 10313
    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
 10314
                   '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
 10315
                   [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
 10316
                   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
 10317
    ## 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
 10318
    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
 10319
                   '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
 10320
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10321
                   is_const=True, is_virtual=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10322
    ## 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
 10323
    cls.add_method('GetQueue', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10324
                   'ns3::Ptr< ns3::Queue >', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10325
                   [], 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10326
                   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
 10327
    ## 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
 10328
    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
 10329
                   '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
 10330
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10331
                   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
 10332
    ## 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
 10333
    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
 10334
                   '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
 10335
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10336
                   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
 10337
    ## 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
 10338
    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
 10339
                   '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
 10340
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10341
                   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
 10342
    ## 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
 10343
    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
 10344
                   '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
 10345
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10346
                   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
 10347
    ## 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
 10348
    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
 10349
                   '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
 10350
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10351
                   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
 10352
    ## 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
 10353
    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
 10354
                   '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
 10355
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10356
                   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
 10357
    ## 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
 10358
    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
 10359
                   '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
 10360
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
 10362
    ## 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
 10363
    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
 10364
                   '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
 10365
                   [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
 10366
    ## 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
 10367
    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
 10368
                   '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
 10369
                   [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
 10370
                   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
 10371
    ## 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
 10372
    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
 10373
                   '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
 10374
                   [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
 10375
                   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
 10376
    ## 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
 10377
    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
 10378
                   '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
 10379
                   [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
 10380
                   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
 10381
    ## 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
 10382
    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
 10383
                   '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
 10384
                   [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
 10385
    ## 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
 10386
    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
 10387
                   '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
 10388
                   [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
 10389
                   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
 10390
    ## 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
 10391
    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
 10392
                   '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
 10393
                   [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
 10394
                   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
 10395
    ## 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
 10396
    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
 10397
                   '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
 10398
                   [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
 10399
                   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
 10400
    ## 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
 10401
    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
 10402
                   '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
 10403
                   [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
 10404
                   is_virtual=True)
10903
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10405
    ## 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
 10406
    cls.add_method('SetQueue', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10407
                   'void', 
19a4ea65c582 rescan applications bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10795
diff changeset
 10408
                   [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
 10409
    ## 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
 10410
    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
 10411
                   '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
 10412
                   [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
 10413
                   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
 10414
    ## 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
 10415
    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
 10416
                   '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
 10417
                   [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
 10418
    ## 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
 10419
    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
 10420
                   '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
 10421
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
 10423
    ## 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
 10424
    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
 10425
                   '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
 10426
                   [], 
0fb01581be59 Modular bindings: application module must include 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
                   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
 10428
    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
 10429
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
 10430
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
 10431
    ## 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
 10432
    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
 10433
    ## 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
 10434
    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
 10435
    ## 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
 10436
    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
 10437
    ## 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
 10438
    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
 10439
                   '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
 10440
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10441
                   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
 10442
    ## 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
 10443
    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
 10444
                   '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
 10445
                   [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
 10446
                   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
 10447
    ## 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
 10448
    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
 10449
                   '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
 10450
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10451
                   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
 10452
    ## 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
 10453
    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
 10454
                   '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
 10455
                   [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
 10456
                   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
 10457
    ## 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
 10458
    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
 10459
                   '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
 10460
                   [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
 10461
    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
 10462
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10463
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
 10464
    ## 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
 10465
    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
 10466
    ## 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
 10467
    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
 10468
    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
 10469
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10470
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
 10471
    ## 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
 10472
    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
 10473
    ## 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
 10474
    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
 10475
    ## 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
 10476
    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
 10477
    ## 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
 10478
    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
 10479
                   '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
 10480
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10481
                   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
 10482
    ## 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
 10483
    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
 10484
                   '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
 10485
                   [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
 10486
                   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
 10487
    ## 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
 10488
    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
 10489
                   '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
 10490
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10491
                   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
 10492
    ## 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
 10493
    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
 10494
                   '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
 10495
                   [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
 10496
                   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
 10497
    ## 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
 10498
    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
 10499
                   '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
 10500
                   [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
 10501
    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
 10502
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10503
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
 10504
    ## 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
 10505
    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
 10506
    ## 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
 10507
    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
 10508
    ## 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
 10509
    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
 10510
                   '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
 10511
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10512
                   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
 10513
    ## 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
 10514
    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
 10515
                   '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
 10516
                   [param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10517
    ## 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
 10518
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10519
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10520
                   [param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10521
    ## 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
 10522
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10523
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10524
                   [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
 10525
    ## 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
 10526
    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
 10527
                   '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
 10528
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10529
                   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
 10530
    ## 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
 10531
    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
 10532
                   '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
 10533
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10534
                   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
 10535
    ## 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
 10536
    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
 10537
                   '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
 10538
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10539
                   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
 10540
    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
 10541
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10542
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
 10543
    ## 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
 10544
    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
 10545
    ## 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
 10546
    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
 10547
    ## 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
 10548
    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
 10549
                   '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
 10550
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10551
                   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
 10552
    ## 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
 10553
    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
 10554
                   '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
 10555
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10556
                   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
 10557
    ## 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
 10558
    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
 10559
                   '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
 10560
                   [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
 10561
    ## 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
 10562
    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
 10563
                   '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
 10564
                   [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
 10565
    ## 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
 10566
    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
 10567
                   '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
 10568
                   [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
 10569
    ## 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
 10570
    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
 10571
                   '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
 10572
                   [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
 10573
    ## 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
 10574
    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
 10575
                   '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
 10576
                   [param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10577
    ## 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
 10578
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10579
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10580
                   [param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10581
    ## 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
 10582
    cls.add_method('SetRemote', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10583
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10584
                   [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
 10585
    ## 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
 10586
    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
 10587
                   '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
 10588
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10589
                   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
 10590
    ## 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
 10591
    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
 10592
                   '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
 10593
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10594
                   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
 10595
    ## 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
 10596
    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
 10597
                   '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
 10598
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10599
                   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
 10600
    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
 10601
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10602
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
 10603
    ## 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
 10604
    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
 10605
    ## 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
 10606
    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
 10607
    ## 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
 10608
    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
 10609
                   '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
 10610
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10611
                   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
 10612
    ## 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
 10613
    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
 10614
                   '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
 10615
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10616
                   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
 10617
    ## 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
 10618
    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
 10619
                   '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
 10620
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10621
                   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
 10622
    ## 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
 10623
    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
 10624
                   '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
 10625
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10626
                   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
 10627
    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
 10628
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10629
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
 10630
    ## 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
 10631
    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
 10632
    ## 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
 10633
    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
 10634
    ## 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
 10635
    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
 10636
                   '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
 10637
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10638
                   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
 10639
    ## 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
 10640
    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
 10641
                   '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
 10642
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10643
                   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
 10644
    ## 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
 10645
    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
 10646
                   '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
 10647
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10648
                   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
 10649
    ## 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
 10650
    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
 10651
                   '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
 10652
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10653
                   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
 10654
    ## 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
 10655
    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
 10656
                   '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
 10657
                   [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
 10658
    ## 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
 10659
    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
 10660
                   '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
 10661
                   [], 
355d6562399e Modular 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
                   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
 10663
    ## 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
 10664
    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
 10665
                   '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
 10666
                   [], 
355d6562399e Modular 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
                   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
 10668
    ## 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
 10669
    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
 10670
                   '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
 10671
                   [], 
355d6562399e Modular 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
                   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
 10673
    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
 10674
355d6562399e Modular 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
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
 10676
    ## 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
 10677
    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
 10678
    ## 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
 10679
    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
 10680
    ## 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
 10681
    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
 10682
    ## 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
 10683
    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
 10684
                   '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
 10685
                   [])
355d6562399e Modular 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
    ## 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
 10687
    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
 10688
                   '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
 10689
                   [], 
355d6562399e Modular 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
                   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
 10691
    ## 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
 10692
    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
 10693
                   '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
 10694
                   [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
 10695
    ## 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
 10696
    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
 10697
                   '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
 10698
                   [param('ns3::Ipv4Address', 'ip'), param('uint16_t', 'port')])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10699
    ## 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
 10700
    cls.add_method('SetRemote', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10701
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7626
diff changeset
 10702
                   [param('ns3::Ipv6Address', 'ip'), param('uint16_t', 'port')])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10703
    ## 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
 10704
    cls.add_method('SetRemote', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10705
                   'void', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10706
                   [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
 10707
    ## 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
 10708
    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
 10709
                   '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
 10710
                   [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
 10711
    ## 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
 10712
    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
 10713
                   '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
 10714
                   [], 
355d6562399e Modular 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
                   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
 10716
    ## 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
 10717
    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
 10718
                   '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
 10719
                   [], 
355d6562399e Modular 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
                   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
 10721
    ## 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
 10722
    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
 10723
                   '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
 10724
                   [], 
355d6562399e Modular 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
                   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
 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
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10728
def register_Ns3UintegerValue_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10729
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10730
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10731
    ## 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
 10732
    cls.add_constructor([param('ns3::UintegerValue const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10733
    ## uinteger.h (module 'core'): ns3::UintegerValue::UintegerValue(uint64_t const & value) [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10734
    cls.add_constructor([param('uint64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10735
    ## 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
 10736
    cls.add_method('Copy', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10737
                   'ns3::Ptr< ns3::AttributeValue >', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10738
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10739
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10740
    ## 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
 10741
    cls.add_method('DeserializeFromString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10742
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10743
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10744
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10745
    ## uinteger.h (module 'core'): uint64_t ns3::UintegerValue::Get() const [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10746
    cls.add_method('Get', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10747
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10748
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10749
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10750
    ## 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
 10751
    cls.add_method('SerializeToString', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10752
                   'std::string', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10753
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10754
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10755
    ## 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
 10756
    cls.add_method('Set', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10757
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10758
                   [param('uint64_t const &', 'value')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10759
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10760
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
 10761
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
 10762
    ## 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
 10763
    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
 10764
    ## 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
 10765
    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
 10766
    ## 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
 10767
    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
 10768
                   '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
 10769
                   [], 
355d6562399e Modular 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
                   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
 10771
    ## 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
 10772
    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
 10773
                   '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
 10774
                   [], 
355d6562399e Modular 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
                   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
 10776
    ## 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
 10777
    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
 10778
                   '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
 10779
                   [], 
355d6562399e Modular 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
                   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
 10781
    ## 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
 10782
    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
 10783
                   '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
 10784
                   [], 
355d6562399e Modular 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
                   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
 10786
    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
 10787
355d6562399e Modular 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
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
 10789
    ## 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
 10790
    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
 10791
    ## 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
 10792
    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
 10793
    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
 10794
355d6562399e Modular 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
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
 10796
    ## 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
 10797
    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
 10798
    ## 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
 10799
    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
 10800
    ## 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
 10801
    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
 10802
    ## 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
 10803
    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
 10804
                   '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
 10805
                   [], 
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 10806
                   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
 10807
    ## 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
 10808
    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
 10809
                   '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
 10810
                   [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
 10811
                   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
 10812
    ## 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
 10813
    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
 10814
                   '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
 10815
                   [], 
355d6562399e Modular 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
                   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
 10817
    ## 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
 10818
    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
 10819
                   '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
 10820
                   [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
 10821
                   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
 10822
    ## 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
 10823
    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
 10824
                   '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
 10825
                   [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
 10826
    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
 10827
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10828
def register_Ns3ApplicationPacketProbe_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10829
    ## 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
 10830
    cls.add_constructor([param('ns3::ApplicationPacketProbe const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10831
    ## application-packet-probe.h (module 'applications'): ns3::ApplicationPacketProbe::ApplicationPacketProbe() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10832
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10833
    ## 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
 10834
    cls.add_method('ConnectByObject', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10835
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10836
                   [param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10837
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10838
    ## 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
 10839
    cls.add_method('ConnectByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10840
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10841
                   [param('std::string', 'path')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10842
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10843
    ## 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
 10844
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10845
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10846
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10847
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10848
    ## 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
 10849
    cls.add_method('SetValue', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10850
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10851
                   [param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Address const &', 'address')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10852
    ## 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
 10853
    cls.add_method('SetValueByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10854
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10855
                   [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
 10856
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10857
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10858
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10859
def register_Ns3BurstErrorModel_methods(root_module, cls):
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10860
    ## error-model.h (module 'network'): ns3::BurstErrorModel::BurstErrorModel(ns3::BurstErrorModel const & arg0) [copy constructor]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10861
    cls.add_constructor([param('ns3::BurstErrorModel const &', 'arg0')])
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10862
    ## error-model.h (module 'network'): ns3::BurstErrorModel::BurstErrorModel() [constructor]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10863
    cls.add_constructor([])
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10864
    ## 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
 10865
    cls.add_method('AssignStreams', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10866
                   'int64_t', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10867
                   [param('int64_t', 'stream')])
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10868
    ## error-model.h (module 'network'): double ns3::BurstErrorModel::GetBurstRate() const [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10869
    cls.add_method('GetBurstRate', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10870
                   'double', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10871
                   [], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10872
                   is_const=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10873
    ## error-model.h (module 'network'): static ns3::TypeId ns3::BurstErrorModel::GetTypeId() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10874
    cls.add_method('GetTypeId', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10875
                   'ns3::TypeId', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10876
                   [], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10877
                   is_static=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10878
    ## error-model.h (module 'network'): void ns3::BurstErrorModel::SetBurstRate(double rate) [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10879
    cls.add_method('SetBurstRate', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10880
                   'void', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10881
                   [param('double', 'rate')])
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10882
    ## 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
 10883
    cls.add_method('SetRandomBurstSize', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10884
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10885
                   [param('ns3::Ptr< ns3::RandomVariableStream >', 'burstSz')])
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10886
    ## 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
 10887
    cls.add_method('SetRandomVariable', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10888
                   'void', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10400
diff changeset
 10889
                   [param('ns3::Ptr< ns3::RandomVariableStream >', 'ranVar')])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10890
    ## 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
 10891
    cls.add_method('DoCorrupt', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10892
                   'bool', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10893
                   [param('ns3::Ptr< ns3::Packet >', 'p')], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10894
                   visibility='private', is_virtual=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10895
    ## error-model.h (module 'network'): void ns3::BurstErrorModel::DoReset() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10896
    cls.add_method('DoReset', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10897
                   'void', 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10898
                   [], 
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10899
                   visibility='private', is_virtual=True)
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10900
    return
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
 10901
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10902
def register_Ns3CounterCalculator__Unsigned_int_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10903
    ## 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
 10904
    cls.add_constructor([param('ns3::CounterCalculator< unsigned int > const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10905
    ## basic-data-calculators.h (module 'stats'): ns3::CounterCalculator<unsigned int>::CounterCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10906
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10907
    ## 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
 10908
    cls.add_method('GetCount', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10909
                   'unsigned int', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10910
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10911
                   is_const=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10912
    ## 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
 10913
    cls.add_method('Output', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10914
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10915
                   [param('ns3::DataOutputCallback &', 'callback')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10916
                   is_const=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10917
    ## 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
 10918
    cls.add_method('Update', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10919
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10920
                   [])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10921
    ## 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
 10922
    cls.add_method('Update', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10923
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10924
                   [param('unsigned int const', 'i')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10925
    ## 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
 10926
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10927
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10928
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10929
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10930
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10931
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10932
def register_Ns3PacketCounterCalculator_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10933
    ## 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
 10934
    cls.add_constructor([param('ns3::PacketCounterCalculator const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10935
    ## packet-data-calculators.h (module 'network'): ns3::PacketCounterCalculator::PacketCounterCalculator() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10936
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10937
    ## 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
 10938
    cls.add_method('FrameUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10939
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10940
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet'), param('ns3::Mac48Address', 'realto')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10941
    ## 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
 10942
    cls.add_method('PacketUpdate', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10943
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10944
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10945
    ## packet-data-calculators.h (module 'network'): void ns3::PacketCounterCalculator::DoDispose() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10946
    cls.add_method('DoDispose', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10947
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10948
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10949
                   visibility='protected', is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10950
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10951
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10952
def register_Ns3PacketProbe_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10953
    ## 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
 10954
    cls.add_constructor([param('ns3::PacketProbe const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10955
    ## packet-probe.h (module 'network'): ns3::PacketProbe::PacketProbe() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10956
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10957
    ## 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
 10958
    cls.add_method('ConnectByObject', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10959
                   'bool', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10960
                   [param('std::string', 'traceSource'), param('ns3::Ptr< ns3::Object >', 'obj')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10961
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10962
    ## 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
 10963
    cls.add_method('ConnectByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10964
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10965
                   [param('std::string', 'path')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10966
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10967
    ## 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
 10968
    cls.add_method('GetTypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10969
                   'ns3::TypeId', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10970
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10971
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10972
    ## 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
 10973
    cls.add_method('SetValue', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10974
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10975
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10976
    ## 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
 10977
    cls.add_method('SetValueByPath', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10978
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10979
                   [param('std::string', 'path'), param('ns3::Ptr< ns3::Packet const >', 'packet')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10980
                   is_static=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10981
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 10982
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
 10983
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
 10984
    ## 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
 10985
    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
 10986
    ## 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
 10987
    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
 10988
    ## 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
 10989
    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
 10990
                   '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
 10991
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10992
                   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
 10993
    ## 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
 10994
    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
 10995
                   '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
 10996
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 10997
                   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
 10998
    ## 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
 10999
    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
 11000
                   '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
 11001
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11002
                   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
 11003
    ## 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
 11004
    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
 11005
                   '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
 11006
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11007
                   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
 11008
    ## 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
 11009
    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
 11010
                   '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
 11011
                   [], 
0fb01581be59 Modular bindings: application module must include all of network module, so that Address implicit conversion work as before
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 6955
diff changeset
 11012
                   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
 11013
    ## 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
 11014
    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
 11015
                   '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
 11016
                   [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
 11017
    ## 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
 11018
    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
 11019
                   '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
 11020
                   [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
 11021
    ## 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
 11022
    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
 11023
                   '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
 11024
                   [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
 11025
    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
 11026
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11027
def register_Ns3HashImplementation_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11028
    ## 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
 11029
    cls.add_constructor([param('ns3::Hash::Implementation const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11030
    ## hash-function.h (module 'core'): ns3::Hash::Implementation::Implementation() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11031
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11032
    ## 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
 11033
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11034
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11035
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11036
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11037
    ## 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
 11038
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11039
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11040
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11041
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11042
    ## hash-function.h (module 'core'): void ns3::Hash::Implementation::clear() [member function]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11043
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11044
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11045
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11046
                   is_pure_virtual=True, is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11047
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11048
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11049
def register_Ns3HashFunctionFnv1a_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11050
    ## 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
 11051
    cls.add_constructor([param('ns3::Hash::Function::Fnv1a const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11052
    ## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a::Fnv1a() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11053
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11054
    ## 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
 11055
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11056
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11057
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11058
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11059
    ## 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
 11060
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11061
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11062
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11063
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11064
    ## 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
 11065
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11066
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11067
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11068
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11069
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11070
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11071
def register_Ns3HashFunctionHash32_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11072
    ## 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
 11073
    cls.add_constructor([param('ns3::Hash::Function::Hash32 const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11074
    ## 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
 11075
    cls.add_constructor([param('ns3::Hash::Hash32Function_ptr', 'hp')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11076
    ## 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
 11077
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11078
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11079
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11080
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11081
    ## 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
 11082
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11083
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11084
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11085
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11086
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11087
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11088
def register_Ns3HashFunctionHash64_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11089
    ## 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
 11090
    cls.add_constructor([param('ns3::Hash::Function::Hash64 const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11091
    ## 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
 11092
    cls.add_constructor([param('ns3::Hash::Hash64Function_ptr', 'hp')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11093
    ## 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
 11094
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11095
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11096
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11097
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11098
    ## 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
 11099
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11100
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11101
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11102
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11103
    ## 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
 11104
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11105
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11106
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11107
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11108
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11109
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11110
def register_Ns3HashFunctionMurmur3_methods(root_module, cls):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11111
    ## 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
 11112
    cls.add_constructor([param('ns3::Hash::Function::Murmur3 const &', 'arg0')])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11113
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3::Murmur3() [constructor]
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11114
    cls.add_constructor([])
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11115
    ## 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
 11116
    cls.add_method('GetHash32', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11117
                   'uint32_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11118
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11119
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11120
    ## 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
 11121
    cls.add_method('GetHash64', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11122
                   'uint64_t', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11123
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11124
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11125
    ## 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
 11126
    cls.add_method('clear', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11127
                   'void', 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11128
                   [], 
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11129
                   is_virtual=True)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11130
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11131
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
 11132
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
 11133
    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
 11134
    register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11135
    register_functions_ns3_Hash(module.get_submodule('Hash'), 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
 11136
    register_functions_ns3_addressUtils(module.get_submodule('addressUtils'), root_module)
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11137
    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
 11138
    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
 11139
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11140
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
 11141
    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
 11142
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11143
def register_functions_ns3_Hash(module, root_module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11144
    register_functions_ns3_Hash_Function(module.get_submodule('Function'), root_module)
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11145
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11146
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11147
def register_functions_ns3_Hash_Function(module, root_module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11148
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11149
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
 11150
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
 11151
    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
 11152
10123
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11153
def register_functions_ns3_internal(module, root_module):
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11154
    return
332a850cd191 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
 11155
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
 11156
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
 11157
    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
 11158
    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
 11159
    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
 11160
    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
 11161
    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
 11162
    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
 11163
355d6562399e Modular bindings: scan the applications, contrib, mpi, flow-monitor, and point-to-point modules.
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
 11164
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
 11165
    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
 11166