src/olsr/bindings/modulegen__gcc_LP64.py
author Tom Henderson <tomh@tomh.org>
Tue, 18 Jun 2013 15:29:09 -0700
changeset 9846 96f72408b66c
parent 9708 443bde2aa701
child 9901 9a100979b2df
permissions -rw-r--r--
rescan bindings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     1
from pybindgen import Module, FileCodeSink, param, retval, cppclass, typehandlers
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     2
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     3
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     4
import pybindgen.settings
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     5
import warnings
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     6
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     7
class ErrorHandler(pybindgen.settings.ErrorHandler):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     8
    def handle_error(self, wrapper, exception, traceback_):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
     9
        warnings.warn("exception %r in wrapper %s" % (exception, wrapper))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    10
        return True
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    11
pybindgen.settings.error_handler = ErrorHandler()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    12
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    13
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    14
import sys
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    15
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    16
def module_init():
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    17
    root_module = Module('ns.olsr', cpp_namespace='::ns3')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    18
    return root_module
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    19
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    20
def register_types(module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    21
    root_module = module.get_root()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    22
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    23
    ## address.h (module 'network'): ns3::Address [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    24
    module.add_class('Address', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    25
    ## address.h (module 'network'): ns3::Address::MaxSize_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    26
    module.add_enum('MaxSize_e', ['MAX_SIZE'], outer_class=root_module['ns3::Address'], import_from_module='ns.network')
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
    27
    ## 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
    28
    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
    29
    ## 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
    30
    module.add_class('Item', import_from_module='ns.core', outer_class=root_module['ns3::AttributeConstructionList'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    31
    ## buffer.h (module 'network'): ns3::Buffer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    32
    module.add_class('Buffer', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    33
    ## buffer.h (module 'network'): ns3::Buffer::Iterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    34
    module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::Buffer'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    35
    ## packet.h (module 'network'): ns3::ByteTagIterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    36
    module.add_class('ByteTagIterator', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    37
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    38
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagIterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    39
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    40
    module.add_class('ByteTagList', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    41
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    42
    module.add_class('Iterator', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    43
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    44
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::ByteTagList::Iterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    45
    ## callback.h (module 'core'): ns3::CallbackBase [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    46
    module.add_class('CallbackBase', import_from_module='ns.core')
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
    47
    ## event-garbage-collector.h (module 'core'): ns3::EventGarbageCollector [class]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
    48
    module.add_class('EventGarbageCollector', import_from_module='ns.core')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    49
    ## event-id.h (module 'core'): ns3::EventId [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    50
    module.add_class('EventId', import_from_module='ns.core')
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    51
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    52
    module.add_class('Inet6SocketAddress', import_from_module='ns.network')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    53
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    54
    root_module['ns3::Inet6SocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    55
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    56
    module.add_class('InetSocketAddress', import_from_module='ns.network')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    57
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    58
    root_module['ns3::InetSocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    59
    ## int-to-type.h (module 'core'): ns3::IntToType<0> [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    60
    module.add_class('IntToType', import_from_module='ns.core', template_parameters=['0'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    61
    ## int-to-type.h (module 'core'): ns3::IntToType<0>::v_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    62
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 0 >'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    63
    ## int-to-type.h (module 'core'): ns3::IntToType<1> [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    64
    module.add_class('IntToType', import_from_module='ns.core', template_parameters=['1'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    65
    ## int-to-type.h (module 'core'): ns3::IntToType<1>::v_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    66
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 1 >'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    67
    ## int-to-type.h (module 'core'): ns3::IntToType<2> [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    68
    module.add_class('IntToType', import_from_module='ns.core', template_parameters=['2'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    69
    ## int-to-type.h (module 'core'): ns3::IntToType<2>::v_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    70
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 2 >'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    71
    ## int-to-type.h (module 'core'): ns3::IntToType<3> [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    72
    module.add_class('IntToType', import_from_module='ns.core', template_parameters=['3'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    73
    ## int-to-type.h (module 'core'): ns3::IntToType<3>::v_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    74
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 3 >'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    75
    ## int-to-type.h (module 'core'): ns3::IntToType<4> [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    76
    module.add_class('IntToType', import_from_module='ns.core', template_parameters=['4'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    77
    ## int-to-type.h (module 'core'): ns3::IntToType<4>::v_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    78
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 4 >'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    79
    ## int-to-type.h (module 'core'): ns3::IntToType<5> [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    80
    module.add_class('IntToType', import_from_module='ns.core', template_parameters=['5'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    81
    ## int-to-type.h (module 'core'): ns3::IntToType<5>::v_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    82
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 5 >'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    83
    ## int-to-type.h (module 'core'): ns3::IntToType<6> [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    84
    module.add_class('IntToType', import_from_module='ns.core', template_parameters=['6'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    85
    ## int-to-type.h (module 'core'): ns3::IntToType<6>::v_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    86
    module.add_enum('v_e', ['value'], outer_class=root_module['ns3::IntToType< 6 >'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    87
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    88
    module.add_class('Ipv4Address', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    89
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    90
    root_module['ns3::Ipv4Address'].implicitly_converts_to(root_module['ns3::Address'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    91
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    92
    module.add_class('Ipv4InterfaceAddress', import_from_module='ns.internet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    93
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    94
    module.add_enum('InterfaceAddressScope_e', ['HOST', 'LINK', 'GLOBAL'], outer_class=root_module['ns3::Ipv4InterfaceAddress'], import_from_module='ns.internet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    95
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    96
    module.add_class('Ipv4Mask', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    97
    ## ipv4-routing-helper.h (module 'internet'): ns3::Ipv4RoutingHelper [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    98
    module.add_class('Ipv4RoutingHelper', allow_subclassing=True, import_from_module='ns.internet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    99
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   100
    module.add_class('Ipv6Address', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   101
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   102
    root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   103
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress [class]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   104
    module.add_class('Ipv6InterfaceAddress', import_from_module='ns.internet')
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   105
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e [enumeration]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   106
    module.add_enum('State_e', ['TENTATIVE', 'DEPRECATED', 'PREFERRED', 'PERMANENT', 'HOMEADDRESS', 'TENTATIVE_OPTIMISTIC', 'INVALID'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet')
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   107
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e [enumeration]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   108
    module.add_enum('Scope_e', ['HOST', 'LINKLOCAL', 'GLOBAL'], outer_class=root_module['ns3::Ipv6InterfaceAddress'], import_from_module='ns.internet')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   109
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   110
    module.add_class('Ipv6Prefix', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   111
    ## node-container.h (module 'network'): ns3::NodeContainer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   112
    module.add_class('NodeContainer', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   113
    ## object-base.h (module 'core'): ns3::ObjectBase [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   114
    module.add_class('ObjectBase', allow_subclassing=True, import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   115
    ## object.h (module 'core'): ns3::ObjectDeleter [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   116
    module.add_class('ObjectDeleter', import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   117
    ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   118
    module.add_class('ObjectFactory', import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   119
    ## olsr-helper.h (module 'olsr'): ns3::OlsrHelper [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   120
    module.add_class('OlsrHelper', parent=root_module['ns3::Ipv4RoutingHelper'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   121
    ## olsr-state.h (module 'olsr'): ns3::OlsrState [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   122
    module.add_class('OlsrState')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   123
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   124
    module.add_class('PacketMetadata', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   125
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   126
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   127
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   128
    module.add_enum('', ['PAYLOAD', 'HEADER', 'TRAILER'], outer_class=root_module['ns3::PacketMetadata::Item'], import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   129
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   130
    module.add_class('ItemIterator', import_from_module='ns.network', outer_class=root_module['ns3::PacketMetadata'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   131
    ## packet.h (module 'network'): ns3::PacketTagIterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   132
    module.add_class('PacketTagIterator', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   133
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   134
    module.add_class('Item', import_from_module='ns.network', outer_class=root_module['ns3::PacketTagIterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   135
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   136
    module.add_class('PacketTagList', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   137
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   138
    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
   139
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData_e [enumeration]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
   140
    module.add_enum('TagData_e', ['MAX_SIZE'], outer_class=root_module['ns3::PacketTagList::TagData'], import_from_module='ns.network')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   141
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter> [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   142
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   143
    ## 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: 7055
diff changeset
   144
    module.add_class('Simulator', destructor_visibility='private', import_from_module='ns.core')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   145
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   146
    module.add_class('SystemWallClockMs', import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   147
    ## tag.h (module 'network'): ns3::Tag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   148
    module.add_class('Tag', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   149
    ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   150
    module.add_class('TagBuffer', import_from_module='ns.network')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   151
    ## timer.h (module 'core'): ns3::Timer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   152
    module.add_class('Timer', import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   153
    ## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   154
    module.add_enum('DestroyPolicy', ['CANCEL_ON_DESTROY', 'REMOVE_ON_DESTROY', 'CHECK_ON_DESTROY'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   155
    ## timer.h (module 'core'): ns3::Timer::State [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   156
    module.add_enum('State', ['RUNNING', 'EXPIRED', 'SUSPENDED'], outer_class=root_module['ns3::Timer'], import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   157
    ## timer-impl.h (module 'core'): ns3::TimerImpl [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   158
    module.add_class('TimerImpl', allow_subclassing=True, import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   159
    ## type-id.h (module 'core'): ns3::TypeId [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   160
    module.add_class('TypeId', import_from_module='ns.core')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   161
    ## type-id.h (module 'core'): ns3::TypeId::AttributeFlag [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   162
    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
   163
    ## 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
   164
    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
   165
    ## 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
   166
    module.add_class('TraceSourceInformation', import_from_module='ns.core', outer_class=root_module['ns3::TypeId'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   167
    ## empty.h (module 'core'): ns3::empty [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   168
    module.add_class('empty', import_from_module='ns.core')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   169
    ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   170
    module.add_class('int64x64_t', import_from_module='ns.core')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   171
    ## chunk.h (module 'network'): ns3::Chunk [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   172
    module.add_class('Chunk', import_from_module='ns.network', parent=root_module['ns3::ObjectBase'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   173
    ## header.h (module 'network'): ns3::Header [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   174
    module.add_class('Header', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   175
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   176
    module.add_class('Ipv4Header', import_from_module='ns.internet', parent=root_module['ns3::Header'])
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
   177
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType [enumeration]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
   178
    module.add_enum('DscpType', ['DscpDefault', 'CS1', 'AF11', 'AF12', 'AF13', 'CS2', 'AF21', 'AF22', 'AF23', 'CS3', 'AF31', 'AF32', 'AF33', 'CS4', 'AF41', 'AF42', 'AF43', 'CS5', 'EF', 'CS6', 'CS7'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet')
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
   179
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType [enumeration]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
   180
    module.add_enum('EcnType', ['NotECT', 'ECT1', 'ECT0', 'CE'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet')
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   181
    ## ipv6-header.h (module 'internet'): ns3::Ipv6Header [class]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   182
    module.add_class('Ipv6Header', import_from_module='ns.internet', parent=root_module['ns3::Header'])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   183
    ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::NextHeader_e [enumeration]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   184
    module.add_enum('NextHeader_e', ['IPV6_EXT_HOP_BY_HOP', 'IPV6_IPV4', 'IPV6_TCP', 'IPV6_UDP', 'IPV6_IPV6', 'IPV6_EXT_ROUTING', 'IPV6_EXT_FRAGMENTATION', 'IPV6_EXT_CONFIDENTIALITY', 'IPV6_EXT_AUTHENTIFICATION', 'IPV6_ICMPV6', 'IPV6_EXT_END', 'IPV6_EXT_DESTINATION', 'IPV6_SCTP', 'IPV6_EXT_MOBILITY', 'IPV6_UDP_LITE'], outer_class=root_module['ns3::Ipv6Header'], import_from_module='ns.internet')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   185
    ## object.h (module 'core'): ns3::Object [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   186
    module.add_class('Object', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   187
    ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   188
    module.add_class('AggregateIterator', import_from_module='ns.core', outer_class=root_module['ns3::Object'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   189
    ## random-variable-stream.h (module 'core'): ns3::RandomVariableStream [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   190
    module.add_class('RandomVariableStream', import_from_module='ns.core', parent=root_module['ns3::Object'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   191
    ## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   192
    module.add_class('SequentialRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   193
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   194
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   195
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   196
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   197
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   198
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   199
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   200
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   201
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   202
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   203
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   204
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Ipv4MulticastRoute', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4MulticastRoute>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   205
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   206
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Ipv4Route', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Ipv4Route>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   207
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   208
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   209
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   210
    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'))
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   211
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> > [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   212
    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'))
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   213
    ## 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
   214
    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'))
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   215
    ## socket.h (module 'network'): ns3::Socket [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   216
    module.add_class('Socket', import_from_module='ns.network', parent=root_module['ns3::Object'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   217
    ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
7449
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   218
    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')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   219
    ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   220
    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')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   221
    ## socket.h (module 'network'): ns3::SocketAddressTag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   222
    module.add_class('SocketAddressTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   223
    ## socket.h (module 'network'): ns3::SocketIpTosTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   224
    module.add_class('SocketIpTosTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   225
    ## socket.h (module 'network'): ns3::SocketIpTtlTag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   226
    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
   227
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   228
    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
   229
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   230
    module.add_class('SocketIpv6TclassTag', import_from_module='ns.network', parent=root_module['ns3::Tag'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   231
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   232
    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: 6989
diff changeset
   233
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   234
    module.add_class('Time', import_from_module='ns.core')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   235
    ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   236
    module.add_enum('Unit', ['S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   237
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   238
    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
   239
    ## 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
   240
    module.add_class('TraceSourceAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   241
    ## trailer.h (module 'network'): ns3::Trailer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   242
    module.add_class('Trailer', import_from_module='ns.network', parent=root_module['ns3::Chunk'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   243
    ## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   244
    module.add_class('TriangularRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   245
    ## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   246
    module.add_class('UniformRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   247
    ## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   248
    module.add_class('WeibullRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   249
    ## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   250
    module.add_class('ZetaRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   251
    ## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   252
    module.add_class('ZipfRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   253
    ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   254
    module.add_class('AttributeAccessor', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   255
    ## attribute.h (module 'core'): ns3::AttributeChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   256
    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> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   257
    ## attribute.h (module 'core'): ns3::AttributeValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   258
    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> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   259
    ## callback.h (module 'core'): ns3::CallbackChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   260
    module.add_class('CallbackChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   261
    ## callback.h (module 'core'): ns3::CallbackImplBase [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   262
    module.add_class('CallbackImplBase', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   263
    ## callback.h (module 'core'): ns3::CallbackValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   264
    module.add_class('CallbackValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   265
    ## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   266
    module.add_class('ConstantRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   267
    ## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   268
    module.add_class('DeterministicRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   269
    ## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   270
    module.add_class('EmpiricalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   271
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   272
    module.add_class('EmptyAttributeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   273
    ## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   274
    module.add_class('ErlangRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   275
    ## event-impl.h (module 'core'): ns3::EventImpl [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   276
    module.add_class('EventImpl', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   277
    ## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   278
    module.add_class('ExponentialRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   279
    ## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   280
    module.add_class('GammaRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   281
    ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol [class]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   282
    module.add_class('IpL4Protocol', import_from_module='ns.internet', parent=root_module['ns3::Object'])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   283
    ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus [enumeration]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   284
    module.add_enum('RxStatus', ['RX_OK', 'RX_CSUM_FAILED', 'RX_ENDPOINT_CLOSED', 'RX_ENDPOINT_UNREACH'], outer_class=root_module['ns3::IpL4Protocol'], import_from_module='ns.internet')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   285
    ## ipv4.h (module 'internet'): ns3::Ipv4 [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   286
    module.add_class('Ipv4', import_from_module='ns.internet', parent=root_module['ns3::Object'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   287
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   288
    module.add_class('Ipv4AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   289
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   290
    module.add_class('Ipv4AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   291
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   292
    module.add_class('Ipv4MaskChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   293
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   294
    module.add_class('Ipv4MaskValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   295
    ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   296
    module.add_class('Ipv4MulticastRoute', import_from_module='ns.internet', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   297
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Route [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   298
    module.add_class('Ipv4Route', import_from_module='ns.internet', parent=root_module['ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   299
    ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   300
    module.add_class('Ipv4RoutingProtocol', import_from_module='ns.internet', parent=root_module['ns3::Object'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   301
    ## ipv4-static-routing.h (module 'internet'): ns3::Ipv4StaticRouting [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   302
    module.add_class('Ipv4StaticRouting', import_from_module='ns.internet', parent=root_module['ns3::Ipv4RoutingProtocol'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   303
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   304
    module.add_class('Ipv6AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   305
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   306
    module.add_class('Ipv6AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   307
    ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface [class]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   308
    module.add_class('Ipv6Interface', import_from_module='ns.internet', parent=root_module['ns3::Object'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   309
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   310
    module.add_class('Ipv6PrefixChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   311
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   312
    module.add_class('Ipv6PrefixValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   313
    ## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   314
    module.add_class('LogNormalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   315
    ## net-device.h (module 'network'): ns3::NetDevice [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   316
    module.add_class('NetDevice', import_from_module='ns.network', parent=root_module['ns3::Object'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   317
    ## net-device.h (module 'network'): ns3::NetDevice::PacketType [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   318
    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')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   319
    ## nix-vector.h (module 'network'): ns3::NixVector [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   320
    module.add_class('NixVector', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   321
    ## node.h (module 'network'): ns3::Node [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   322
    module.add_class('Node', import_from_module='ns.network', parent=root_module['ns3::Object'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   323
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   324
    module.add_class('NormalRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   325
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   326
    module.add_class('ObjectFactoryChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   327
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   328
    module.add_class('ObjectFactoryValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   329
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   330
    module.add_class('OutputStreamWrapper', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   331
    ## packet.h (module 'network'): ns3::Packet [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   332
    module.add_class('Packet', import_from_module='ns.network', parent=root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   333
    ## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   334
    module.add_class('ParetoRandomVariable', import_from_module='ns.core', parent=root_module['ns3::RandomVariableStream'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   335
    ## nstime.h (module 'core'): ns3::TimeChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   336
    module.add_class('TimeChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   337
    ## nstime.h (module 'core'): ns3::TimeValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   338
    module.add_class('TimeValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   339
    ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   340
    module.add_class('TypeIdChecker', import_from_module='ns.core', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   341
    ## type-id.h (module 'core'): ns3::TypeIdValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   342
    module.add_class('TypeIdValue', import_from_module='ns.core', parent=root_module['ns3::AttributeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   343
    ## address.h (module 'network'): ns3::AddressChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   344
    module.add_class('AddressChecker', import_from_module='ns.network', parent=root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   345
    ## address.h (module 'network'): ns3::AddressValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   346
    module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   347
    module.add_container('std::vector< ns3::olsr::MprSelectorTuple >', 'ns3::olsr::MprSelectorTuple', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   348
    module.add_container('std::vector< ns3::olsr::NeighborTuple >', 'ns3::olsr::NeighborTuple', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   349
    module.add_container('std::vector< ns3::olsr::TwoHopNeighborTuple >', 'ns3::olsr::TwoHopNeighborTuple', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   350
    module.add_container('ns3::olsr::MprSet', 'ns3::Ipv4Address', container_type='set')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   351
    module.add_container('std::vector< ns3::olsr::LinkTuple >', 'ns3::olsr::LinkTuple', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   352
    module.add_container('std::vector< ns3::olsr::TopologyTuple >', 'ns3::olsr::TopologyTuple', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   353
    module.add_container('std::vector< ns3::olsr::IfaceAssocTuple >', 'ns3::olsr::IfaceAssocTuple', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   354
    module.add_container('std::vector< ns3::olsr::AssociationTuple >', 'ns3::olsr::AssociationTuple', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   355
    module.add_container('std::vector< ns3::olsr::Association >', 'ns3::olsr::Association', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   356
    module.add_container('std::vector< ns3::Ipv4Address >', 'ns3::Ipv4Address', container_type='vector')
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
   357
    module.add_container('std::map< unsigned int, unsigned int >', ('unsigned int', 'unsigned int'), container_type='map')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   358
    module.add_container('std::vector< unsigned int >', 'unsigned int', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   359
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   360
    ## Register a nested module for the namespace FatalImpl
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   361
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   362
    nested_module = module.add_cpp_namespace('FatalImpl')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   363
    register_types_ns3_FatalImpl(nested_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   364
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   365
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   366
    ## Register a nested module for the namespace olsr
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   367
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   368
    nested_module = module.add_cpp_namespace('olsr')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   369
    register_types_ns3_olsr(nested_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   370
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   371
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   372
def register_types_ns3_FatalImpl(module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   373
    root_module = module.get_root()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   374
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   375
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   376
def register_types_ns3_olsr(module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   377
    root_module = module.get_root()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   378
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   379
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::Association [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   380
    module.add_class('Association')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   381
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::AssociationTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   382
    module.add_class('AssociationTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   383
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   384
    module.add_class('DuplicateTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   385
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::IfaceAssocTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   386
    module.add_class('IfaceAssocTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   387
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   388
    module.add_class('LinkTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   389
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   390
    module.add_class('MessageHeader', parent=root_module['ns3::Header'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   391
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::MessageType [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   392
    module.add_enum('MessageType', ['HELLO_MESSAGE', 'TC_MESSAGE', 'MID_MESSAGE', 'HNA_MESSAGE'], outer_class=root_module['ns3::olsr::MessageHeader'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   393
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   394
    module.add_class('Hello', outer_class=root_module['ns3::olsr::MessageHeader'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   395
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::LinkMessage [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   396
    module.add_class('LinkMessage', outer_class=root_module['ns3::olsr::MessageHeader::Hello'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   397
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   398
    module.add_class('Hna', outer_class=root_module['ns3::olsr::MessageHeader'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   399
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::Association [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   400
    module.add_class('Association', outer_class=root_module['ns3::olsr::MessageHeader::Hna'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   401
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Mid [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   402
    module.add_class('Mid', outer_class=root_module['ns3::olsr::MessageHeader'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   403
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Tc [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   404
    module.add_class('Tc', outer_class=root_module['ns3::olsr::MessageHeader'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   405
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::MprSelectorTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   406
    module.add_class('MprSelectorTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   407
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::NeighborTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   408
    module.add_class('NeighborTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   409
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::NeighborTuple::Status [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   410
    module.add_enum('Status', ['STATUS_NOT_SYM', 'STATUS_SYM'], outer_class=root_module['ns3::olsr::NeighborTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   411
    ## olsr-header.h (module 'olsr'): ns3::olsr::PacketHeader [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   412
    module.add_class('PacketHeader', parent=root_module['ns3::Header'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   413
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingProtocol [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   414
    module.add_class('RoutingProtocol', parent=root_module['ns3::Ipv4RoutingProtocol'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   415
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingTableEntry [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   416
    module.add_class('RoutingTableEntry')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   417
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TopologyTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   418
    module.add_class('TopologyTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   419
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   420
    module.add_class('TwoHopNeighborTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   421
    module.add_container('std::vector< ns3::olsr::MessageHeader::Hello::LinkMessage >', 'ns3::olsr::MessageHeader::Hello::LinkMessage', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   422
    module.add_container('std::vector< ns3::olsr::MessageHeader::Hna::Association >', 'ns3::olsr::MessageHeader::Hna::Association', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   423
    module.add_container('std::vector< ns3::olsr::RoutingTableEntry >', 'ns3::olsr::RoutingTableEntry', container_type='vector')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   424
    module.add_container('std::set< unsigned int >', 'unsigned int', container_type='set')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   425
    typehandlers.add_type_alias('std::vector< ns3::olsr::DuplicateTuple, std::allocator< ns3::olsr::DuplicateTuple > >', 'ns3::olsr::DuplicateSet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   426
    typehandlers.add_type_alias('std::vector< ns3::olsr::DuplicateTuple, std::allocator< ns3::olsr::DuplicateTuple > >*', 'ns3::olsr::DuplicateSet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   427
    typehandlers.add_type_alias('std::vector< ns3::olsr::DuplicateTuple, std::allocator< ns3::olsr::DuplicateTuple > >&', 'ns3::olsr::DuplicateSet&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   428
    typehandlers.add_type_alias('std::vector< ns3::olsr::MprSelectorTuple, std::allocator< ns3::olsr::MprSelectorTuple > >', 'ns3::olsr::MprSelectorSet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   429
    typehandlers.add_type_alias('std::vector< ns3::olsr::MprSelectorTuple, std::allocator< ns3::olsr::MprSelectorTuple > >*', 'ns3::olsr::MprSelectorSet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   430
    typehandlers.add_type_alias('std::vector< ns3::olsr::MprSelectorTuple, std::allocator< ns3::olsr::MprSelectorTuple > >&', 'ns3::olsr::MprSelectorSet&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   431
    typehandlers.add_type_alias('std::vector< ns3::olsr::AssociationTuple, std::allocator< ns3::olsr::AssociationTuple > >', 'ns3::olsr::AssociationSet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   432
    typehandlers.add_type_alias('std::vector< ns3::olsr::AssociationTuple, std::allocator< ns3::olsr::AssociationTuple > >*', 'ns3::olsr::AssociationSet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   433
    typehandlers.add_type_alias('std::vector< ns3::olsr::AssociationTuple, std::allocator< ns3::olsr::AssociationTuple > >&', 'ns3::olsr::AssociationSet&')
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   434
    typehandlers.add_type_alias('std::vector< ns3::olsr::NeighborTuple, std::allocator< ns3::olsr::NeighborTuple > >', 'ns3::olsr::NeighborSet')
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   435
    typehandlers.add_type_alias('std::vector< ns3::olsr::NeighborTuple, std::allocator< ns3::olsr::NeighborTuple > >*', 'ns3::olsr::NeighborSet*')
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   436
    typehandlers.add_type_alias('std::vector< ns3::olsr::NeighborTuple, std::allocator< ns3::olsr::NeighborTuple > >&', 'ns3::olsr::NeighborSet&')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   437
    typehandlers.add_type_alias('std::vector< ns3::olsr::LinkTuple, std::allocator< ns3::olsr::LinkTuple > >', 'ns3::olsr::LinkSet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   438
    typehandlers.add_type_alias('std::vector< ns3::olsr::LinkTuple, std::allocator< ns3::olsr::LinkTuple > >*', 'ns3::olsr::LinkSet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   439
    typehandlers.add_type_alias('std::vector< ns3::olsr::LinkTuple, std::allocator< ns3::olsr::LinkTuple > >&', 'ns3::olsr::LinkSet&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   440
    typehandlers.add_type_alias('std::vector< ns3::olsr::MessageHeader, std::allocator< ns3::olsr::MessageHeader > >', 'ns3::olsr::MessageList')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   441
    typehandlers.add_type_alias('std::vector< ns3::olsr::MessageHeader, std::allocator< ns3::olsr::MessageHeader > >*', 'ns3::olsr::MessageList*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   442
    typehandlers.add_type_alias('std::vector< ns3::olsr::MessageHeader, std::allocator< ns3::olsr::MessageHeader > >&', 'ns3::olsr::MessageList&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   443
    typehandlers.add_type_alias('std::vector< ns3::olsr::Association, std::allocator< ns3::olsr::Association > >', 'ns3::olsr::Associations')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   444
    typehandlers.add_type_alias('std::vector< ns3::olsr::Association, std::allocator< ns3::olsr::Association > >*', 'ns3::olsr::Associations*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   445
    typehandlers.add_type_alias('std::vector< ns3::olsr::Association, std::allocator< ns3::olsr::Association > >&', 'ns3::olsr::Associations&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   446
    typehandlers.add_type_alias('std::vector< ns3::olsr::IfaceAssocTuple, std::allocator< ns3::olsr::IfaceAssocTuple > >', 'ns3::olsr::IfaceAssocSet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   447
    typehandlers.add_type_alias('std::vector< ns3::olsr::IfaceAssocTuple, std::allocator< ns3::olsr::IfaceAssocTuple > >*', 'ns3::olsr::IfaceAssocSet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   448
    typehandlers.add_type_alias('std::vector< ns3::olsr::IfaceAssocTuple, std::allocator< ns3::olsr::IfaceAssocTuple > >&', 'ns3::olsr::IfaceAssocSet&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   449
    typehandlers.add_type_alias('std::set< ns3::Ipv4Address, std::less< ns3::Ipv4Address >, std::allocator< ns3::Ipv4Address > >', 'ns3::olsr::MprSet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   450
    typehandlers.add_type_alias('std::set< ns3::Ipv4Address, std::less< ns3::Ipv4Address >, std::allocator< ns3::Ipv4Address > >*', 'ns3::olsr::MprSet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   451
    typehandlers.add_type_alias('std::set< ns3::Ipv4Address, std::less< ns3::Ipv4Address >, std::allocator< ns3::Ipv4Address > >&', 'ns3::olsr::MprSet&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   452
    typehandlers.add_type_alias('std::vector< ns3::olsr::TwoHopNeighborTuple, std::allocator< ns3::olsr::TwoHopNeighborTuple > >', 'ns3::olsr::TwoHopNeighborSet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   453
    typehandlers.add_type_alias('std::vector< ns3::olsr::TwoHopNeighborTuple, std::allocator< ns3::olsr::TwoHopNeighborTuple > >*', 'ns3::olsr::TwoHopNeighborSet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   454
    typehandlers.add_type_alias('std::vector< ns3::olsr::TwoHopNeighborTuple, std::allocator< ns3::olsr::TwoHopNeighborTuple > >&', 'ns3::olsr::TwoHopNeighborSet&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   455
    typehandlers.add_type_alias('std::vector< ns3::olsr::TopologyTuple, std::allocator< ns3::olsr::TopologyTuple > >', 'ns3::olsr::TopologySet')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   456
    typehandlers.add_type_alias('std::vector< ns3::olsr::TopologyTuple, std::allocator< ns3::olsr::TopologyTuple > >*', 'ns3::olsr::TopologySet*')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   457
    typehandlers.add_type_alias('std::vector< ns3::olsr::TopologyTuple, std::allocator< ns3::olsr::TopologyTuple > >&', 'ns3::olsr::TopologySet&')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   458
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   459
def register_methods(root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   460
    register_Ns3Address_methods(root_module, root_module['ns3::Address'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   461
    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
   462
    register_Ns3AttributeConstructionListItem_methods(root_module, root_module['ns3::AttributeConstructionList::Item'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   463
    register_Ns3Buffer_methods(root_module, root_module['ns3::Buffer'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   464
    register_Ns3BufferIterator_methods(root_module, root_module['ns3::Buffer::Iterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   465
    register_Ns3ByteTagIterator_methods(root_module, root_module['ns3::ByteTagIterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   466
    register_Ns3ByteTagIteratorItem_methods(root_module, root_module['ns3::ByteTagIterator::Item'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   467
    register_Ns3ByteTagList_methods(root_module, root_module['ns3::ByteTagList'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   468
    register_Ns3ByteTagListIterator_methods(root_module, root_module['ns3::ByteTagList::Iterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   469
    register_Ns3ByteTagListIteratorItem_methods(root_module, root_module['ns3::ByteTagList::Iterator::Item'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   470
    register_Ns3CallbackBase_methods(root_module, root_module['ns3::CallbackBase'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   471
    register_Ns3EventGarbageCollector_methods(root_module, root_module['ns3::EventGarbageCollector'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   472
    register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   473
    register_Ns3Inet6SocketAddress_methods(root_module, root_module['ns3::Inet6SocketAddress'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   474
    register_Ns3InetSocketAddress_methods(root_module, root_module['ns3::InetSocketAddress'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   475
    register_Ns3IntToType__0_methods(root_module, root_module['ns3::IntToType< 0 >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   476
    register_Ns3IntToType__1_methods(root_module, root_module['ns3::IntToType< 1 >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   477
    register_Ns3IntToType__2_methods(root_module, root_module['ns3::IntToType< 2 >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   478
    register_Ns3IntToType__3_methods(root_module, root_module['ns3::IntToType< 3 >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   479
    register_Ns3IntToType__4_methods(root_module, root_module['ns3::IntToType< 4 >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   480
    register_Ns3IntToType__5_methods(root_module, root_module['ns3::IntToType< 5 >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   481
    register_Ns3IntToType__6_methods(root_module, root_module['ns3::IntToType< 6 >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   482
    register_Ns3Ipv4Address_methods(root_module, root_module['ns3::Ipv4Address'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   483
    register_Ns3Ipv4InterfaceAddress_methods(root_module, root_module['ns3::Ipv4InterfaceAddress'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   484
    register_Ns3Ipv4Mask_methods(root_module, root_module['ns3::Ipv4Mask'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   485
    register_Ns3Ipv4RoutingHelper_methods(root_module, root_module['ns3::Ipv4RoutingHelper'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   486
    register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   487
    register_Ns3Ipv6InterfaceAddress_methods(root_module, root_module['ns3::Ipv6InterfaceAddress'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   488
    register_Ns3Ipv6Prefix_methods(root_module, root_module['ns3::Ipv6Prefix'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   489
    register_Ns3NodeContainer_methods(root_module, root_module['ns3::NodeContainer'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   490
    register_Ns3ObjectBase_methods(root_module, root_module['ns3::ObjectBase'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   491
    register_Ns3ObjectDeleter_methods(root_module, root_module['ns3::ObjectDeleter'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   492
    register_Ns3ObjectFactory_methods(root_module, root_module['ns3::ObjectFactory'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   493
    register_Ns3OlsrHelper_methods(root_module, root_module['ns3::OlsrHelper'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   494
    register_Ns3OlsrState_methods(root_module, root_module['ns3::OlsrState'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   495
    register_Ns3PacketMetadata_methods(root_module, root_module['ns3::PacketMetadata'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   496
    register_Ns3PacketMetadataItem_methods(root_module, root_module['ns3::PacketMetadata::Item'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   497
    register_Ns3PacketMetadataItemIterator_methods(root_module, root_module['ns3::PacketMetadata::ItemIterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   498
    register_Ns3PacketTagIterator_methods(root_module, root_module['ns3::PacketTagIterator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   499
    register_Ns3PacketTagIteratorItem_methods(root_module, root_module['ns3::PacketTagIterator::Item'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   500
    register_Ns3PacketTagList_methods(root_module, root_module['ns3::PacketTagList'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   501
    register_Ns3PacketTagListTagData_methods(root_module, root_module['ns3::PacketTagList::TagData'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   502
    register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, root_module['ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   503
    register_Ns3Simulator_methods(root_module, root_module['ns3::Simulator'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   504
    register_Ns3SystemWallClockMs_methods(root_module, root_module['ns3::SystemWallClockMs'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   505
    register_Ns3Tag_methods(root_module, root_module['ns3::Tag'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   506
    register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   507
    register_Ns3Timer_methods(root_module, root_module['ns3::Timer'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   508
    register_Ns3TimerImpl_methods(root_module, root_module['ns3::TimerImpl'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   509
    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
   510
    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
   511
    register_Ns3TypeIdTraceSourceInformation_methods(root_module, root_module['ns3::TypeId::TraceSourceInformation'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   512
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   513
    register_Ns3Int64x64_t_methods(root_module, root_module['ns3::int64x64_t'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   514
    register_Ns3Chunk_methods(root_module, root_module['ns3::Chunk'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   515
    register_Ns3Header_methods(root_module, root_module['ns3::Header'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   516
    register_Ns3Ipv4Header_methods(root_module, root_module['ns3::Ipv4Header'])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   517
    register_Ns3Ipv6Header_methods(root_module, root_module['ns3::Ipv6Header'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   518
    register_Ns3Object_methods(root_module, root_module['ns3::Object'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   519
    register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   520
    register_Ns3RandomVariableStream_methods(root_module, root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   521
    register_Ns3SequentialRandomVariable_methods(root_module, root_module['ns3::SequentialRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   522
    register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   523
    register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   524
    register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   525
    register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   526
    register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   527
    register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   528
    register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   529
    register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   530
    register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   531
    register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >'])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   532
    register_Ns3SimpleRefCount__Ns3TraceSourceAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3TraceSourceAccessor__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::TraceSourceAccessor, ns3::empty, ns3::DefaultDeleter<ns3::TraceSourceAccessor> >'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   533
    register_Ns3Socket_methods(root_module, root_module['ns3::Socket'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   534
    register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   535
    register_Ns3SocketIpTosTag_methods(root_module, root_module['ns3::SocketIpTosTag'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   536
    register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   537
    register_Ns3SocketIpv6HopLimitTag_methods(root_module, root_module['ns3::SocketIpv6HopLimitTag'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   538
    register_Ns3SocketIpv6TclassTag_methods(root_module, root_module['ns3::SocketIpv6TclassTag'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   539
    register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   540
    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
   541
    register_Ns3TraceSourceAccessor_methods(root_module, root_module['ns3::TraceSourceAccessor'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   542
    register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   543
    register_Ns3TriangularRandomVariable_methods(root_module, root_module['ns3::TriangularRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   544
    register_Ns3UniformRandomVariable_methods(root_module, root_module['ns3::UniformRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   545
    register_Ns3WeibullRandomVariable_methods(root_module, root_module['ns3::WeibullRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   546
    register_Ns3ZetaRandomVariable_methods(root_module, root_module['ns3::ZetaRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   547
    register_Ns3ZipfRandomVariable_methods(root_module, root_module['ns3::ZipfRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   548
    register_Ns3AttributeAccessor_methods(root_module, root_module['ns3::AttributeAccessor'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   549
    register_Ns3AttributeChecker_methods(root_module, root_module['ns3::AttributeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   550
    register_Ns3AttributeValue_methods(root_module, root_module['ns3::AttributeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   551
    register_Ns3CallbackChecker_methods(root_module, root_module['ns3::CallbackChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   552
    register_Ns3CallbackImplBase_methods(root_module, root_module['ns3::CallbackImplBase'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   553
    register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   554
    register_Ns3ConstantRandomVariable_methods(root_module, root_module['ns3::ConstantRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   555
    register_Ns3DeterministicRandomVariable_methods(root_module, root_module['ns3::DeterministicRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   556
    register_Ns3EmpiricalRandomVariable_methods(root_module, root_module['ns3::EmpiricalRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   557
    register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   558
    register_Ns3ErlangRandomVariable_methods(root_module, root_module['ns3::ErlangRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   559
    register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   560
    register_Ns3ExponentialRandomVariable_methods(root_module, root_module['ns3::ExponentialRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   561
    register_Ns3GammaRandomVariable_methods(root_module, root_module['ns3::GammaRandomVariable'])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   562
    register_Ns3IpL4Protocol_methods(root_module, root_module['ns3::IpL4Protocol'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   563
    register_Ns3Ipv4_methods(root_module, root_module['ns3::Ipv4'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   564
    register_Ns3Ipv4AddressChecker_methods(root_module, root_module['ns3::Ipv4AddressChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   565
    register_Ns3Ipv4AddressValue_methods(root_module, root_module['ns3::Ipv4AddressValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   566
    register_Ns3Ipv4MaskChecker_methods(root_module, root_module['ns3::Ipv4MaskChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   567
    register_Ns3Ipv4MaskValue_methods(root_module, root_module['ns3::Ipv4MaskValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   568
    register_Ns3Ipv4MulticastRoute_methods(root_module, root_module['ns3::Ipv4MulticastRoute'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   569
    register_Ns3Ipv4Route_methods(root_module, root_module['ns3::Ipv4Route'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   570
    register_Ns3Ipv4RoutingProtocol_methods(root_module, root_module['ns3::Ipv4RoutingProtocol'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   571
    register_Ns3Ipv4StaticRouting_methods(root_module, root_module['ns3::Ipv4StaticRouting'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   572
    register_Ns3Ipv6AddressChecker_methods(root_module, root_module['ns3::Ipv6AddressChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   573
    register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
   574
    register_Ns3Ipv6Interface_methods(root_module, root_module['ns3::Ipv6Interface'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   575
    register_Ns3Ipv6PrefixChecker_methods(root_module, root_module['ns3::Ipv6PrefixChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   576
    register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   577
    register_Ns3LogNormalRandomVariable_methods(root_module, root_module['ns3::LogNormalRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   578
    register_Ns3NetDevice_methods(root_module, root_module['ns3::NetDevice'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   579
    register_Ns3NixVector_methods(root_module, root_module['ns3::NixVector'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   580
    register_Ns3Node_methods(root_module, root_module['ns3::Node'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   581
    register_Ns3NormalRandomVariable_methods(root_module, root_module['ns3::NormalRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   582
    register_Ns3ObjectFactoryChecker_methods(root_module, root_module['ns3::ObjectFactoryChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   583
    register_Ns3ObjectFactoryValue_methods(root_module, root_module['ns3::ObjectFactoryValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   584
    register_Ns3OutputStreamWrapper_methods(root_module, root_module['ns3::OutputStreamWrapper'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   585
    register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   586
    register_Ns3ParetoRandomVariable_methods(root_module, root_module['ns3::ParetoRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   587
    register_Ns3TimeChecker_methods(root_module, root_module['ns3::TimeChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   588
    register_Ns3TimeValue_methods(root_module, root_module['ns3::TimeValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   589
    register_Ns3TypeIdChecker_methods(root_module, root_module['ns3::TypeIdChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   590
    register_Ns3TypeIdValue_methods(root_module, root_module['ns3::TypeIdValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   591
    register_Ns3AddressChecker_methods(root_module, root_module['ns3::AddressChecker'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   592
    register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   593
    register_Ns3OlsrAssociation_methods(root_module, root_module['ns3::olsr::Association'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   594
    register_Ns3OlsrAssociationTuple_methods(root_module, root_module['ns3::olsr::AssociationTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   595
    register_Ns3OlsrDuplicateTuple_methods(root_module, root_module['ns3::olsr::DuplicateTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   596
    register_Ns3OlsrIfaceAssocTuple_methods(root_module, root_module['ns3::olsr::IfaceAssocTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   597
    register_Ns3OlsrLinkTuple_methods(root_module, root_module['ns3::olsr::LinkTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   598
    register_Ns3OlsrMessageHeader_methods(root_module, root_module['ns3::olsr::MessageHeader'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   599
    register_Ns3OlsrMessageHeaderHello_methods(root_module, root_module['ns3::olsr::MessageHeader::Hello'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   600
    register_Ns3OlsrMessageHeaderHelloLinkMessage_methods(root_module, root_module['ns3::olsr::MessageHeader::Hello::LinkMessage'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   601
    register_Ns3OlsrMessageHeaderHna_methods(root_module, root_module['ns3::olsr::MessageHeader::Hna'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   602
    register_Ns3OlsrMessageHeaderHnaAssociation_methods(root_module, root_module['ns3::olsr::MessageHeader::Hna::Association'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   603
    register_Ns3OlsrMessageHeaderMid_methods(root_module, root_module['ns3::olsr::MessageHeader::Mid'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   604
    register_Ns3OlsrMessageHeaderTc_methods(root_module, root_module['ns3::olsr::MessageHeader::Tc'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   605
    register_Ns3OlsrMprSelectorTuple_methods(root_module, root_module['ns3::olsr::MprSelectorTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   606
    register_Ns3OlsrNeighborTuple_methods(root_module, root_module['ns3::olsr::NeighborTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   607
    register_Ns3OlsrPacketHeader_methods(root_module, root_module['ns3::olsr::PacketHeader'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   608
    register_Ns3OlsrRoutingProtocol_methods(root_module, root_module['ns3::olsr::RoutingProtocol'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   609
    register_Ns3OlsrRoutingTableEntry_methods(root_module, root_module['ns3::olsr::RoutingTableEntry'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   610
    register_Ns3OlsrTopologyTuple_methods(root_module, root_module['ns3::olsr::TopologyTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   611
    register_Ns3OlsrTwoHopNeighborTuple_methods(root_module, root_module['ns3::olsr::TwoHopNeighborTuple'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   612
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   613
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   614
def register_Ns3Address_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   615
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   616
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   617
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   618
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   619
    ## address.h (module 'network'): ns3::Address::Address() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   620
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   621
    ## address.h (module 'network'): ns3::Address::Address(uint8_t type, uint8_t const * buffer, uint8_t len) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   622
    cls.add_constructor([param('uint8_t', 'type'), param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   623
    ## address.h (module 'network'): ns3::Address::Address(ns3::Address const & address) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   624
    cls.add_constructor([param('ns3::Address const &', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   625
    ## address.h (module 'network'): bool ns3::Address::CheckCompatible(uint8_t type, uint8_t len) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   626
    cls.add_method('CheckCompatible', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   627
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   628
                   [param('uint8_t', 'type'), param('uint8_t', 'len')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   629
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   630
    ## address.h (module 'network'): uint32_t ns3::Address::CopyAllFrom(uint8_t const * buffer, uint8_t len) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   631
    cls.add_method('CopyAllFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   632
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   633
                   [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   634
    ## address.h (module 'network'): uint32_t ns3::Address::CopyAllTo(uint8_t * buffer, uint8_t len) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   635
    cls.add_method('CopyAllTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   636
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   637
                   [param('uint8_t *', 'buffer'), param('uint8_t', 'len')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   638
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   639
    ## address.h (module 'network'): uint32_t ns3::Address::CopyFrom(uint8_t const * buffer, uint8_t len) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   640
    cls.add_method('CopyFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   641
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   642
                   [param('uint8_t const *', 'buffer'), param('uint8_t', 'len')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   643
    ## address.h (module 'network'): uint32_t ns3::Address::CopyTo(uint8_t * buffer) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   644
    cls.add_method('CopyTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   645
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   646
                   [param('uint8_t *', 'buffer')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   647
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   648
    ## address.h (module 'network'): void ns3::Address::Deserialize(ns3::TagBuffer buffer) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   649
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   650
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   651
                   [param('ns3::TagBuffer', 'buffer')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   652
    ## address.h (module 'network'): uint8_t ns3::Address::GetLength() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   653
    cls.add_method('GetLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   654
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   655
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   656
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   657
    ## address.h (module 'network'): uint32_t ns3::Address::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   658
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   659
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   660
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   661
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   662
    ## address.h (module 'network'): bool ns3::Address::IsInvalid() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   663
    cls.add_method('IsInvalid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   664
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   665
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   666
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   667
    ## address.h (module 'network'): bool ns3::Address::IsMatchingType(uint8_t type) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   668
    cls.add_method('IsMatchingType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   669
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   670
                   [param('uint8_t', 'type')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   671
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   672
    ## address.h (module 'network'): static uint8_t ns3::Address::Register() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   673
    cls.add_method('Register', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   674
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   675
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   676
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   677
    ## address.h (module 'network'): void ns3::Address::Serialize(ns3::TagBuffer buffer) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   678
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   679
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   680
                   [param('ns3::TagBuffer', 'buffer')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   681
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   682
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   683
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   684
def register_Ns3AttributeConstructionList_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   685
    ## 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
   686
    cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   687
    ## attribute-construction-list.h (module 'core'): ns3::AttributeConstructionList::AttributeConstructionList() [constructor]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   688
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   689
    ## 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
   690
    cls.add_method('Add', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   691
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   692
                   [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
   693
    ## 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
   694
    cls.add_method('Begin', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   695
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   696
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   697
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   698
    ## 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
   699
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   700
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   701
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   702
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   703
    ## 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
   704
    cls.add_method('Find', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   705
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   706
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   707
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   708
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   709
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   710
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   711
    ## 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
   712
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   713
    ## 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
   714
    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
   715
    ## 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
   716
    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
   717
    ## 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
   718
    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
   719
    ## 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
   720
    cls.add_instance_attribute('value', 'ns3::Ptr< ns3::AttributeValue >', is_const=False)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   721
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   722
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   723
def register_Ns3Buffer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   724
    ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   725
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   726
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   727
    cls.add_constructor([param('uint32_t', 'dataSize')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   728
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(uint32_t dataSize, bool initialize) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   729
    cls.add_constructor([param('uint32_t', 'dataSize'), param('bool', 'initialize')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   730
    ## buffer.h (module 'network'): ns3::Buffer::Buffer(ns3::Buffer const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   731
    cls.add_constructor([param('ns3::Buffer const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   732
    ## buffer.h (module 'network'): bool ns3::Buffer::AddAtEnd(uint32_t end) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   733
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   734
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   735
                   [param('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   736
    ## buffer.h (module 'network'): void ns3::Buffer::AddAtEnd(ns3::Buffer const & o) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   737
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   738
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   739
                   [param('ns3::Buffer const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   740
    ## buffer.h (module 'network'): bool ns3::Buffer::AddAtStart(uint32_t start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   741
    cls.add_method('AddAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   742
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   743
                   [param('uint32_t', 'start')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   744
    ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::Begin() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   745
    cls.add_method('Begin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   746
                   'ns3::Buffer::Iterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   747
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   748
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   749
    ## buffer.h (module 'network'): void ns3::Buffer::CopyData(std::ostream * os, uint32_t size) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   750
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   751
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   752
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   753
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   754
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::CopyData(uint8_t * buffer, uint32_t size) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   755
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   756
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   757
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   758
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   759
    ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFragment(uint32_t start, uint32_t length) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   760
    cls.add_method('CreateFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   761
                   'ns3::Buffer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   762
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   763
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   764
    ## buffer.h (module 'network'): ns3::Buffer ns3::Buffer::CreateFullCopy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   765
    cls.add_method('CreateFullCopy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   766
                   'ns3::Buffer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   767
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   768
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   769
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   770
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   771
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   772
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   773
    ## buffer.h (module 'network'): ns3::Buffer::Iterator ns3::Buffer::End() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
    cls.add_method('End', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   775
                   'ns3::Buffer::Iterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   776
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   777
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   778
    ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentEndOffset() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   779
    cls.add_method('GetCurrentEndOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   780
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   781
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   782
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   783
    ## buffer.h (module 'network'): int32_t ns3::Buffer::GetCurrentStartOffset() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   784
    cls.add_method('GetCurrentStartOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   785
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   786
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   787
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   788
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   789
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   790
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   791
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   792
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   793
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::GetSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   794
    cls.add_method('GetSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   795
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   796
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   797
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   798
    ## buffer.h (module 'network'): uint8_t const * ns3::Buffer::PeekData() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   799
    cls.add_method('PeekData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   800
                   'uint8_t const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   801
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   802
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   803
    ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtEnd(uint32_t end) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   804
    cls.add_method('RemoveAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   805
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   806
                   [param('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   807
    ## buffer.h (module 'network'): void ns3::Buffer::RemoveAtStart(uint32_t start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   808
    cls.add_method('RemoveAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   809
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   810
                   [param('uint32_t', 'start')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   811
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   812
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   813
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   814
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   815
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   816
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   817
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   818
def register_Ns3BufferIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   819
    ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator(ns3::Buffer::Iterator const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   820
    cls.add_constructor([param('ns3::Buffer::Iterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   821
    ## buffer.h (module 'network'): ns3::Buffer::Iterator::Iterator() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   822
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   823
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   824
    cls.add_method('CalculateIpChecksum', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   825
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   826
                   [param('uint16_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   827
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::CalculateIpChecksum(uint16_t size, uint32_t initialChecksum) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   828
    cls.add_method('CalculateIpChecksum', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   829
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   830
                   [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   831
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetDistanceFrom(ns3::Buffer::Iterator const & o) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   832
    cls.add_method('GetDistanceFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   833
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   834
                   [param('ns3::Buffer::Iterator const &', 'o')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   835
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   836
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::GetSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   837
    cls.add_method('GetSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   838
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   839
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   840
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   841
    ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsEnd() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   842
    cls.add_method('IsEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   843
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   844
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   845
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   846
    ## buffer.h (module 'network'): bool ns3::Buffer::Iterator::IsStart() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   847
    cls.add_method('IsStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   848
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   849
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   850
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   851
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   852
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   853
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   854
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   855
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Next(uint32_t delta) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   856
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   857
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   858
                   [param('uint32_t', 'delta')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   859
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   860
    cls.add_method('Prev', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   861
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   862
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   863
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Prev(uint32_t delta) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   864
    cls.add_method('Prev', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   865
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   866
                   [param('uint32_t', 'delta')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   867
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(uint8_t * buffer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   868
    cls.add_method('Read', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   869
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   870
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   871
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadLsbtohU16() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   872
    cls.add_method('ReadLsbtohU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   873
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   874
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   875
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadLsbtohU32() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   876
    cls.add_method('ReadLsbtohU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   877
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   878
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   879
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadLsbtohU64() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   880
    cls.add_method('ReadLsbtohU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   881
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   882
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   883
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadNtohU16() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   884
    cls.add_method('ReadNtohU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   885
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   886
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   887
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadNtohU32() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   888
    cls.add_method('ReadNtohU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   889
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   890
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   891
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadNtohU64() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   892
    cls.add_method('ReadNtohU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   893
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   894
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   895
    ## buffer.h (module 'network'): uint16_t ns3::Buffer::Iterator::ReadU16() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   896
    cls.add_method('ReadU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   897
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   898
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   899
    ## buffer.h (module 'network'): uint32_t ns3::Buffer::Iterator::ReadU32() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   900
    cls.add_method('ReadU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   901
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   902
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   903
    ## buffer.h (module 'network'): uint64_t ns3::Buffer::Iterator::ReadU64() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   904
    cls.add_method('ReadU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   905
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   906
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   907
    ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::ReadU8() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   908
    cls.add_method('ReadU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   909
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   910
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   911
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(uint8_t const * buffer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   912
    cls.add_method('Write', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   913
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   914
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   915
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Write(ns3::Buffer::Iterator start, ns3::Buffer::Iterator end) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   916
    cls.add_method('Write', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   917
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   918
                   [param('ns3::Buffer::Iterator', 'start'), param('ns3::Buffer::Iterator', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   919
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU16(uint16_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   920
    cls.add_method('WriteHtolsbU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   921
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   922
                   [param('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   923
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU32(uint32_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   924
    cls.add_method('WriteHtolsbU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   925
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   926
                   [param('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   927
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtolsbU64(uint64_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   928
    cls.add_method('WriteHtolsbU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   929
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   930
                   [param('uint64_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   931
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU16(uint16_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   932
    cls.add_method('WriteHtonU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   933
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   934
                   [param('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   935
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU32(uint32_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   936
    cls.add_method('WriteHtonU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   937
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   938
                   [param('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   939
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteHtonU64(uint64_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   940
    cls.add_method('WriteHtonU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   941
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   942
                   [param('uint64_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   943
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU16(uint16_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   944
    cls.add_method('WriteU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   945
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   946
                   [param('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   947
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU32(uint32_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   948
    cls.add_method('WriteU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   949
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   950
                   [param('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   951
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU64(uint64_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   952
    cls.add_method('WriteU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   953
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   954
                   [param('uint64_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   955
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   956
    cls.add_method('WriteU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   957
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   958
                   [param('uint8_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   959
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::WriteU8(uint8_t data, uint32_t len) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   960
    cls.add_method('WriteU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   961
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   962
                   [param('uint8_t', 'data'), param('uint32_t', 'len')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   963
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   964
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   965
def register_Ns3ByteTagIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   966
    ## packet.h (module 'network'): ns3::ByteTagIterator::ByteTagIterator(ns3::ByteTagIterator const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   967
    cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   968
    ## packet.h (module 'network'): bool ns3::ByteTagIterator::HasNext() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   969
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   970
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   971
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   972
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   973
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item ns3::ByteTagIterator::Next() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   974
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   975
                   'ns3::ByteTagIterator::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   976
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   977
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   978
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   979
def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   980
    ## packet.h (module 'network'): ns3::ByteTagIterator::Item::Item(ns3::ByteTagIterator::Item const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   981
    cls.add_constructor([param('ns3::ByteTagIterator::Item const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   982
    ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetEnd() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   983
    cls.add_method('GetEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   984
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   985
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   986
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   987
    ## packet.h (module 'network'): uint32_t ns3::ByteTagIterator::Item::GetStart() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   988
    cls.add_method('GetStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   989
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   990
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   991
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   992
    ## packet.h (module 'network'): void ns3::ByteTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   993
    cls.add_method('GetTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   994
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   995
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   996
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   997
    ## packet.h (module 'network'): ns3::TypeId ns3::ByteTagIterator::Item::GetTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   998
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   999
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1000
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1001
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1002
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1003
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1004
def register_Ns3ByteTagList_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1005
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1006
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1007
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::ByteTagList(ns3::ByteTagList const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1008
    cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1009
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1010
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1011
                   'ns3::TagBuffer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1012
                   [param('ns3::TypeId', 'tid'), param('uint32_t', 'bufferSize'), param('int32_t', 'start'), param('int32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1013
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::Add(ns3::ByteTagList const & o) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1014
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1015
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1016
                   [param('ns3::ByteTagList const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1017
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtEnd(int32_t adjustment, int32_t appendOffset) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1018
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1019
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1020
                   [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1021
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::AddAtStart(int32_t adjustment, int32_t prependOffset) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1022
    cls.add_method('AddAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1023
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1024
                   [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1025
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator ns3::ByteTagList::Begin(int32_t offsetStart, int32_t offsetEnd) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1026
    cls.add_method('Begin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1027
                   'ns3::ByteTagList::Iterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1028
                   [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1029
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1030
    ## byte-tag-list.h (module 'network'): void ns3::ByteTagList::RemoveAll() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1031
    cls.add_method('RemoveAll', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1032
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1033
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1034
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1035
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1036
def register_Ns3ByteTagListIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1037
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Iterator(ns3::ByteTagList::Iterator const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1038
    cls.add_constructor([param('ns3::ByteTagList::Iterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1039
    ## byte-tag-list.h (module 'network'): uint32_t ns3::ByteTagList::Iterator::GetOffsetStart() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1040
    cls.add_method('GetOffsetStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1041
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1042
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1043
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1044
    ## byte-tag-list.h (module 'network'): bool ns3::ByteTagList::Iterator::HasNext() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1045
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1046
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1047
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1048
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1049
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item ns3::ByteTagList::Iterator::Next() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1050
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1051
                   'ns3::ByteTagList::Iterator::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1052
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1053
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1054
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1055
def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1056
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::ByteTagList::Iterator::Item const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1057
    cls.add_constructor([param('ns3::ByteTagList::Iterator::Item const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1058
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::Item(ns3::TagBuffer buf) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1059
    cls.add_constructor([param('ns3::TagBuffer', 'buf')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1060
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::buf [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1061
    cls.add_instance_attribute('buf', 'ns3::TagBuffer', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1062
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::end [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1063
    cls.add_instance_attribute('end', 'int32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1064
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::size [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1065
    cls.add_instance_attribute('size', 'uint32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1066
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::start [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1067
    cls.add_instance_attribute('start', 'int32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1068
    ## byte-tag-list.h (module 'network'): ns3::ByteTagList::Iterator::Item::tid [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1069
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1070
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1071
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1072
def register_Ns3CallbackBase_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1073
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::CallbackBase const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1074
    cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1075
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1076
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1077
    ## callback.h (module 'core'): ns3::Ptr<ns3::CallbackImplBase> ns3::CallbackBase::GetImpl() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1078
    cls.add_method('GetImpl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1079
                   'ns3::Ptr< ns3::CallbackImplBase >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1080
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1081
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1082
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase(ns3::Ptr<ns3::CallbackImplBase> impl) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1083
    cls.add_constructor([param('ns3::Ptr< ns3::CallbackImplBase >', 'impl')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1084
                        visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1085
    ## callback.h (module 'core'): static std::string ns3::CallbackBase::Demangle(std::string const & mangled) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1086
    cls.add_method('Demangle', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1087
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1088
                   [param('std::string const &', 'mangled')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1089
                   is_static=True, visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1090
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1091
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1092
def register_Ns3EventGarbageCollector_methods(root_module, cls):
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1093
    ## event-garbage-collector.h (module 'core'): ns3::EventGarbageCollector::EventGarbageCollector(ns3::EventGarbageCollector const & arg0) [copy constructor]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1094
    cls.add_constructor([param('ns3::EventGarbageCollector const &', 'arg0')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1095
    ## event-garbage-collector.h (module 'core'): ns3::EventGarbageCollector::EventGarbageCollector() [constructor]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1096
    cls.add_constructor([])
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1097
    ## event-garbage-collector.h (module 'core'): void ns3::EventGarbageCollector::Track(ns3::EventId event) [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1098
    cls.add_method('Track', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1099
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1100
                   [param('ns3::EventId', 'event')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1101
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1102
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1103
def register_Ns3EventId_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1104
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1105
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1106
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::EventId const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1107
    cls.add_constructor([param('ns3::EventId const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1108
    ## event-id.h (module 'core'): ns3::EventId::EventId() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1109
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1110
    ## event-id.h (module 'core'): ns3::EventId::EventId(ns3::Ptr<ns3::EventImpl> const & impl, uint64_t ts, uint32_t context, uint32_t uid) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1111
    cls.add_constructor([param('ns3::Ptr< ns3::EventImpl > const &', 'impl'), param('uint64_t', 'ts'), param('uint32_t', 'context'), param('uint32_t', 'uid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1112
    ## event-id.h (module 'core'): void ns3::EventId::Cancel() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1113
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1114
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1115
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1116
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetContext() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1117
    cls.add_method('GetContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1118
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1119
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1120
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1121
    ## event-id.h (module 'core'): uint64_t ns3::EventId::GetTs() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1122
    cls.add_method('GetTs', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1123
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1124
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1125
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1126
    ## event-id.h (module 'core'): uint32_t ns3::EventId::GetUid() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1127
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1128
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1129
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1130
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1131
    ## event-id.h (module 'core'): bool ns3::EventId::IsExpired() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1132
    cls.add_method('IsExpired', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1133
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1134
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1135
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1136
    ## event-id.h (module 'core'): bool ns3::EventId::IsRunning() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1137
    cls.add_method('IsRunning', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1138
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1139
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1140
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1141
    ## event-id.h (module 'core'): ns3::EventImpl * ns3::EventId::PeekEventImpl() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1142
    cls.add_method('PeekEventImpl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1143
                   'ns3::EventImpl *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1144
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1145
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1146
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1147
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1148
def register_Ns3Inet6SocketAddress_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1149
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Inet6SocketAddress const & arg0) [copy constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1150
    cls.add_constructor([param('ns3::Inet6SocketAddress const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1151
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Ipv6Address ipv6, uint16_t port) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1152
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1153
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(ns3::Ipv6Address ipv6) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1154
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1155
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(uint16_t port) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1156
    cls.add_constructor([param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1157
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(char const * ipv6, uint16_t port) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1158
    cls.add_constructor([param('char const *', 'ipv6'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1159
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress::Inet6SocketAddress(char const * ipv6) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1160
    cls.add_constructor([param('char const *', 'ipv6')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1161
    ## inet6-socket-address.h (module 'network'): static ns3::Inet6SocketAddress ns3::Inet6SocketAddress::ConvertFrom(ns3::Address const & addr) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1162
    cls.add_method('ConvertFrom', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1163
                   'ns3::Inet6SocketAddress', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1164
                   [param('ns3::Address const &', 'addr')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1165
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1166
    ## inet6-socket-address.h (module 'network'): ns3::Ipv6Address ns3::Inet6SocketAddress::GetIpv6() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1167
    cls.add_method('GetIpv6', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1168
                   'ns3::Ipv6Address', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1169
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1170
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1171
    ## inet6-socket-address.h (module 'network'): uint16_t ns3::Inet6SocketAddress::GetPort() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1172
    cls.add_method('GetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1173
                   'uint16_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1174
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1175
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1176
    ## inet6-socket-address.h (module 'network'): static bool ns3::Inet6SocketAddress::IsMatchingType(ns3::Address const & addr) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1177
    cls.add_method('IsMatchingType', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1178
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1179
                   [param('ns3::Address const &', 'addr')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1180
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1181
    ## inet6-socket-address.h (module 'network'): void ns3::Inet6SocketAddress::SetIpv6(ns3::Ipv6Address ipv6) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1182
    cls.add_method('SetIpv6', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1183
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1184
                   [param('ns3::Ipv6Address', 'ipv6')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1185
    ## inet6-socket-address.h (module 'network'): void ns3::Inet6SocketAddress::SetPort(uint16_t port) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1186
    cls.add_method('SetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1187
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1188
                   [param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1189
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1191
def register_Ns3InetSocketAddress_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1192
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::InetSocketAddress const & arg0) [copy constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1193
    cls.add_constructor([param('ns3::InetSocketAddress const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1194
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::Ipv4Address ipv4, uint16_t port) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1195
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1196
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(ns3::Ipv4Address ipv4) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1197
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1198
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(uint16_t port) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1199
    cls.add_constructor([param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1200
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(char const * ipv4, uint16_t port) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1201
    cls.add_constructor([param('char const *', 'ipv4'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1202
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress::InetSocketAddress(char const * ipv4) [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1203
    cls.add_constructor([param('char const *', 'ipv4')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1204
    ## inet-socket-address.h (module 'network'): static ns3::InetSocketAddress ns3::InetSocketAddress::ConvertFrom(ns3::Address const & address) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1205
    cls.add_method('ConvertFrom', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1206
                   'ns3::InetSocketAddress', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1207
                   [param('ns3::Address const &', 'address')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1208
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1209
    ## inet-socket-address.h (module 'network'): ns3::Ipv4Address ns3::InetSocketAddress::GetIpv4() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1210
    cls.add_method('GetIpv4', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1211
                   'ns3::Ipv4Address', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1212
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1213
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1214
    ## inet-socket-address.h (module 'network'): uint16_t ns3::InetSocketAddress::GetPort() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1215
    cls.add_method('GetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1216
                   'uint16_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1217
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1218
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1219
    ## inet-socket-address.h (module 'network'): static bool ns3::InetSocketAddress::IsMatchingType(ns3::Address const & address) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1220
    cls.add_method('IsMatchingType', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1221
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1222
                   [param('ns3::Address const &', 'address')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1223
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1224
    ## inet-socket-address.h (module 'network'): void ns3::InetSocketAddress::SetIpv4(ns3::Ipv4Address address) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1225
    cls.add_method('SetIpv4', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1226
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1227
                   [param('ns3::Ipv4Address', 'address')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1228
    ## inet-socket-address.h (module 'network'): void ns3::InetSocketAddress::SetPort(uint16_t port) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1229
    cls.add_method('SetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1230
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1231
                   [param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1232
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1233
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1234
def register_Ns3IntToType__0_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1235
    ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1236
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1237
    ## int-to-type.h (module 'core'): ns3::IntToType<0>::IntToType(ns3::IntToType<0> const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1238
    cls.add_constructor([param('ns3::IntToType< 0 > const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1239
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1240
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1241
def register_Ns3IntToType__1_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1242
    ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1243
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1244
    ## int-to-type.h (module 'core'): ns3::IntToType<1>::IntToType(ns3::IntToType<1> const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1245
    cls.add_constructor([param('ns3::IntToType< 1 > const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1246
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1247
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1248
def register_Ns3IntToType__2_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1249
    ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1250
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1251
    ## int-to-type.h (module 'core'): ns3::IntToType<2>::IntToType(ns3::IntToType<2> const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1252
    cls.add_constructor([param('ns3::IntToType< 2 > const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1253
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1254
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1255
def register_Ns3IntToType__3_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1256
    ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1257
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1258
    ## int-to-type.h (module 'core'): ns3::IntToType<3>::IntToType(ns3::IntToType<3> const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1259
    cls.add_constructor([param('ns3::IntToType< 3 > const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1260
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1261
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1262
def register_Ns3IntToType__4_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1263
    ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1264
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1265
    ## int-to-type.h (module 'core'): ns3::IntToType<4>::IntToType(ns3::IntToType<4> const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1266
    cls.add_constructor([param('ns3::IntToType< 4 > const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1267
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1268
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1269
def register_Ns3IntToType__5_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1270
    ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1271
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1272
    ## int-to-type.h (module 'core'): ns3::IntToType<5>::IntToType(ns3::IntToType<5> const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1273
    cls.add_constructor([param('ns3::IntToType< 5 > const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1274
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1275
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1276
def register_Ns3IntToType__6_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1277
    ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1278
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1279
    ## int-to-type.h (module 'core'): ns3::IntToType<6>::IntToType(ns3::IntToType<6> const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1280
    cls.add_constructor([param('ns3::IntToType< 6 > const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1281
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1282
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1283
def register_Ns3Ipv4Address_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1284
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1285
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1286
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1287
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1288
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(ns3::Ipv4Address const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1289
    cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1290
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1291
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1292
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(uint32_t address) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1293
    cls.add_constructor([param('uint32_t', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1294
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address::Ipv4Address(char const * address) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1295
    cls.add_constructor([param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1296
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::CombineMask(ns3::Ipv4Mask const & mask) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1297
    cls.add_method('CombineMask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1298
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1299
                   [param('ns3::Ipv4Mask const &', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1300
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1301
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::ConvertFrom(ns3::Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1302
    cls.add_method('ConvertFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1303
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1304
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1305
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1306
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::Deserialize(uint8_t const * buf) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1307
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1308
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1309
                   [param('uint8_t const *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1310
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1311
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Address::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1312
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1313
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1314
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1315
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1316
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetAny() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1317
    cls.add_method('GetAny', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1318
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1319
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1320
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1321
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetBroadcast() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1322
    cls.add_method('GetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1323
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1324
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1325
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1326
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetLoopback() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1327
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1328
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1329
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1330
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1331
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4Address::GetSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1332
    cls.add_method('GetSubnetDirectedBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1333
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1334
                   [param('ns3::Ipv4Mask const &', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1335
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1336
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Address ns3::Ipv4Address::GetZero() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1337
    cls.add_method('GetZero', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1338
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1339
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1340
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1341
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsBroadcast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1342
    cls.add_method('IsBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1343
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1344
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1345
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1346
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsEqual(ns3::Ipv4Address const & other) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1347
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1348
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1349
                   [param('ns3::Ipv4Address const &', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1350
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1351
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsLocalMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1352
    cls.add_method('IsLocalMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1353
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1354
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1355
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1356
    ## ipv4-address.h (module 'network'): static bool ns3::Ipv4Address::IsMatchingType(ns3::Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1357
    cls.add_method('IsMatchingType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1358
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1359
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1360
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1361
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1362
    cls.add_method('IsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1363
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1364
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1365
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1366
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Address::IsSubnetDirectedBroadcast(ns3::Ipv4Mask const & mask) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1367
    cls.add_method('IsSubnetDirectedBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1368
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1369
                   [param('ns3::Ipv4Mask const &', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1370
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1371
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1372
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1373
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1374
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1375
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1376
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Serialize(uint8_t * buf) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1377
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1378
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1379
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1380
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1381
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(uint32_t address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1382
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1383
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1384
                   [param('uint32_t', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1385
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Address::Set(char const * address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1386
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1387
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1388
                   [param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1389
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1390
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1391
def register_Ns3Ipv4InterfaceAddress_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1392
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1393
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1394
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1395
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1396
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1397
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4Address local, ns3::Ipv4Mask mask) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1398
    cls.add_constructor([param('ns3::Ipv4Address', 'local'), param('ns3::Ipv4Mask', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1399
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::Ipv4InterfaceAddress(ns3::Ipv4InterfaceAddress const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1400
    cls.add_constructor([param('ns3::Ipv4InterfaceAddress const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1401
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetBroadcast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1402
    cls.add_method('GetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1403
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1404
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1405
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1406
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4InterfaceAddress::GetLocal() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1407
    cls.add_method('GetLocal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1408
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1409
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1410
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1411
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4Mask ns3::Ipv4InterfaceAddress::GetMask() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1412
    cls.add_method('GetMask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1413
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1414
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1415
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1416
    ## ipv4-interface-address.h (module 'internet'): ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e ns3::Ipv4InterfaceAddress::GetScope() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1417
    cls.add_method('GetScope', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1418
                   'ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1419
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1420
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1421
    ## ipv4-interface-address.h (module 'internet'): bool ns3::Ipv4InterfaceAddress::IsSecondary() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1422
    cls.add_method('IsSecondary', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1423
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1424
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1425
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1426
    ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetBroadcast(ns3::Ipv4Address broadcast) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1427
    cls.add_method('SetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1428
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1429
                   [param('ns3::Ipv4Address', 'broadcast')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1430
    ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetLocal(ns3::Ipv4Address local) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1431
    cls.add_method('SetLocal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1432
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1433
                   [param('ns3::Ipv4Address', 'local')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1434
    ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetMask(ns3::Ipv4Mask mask) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1435
    cls.add_method('SetMask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1436
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1437
                   [param('ns3::Ipv4Mask', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1438
    ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetPrimary() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1439
    cls.add_method('SetPrimary', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1440
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1441
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1442
    ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetScope(ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1443
    cls.add_method('SetScope', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1444
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1445
                   [param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1446
    ## ipv4-interface-address.h (module 'internet'): void ns3::Ipv4InterfaceAddress::SetSecondary() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1447
    cls.add_method('SetSecondary', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1448
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1449
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1450
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1451
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1452
def register_Ns3Ipv4Mask_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1453
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1454
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1455
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1456
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(ns3::Ipv4Mask const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1457
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1458
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1459
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1460
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(uint32_t mask) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1461
    cls.add_constructor([param('uint32_t', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1462
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask::Ipv4Mask(char const * mask) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1463
    cls.add_constructor([param('char const *', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1464
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1465
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1466
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1467
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1468
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1469
    ## ipv4-address.h (module 'network'): uint32_t ns3::Ipv4Mask::GetInverse() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1470
    cls.add_method('GetInverse', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1471
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1472
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1473
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1474
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetLoopback() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1475
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1476
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1477
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1478
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1479
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetOnes() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1480
    cls.add_method('GetOnes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1481
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1482
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1483
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1484
    ## ipv4-address.h (module 'network'): uint16_t ns3::Ipv4Mask::GetPrefixLength() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1485
    cls.add_method('GetPrefixLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1486
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1487
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1488
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1489
    ## ipv4-address.h (module 'network'): static ns3::Ipv4Mask ns3::Ipv4Mask::GetZero() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1490
    cls.add_method('GetZero', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1491
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1492
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1493
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1494
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsEqual(ns3::Ipv4Mask other) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1495
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1496
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1497
                   [param('ns3::Ipv4Mask', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1498
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1499
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4Mask::IsMatch(ns3::Ipv4Address a, ns3::Ipv4Address b) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1500
    cls.add_method('IsMatch', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1501
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1502
                   [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1503
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1504
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1505
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1506
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1507
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1508
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1509
    ## ipv4-address.h (module 'network'): void ns3::Ipv4Mask::Set(uint32_t mask) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1510
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1511
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1512
                   [param('uint32_t', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1513
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1514
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1515
def register_Ns3Ipv4RoutingHelper_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1516
    ## ipv4-routing-helper.h (module 'internet'): ns3::Ipv4RoutingHelper::Ipv4RoutingHelper() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1517
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1518
    ## ipv4-routing-helper.h (module 'internet'): ns3::Ipv4RoutingHelper::Ipv4RoutingHelper(ns3::Ipv4RoutingHelper const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1519
    cls.add_constructor([param('ns3::Ipv4RoutingHelper const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1520
    ## ipv4-routing-helper.h (module 'internet'): ns3::Ipv4RoutingHelper * ns3::Ipv4RoutingHelper::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1521
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1522
                   'ns3::Ipv4RoutingHelper *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1523
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1524
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1525
    ## ipv4-routing-helper.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4RoutingHelper::Create(ns3::Ptr<ns3::Node> node) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1526
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1527
                   'ns3::Ptr< ns3::Ipv4RoutingProtocol >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1528
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1529
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1530
    ## ipv4-routing-helper.h (module 'internet'): void ns3::Ipv4RoutingHelper::PrintRoutingTableAllAt(ns3::Time printTime, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1531
    cls.add_method('PrintRoutingTableAllAt', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1532
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1533
                   [param('ns3::Time', 'printTime'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1534
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1535
    ## ipv4-routing-helper.h (module 'internet'): void ns3::Ipv4RoutingHelper::PrintRoutingTableAllEvery(ns3::Time printInterval, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1536
    cls.add_method('PrintRoutingTableAllEvery', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1537
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1538
                   [param('ns3::Time', 'printInterval'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1539
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1540
    ## ipv4-routing-helper.h (module 'internet'): void ns3::Ipv4RoutingHelper::PrintRoutingTableAt(ns3::Time printTime, ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1541
    cls.add_method('PrintRoutingTableAt', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1542
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1543
                   [param('ns3::Time', 'printTime'), param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1544
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1545
    ## ipv4-routing-helper.h (module 'internet'): void ns3::Ipv4RoutingHelper::PrintRoutingTableEvery(ns3::Time printInterval, ns3::Ptr<ns3::Node> node, ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1546
    cls.add_method('PrintRoutingTableEvery', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1547
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1548
                   [param('ns3::Time', 'printInterval'), param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1549
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1550
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1551
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1552
def register_Ns3Ipv6Address_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1553
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1554
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1555
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1556
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1557
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1558
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1559
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(char const * address) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1560
    cls.add_constructor([param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1561
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(uint8_t * address) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1562
    cls.add_constructor([param('uint8_t *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1563
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const & addr) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1564
    cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1565
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address::Ipv6Address(ns3::Ipv6Address const * addr) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1566
    cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1567
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6Address::CombinePrefix(ns3::Ipv6Prefix const & prefix) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1568
    cls.add_method('CombinePrefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1569
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1570
                   [param('ns3::Ipv6Prefix const &', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1571
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::ConvertFrom(ns3::Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1572
    cls.add_method('ConvertFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1573
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1574
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1575
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1576
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::Deserialize(uint8_t const * buf) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1577
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1578
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1579
                   [param('uint8_t const *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1580
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1581
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllHostsMulticast() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1582
    cls.add_method('GetAllHostsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1583
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1584
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1585
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1586
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllNodesMulticast() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1587
    cls.add_method('GetAllNodesMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1588
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1589
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1590
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1591
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAllRoutersMulticast() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1592
    cls.add_method('GetAllRoutersMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1593
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1594
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1595
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1596
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetAny() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1597
    cls.add_method('GetAny', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1598
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1599
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1600
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1601
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::GetBytes(uint8_t * buf) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1602
    cls.add_method('GetBytes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1603
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1604
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1605
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1606
    ## 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: 7586
diff changeset
  1607
    cls.add_method('GetIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1608
                   'ns3::Ipv4Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1609
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1610
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1611
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetLoopback() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1612
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1613
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1614
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1615
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1616
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetOnes() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1617
    cls.add_method('GetOnes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1618
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1619
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1620
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1621
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::GetZero() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1622
    cls.add_method('GetZero', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1623
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1624
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1625
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1626
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllHostsMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1627
    cls.add_method('IsAllHostsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1628
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1629
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1630
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1631
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllNodesMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1632
    cls.add_method('IsAllNodesMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1633
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1634
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1635
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1636
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAllRoutersMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1637
    cls.add_method('IsAllRoutersMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1638
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1639
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1640
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1641
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsAny() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1642
    cls.add_method('IsAny', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1643
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1644
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1645
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1646
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsEqual(ns3::Ipv6Address const & other) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1647
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1648
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1649
                   [param('ns3::Ipv6Address const &', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1650
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1651
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1652
    cls.add_method('IsIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1653
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1654
                   [])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1655
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocal() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1656
    cls.add_method('IsLinkLocal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1657
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1658
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1659
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1660
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLinkLocalMulticast() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1661
    cls.add_method('IsLinkLocalMulticast', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1662
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1663
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1664
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1665
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsLocalhost() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1666
    cls.add_method('IsLocalhost', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1667
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1668
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1669
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1670
    ## ipv6-address.h (module 'network'): static bool ns3::Ipv6Address::IsMatchingType(ns3::Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1671
    cls.add_method('IsMatchingType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1672
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1673
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1674
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1675
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1676
    cls.add_method('IsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1677
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1678
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1679
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1680
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsSolicitedMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1681
    cls.add_method('IsSolicitedMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1682
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1683
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1684
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1685
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac48Address addr, ns3::Ipv6Address prefix) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1686
    cls.add_method('MakeAutoconfiguredAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1687
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1688
                   [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1689
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1690
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac48Address mac) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1691
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1692
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1693
                   [param('ns3::Mac48Address', 'mac')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1694
                   is_static=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1695
    ## 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: 7586
diff changeset
  1696
    cls.add_method('MakeIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1697
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1698
                   [param('ns3::Ipv4Address', 'addr')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1699
                   is_static=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1700
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeSolicitedAddress(ns3::Ipv6Address addr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1701
    cls.add_method('MakeSolicitedAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1702
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1703
                   [param('ns3::Ipv6Address', 'addr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1704
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1705
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1706
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1707
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1708
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1709
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1710
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Serialize(uint8_t * buf) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1711
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1712
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1713
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1714
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1715
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(char const * address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1716
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1717
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1718
                   [param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1719
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Address::Set(uint8_t * address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1720
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1721
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1722
                   [param('uint8_t *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1723
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1724
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1725
def register_Ns3Ipv6InterfaceAddress_methods(root_module, cls):
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1726
    cls.add_binary_comparison_operator('!=')
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1727
    cls.add_output_stream_operator()
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1728
    cls.add_binary_comparison_operator('==')
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1729
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress() [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1730
    cls.add_constructor([])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1731
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1732
    cls.add_constructor([param('ns3::Ipv6Address', 'address')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1733
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6Address address, ns3::Ipv6Prefix prefix) [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1734
    cls.add_constructor([param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6Prefix', 'prefix')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1735
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Ipv6InterfaceAddress(ns3::Ipv6InterfaceAddress const & o) [copy constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1736
    cls.add_constructor([param('ns3::Ipv6InterfaceAddress const &', 'o')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1737
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6InterfaceAddress::GetAddress() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1738
    cls.add_method('GetAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1739
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1740
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1741
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1742
    ## ipv6-interface-address.h (module 'internet'): uint32_t ns3::Ipv6InterfaceAddress::GetNsDadUid() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1743
    cls.add_method('GetNsDadUid', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1744
                   'uint32_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1745
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1746
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1747
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6Prefix ns3::Ipv6InterfaceAddress::GetPrefix() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1748
    cls.add_method('GetPrefix', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1749
                   'ns3::Ipv6Prefix', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1750
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1751
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1752
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::Scope_e ns3::Ipv6InterfaceAddress::GetScope() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1753
    cls.add_method('GetScope', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1754
                   'ns3::Ipv6InterfaceAddress::Scope_e', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1755
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1756
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1757
    ## ipv6-interface-address.h (module 'internet'): ns3::Ipv6InterfaceAddress::State_e ns3::Ipv6InterfaceAddress::GetState() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1758
    cls.add_method('GetState', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1759
                   'ns3::Ipv6InterfaceAddress::State_e', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1760
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1761
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1762
    ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetAddress(ns3::Ipv6Address address) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1763
    cls.add_method('SetAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1764
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1765
                   [param('ns3::Ipv6Address', 'address')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1766
    ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetNsDadUid(uint32_t uid) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1767
    cls.add_method('SetNsDadUid', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1768
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1769
                   [param('uint32_t', 'uid')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1770
    ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetScope(ns3::Ipv6InterfaceAddress::Scope_e scope) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1771
    cls.add_method('SetScope', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1772
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1773
                   [param('ns3::Ipv6InterfaceAddress::Scope_e', 'scope')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1774
    ## ipv6-interface-address.h (module 'internet'): void ns3::Ipv6InterfaceAddress::SetState(ns3::Ipv6InterfaceAddress::State_e state) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1775
    cls.add_method('SetState', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1776
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1777
                   [param('ns3::Ipv6InterfaceAddress::State_e', 'state')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1778
    return
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1779
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1780
def register_Ns3Ipv6Prefix_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1781
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1782
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1783
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1784
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1785
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1786
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t * prefix) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1787
    cls.add_constructor([param('uint8_t *', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1788
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(char const * prefix) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1789
    cls.add_constructor([param('char const *', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1790
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(uint8_t prefix) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1791
    cls.add_constructor([param('uint8_t', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1792
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const & prefix) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1793
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1794
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix::Ipv6Prefix(ns3::Ipv6Prefix const * prefix) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1795
    cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1796
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::GetBytes(uint8_t * buf) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1797
    cls.add_method('GetBytes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1798
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1799
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1800
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1801
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetLoopback() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1802
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1803
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1804
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1805
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1806
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetOnes() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1807
    cls.add_method('GetOnes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1808
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1809
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1810
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1811
    ## ipv6-address.h (module 'network'): uint8_t ns3::Ipv6Prefix::GetPrefixLength() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1812
    cls.add_method('GetPrefixLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1813
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1814
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1815
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1816
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Prefix ns3::Ipv6Prefix::GetZero() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1817
    cls.add_method('GetZero', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1818
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1819
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1820
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1821
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsEqual(ns3::Ipv6Prefix const & other) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1822
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1823
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1824
                   [param('ns3::Ipv6Prefix const &', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1825
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1826
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Prefix::IsMatch(ns3::Ipv6Address a, ns3::Ipv6Address b) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1827
    cls.add_method('IsMatch', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1828
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1829
                   [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1830
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1831
    ## ipv6-address.h (module 'network'): void ns3::Ipv6Prefix::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1832
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1833
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1834
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1835
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1836
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1837
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1838
def register_Ns3NodeContainer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1839
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1840
    cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1841
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1842
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1843
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::Ptr<ns3::Node> node) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1844
    cls.add_constructor([param('ns3::Ptr< ns3::Node >', 'node')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1845
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(std::string nodeName) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1846
    cls.add_constructor([param('std::string', 'nodeName')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1847
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1848
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1849
    ## node-container.h (module 'network'): ns3::NodeContainer::NodeContainer(ns3::NodeContainer const & a, ns3::NodeContainer const & b, ns3::NodeContainer const & c) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1850
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1851
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1852
    cls.add_constructor([param('ns3::NodeContainer const &', 'a'), param('ns3::NodeContainer const &', 'b'), param('ns3::NodeContainer const &', 'c'), param('ns3::NodeContainer const &', 'd')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1853
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1854
    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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1855
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::NodeContainer other) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1856
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1857
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1858
                   [param('ns3::NodeContainer', 'other')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1859
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(ns3::Ptr<ns3::Node> node) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1860
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1861
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1862
                   [param('ns3::Ptr< ns3::Node >', 'node')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1863
    ## node-container.h (module 'network'): void ns3::NodeContainer::Add(std::string nodeName) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1864
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1865
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1866
                   [param('std::string', 'nodeName')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1867
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1868
    cls.add_method('Begin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1869
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1870
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1871
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1872
    ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1873
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1874
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1875
                   [param('uint32_t', 'n')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1876
    ## node-container.h (module 'network'): void ns3::NodeContainer::Create(uint32_t n, uint32_t systemId) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1877
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1878
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1879
                   [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1880
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1881
    cls.add_method('End', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1882
                   '__gnu_cxx::__normal_iterator< ns3::Ptr< ns3::Node > const, std::vector< ns3::Ptr< ns3::Node > > >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1883
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1884
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1885
    ## node-container.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NodeContainer::Get(uint32_t i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1886
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1887
                   'ns3::Ptr< ns3::Node >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1888
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1889
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1890
    ## node-container.h (module 'network'): static ns3::NodeContainer ns3::NodeContainer::GetGlobal() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1891
    cls.add_method('GetGlobal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1892
                   'ns3::NodeContainer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1893
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1894
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1895
    ## node-container.h (module 'network'): uint32_t ns3::NodeContainer::GetN() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1896
    cls.add_method('GetN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1897
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1898
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1899
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1900
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1901
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1902
def register_Ns3ObjectBase_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1903
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1904
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1905
    ## object-base.h (module 'core'): ns3::ObjectBase::ObjectBase(ns3::ObjectBase const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1906
    cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1907
    ## object-base.h (module 'core'): void ns3::ObjectBase::GetAttribute(std::string name, ns3::AttributeValue & value) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1908
    cls.add_method('GetAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1909
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1910
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1911
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1912
    ## object-base.h (module 'core'): bool ns3::ObjectBase::GetAttributeFailSafe(std::string name, ns3::AttributeValue & attribute) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1913
    cls.add_method('GetAttributeFailSafe', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1914
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1915
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1916
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1917
    ## object-base.h (module 'core'): ns3::TypeId ns3::ObjectBase::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1918
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1919
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1920
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1921
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1922
    ## object-base.h (module 'core'): static ns3::TypeId ns3::ObjectBase::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1923
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1924
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1925
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1926
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1927
    ## object-base.h (module 'core'): void ns3::ObjectBase::SetAttribute(std::string name, ns3::AttributeValue const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1928
    cls.add_method('SetAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1929
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1930
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1931
    ## object-base.h (module 'core'): bool ns3::ObjectBase::SetAttributeFailSafe(std::string name, ns3::AttributeValue const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1932
    cls.add_method('SetAttributeFailSafe', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1933
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1934
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1935
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1936
    cls.add_method('TraceConnect', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1937
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1938
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1939
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceConnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1940
    cls.add_method('TraceConnectWithoutContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1941
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1942
                   [param('std::string', 'name'), param('ns3::CallbackBase const &', 'cb')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1943
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnect(std::string name, std::string context, ns3::CallbackBase const & cb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1944
    cls.add_method('TraceDisconnect', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1945
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1946
                   [param('std::string', 'name'), param('std::string', 'context'), param('ns3::CallbackBase const &', 'cb')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1947
    ## object-base.h (module 'core'): bool ns3::ObjectBase::TraceDisconnectWithoutContext(std::string name, ns3::CallbackBase const & cb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1948
    cls.add_method('TraceDisconnectWithoutContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1949
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1950
                   [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
  1951
    ## object-base.h (module 'core'): void ns3::ObjectBase::ConstructSelf(ns3::AttributeConstructionList const & attributes) [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1952
    cls.add_method('ConstructSelf', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1953
                   'void', 
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1954
                   [param('ns3::AttributeConstructionList const &', 'attributes')], 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1955
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1956
    ## object-base.h (module 'core'): void ns3::ObjectBase::NotifyConstructionCompleted() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1957
    cls.add_method('NotifyConstructionCompleted', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1958
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1959
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1960
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1961
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1962
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1963
def register_Ns3ObjectDeleter_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1964
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1965
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1966
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter(ns3::ObjectDeleter const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1967
    cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1968
    ## object.h (module 'core'): static void ns3::ObjectDeleter::Delete(ns3::Object * object) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1969
    cls.add_method('Delete', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1970
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1971
                   [param('ns3::Object *', 'object')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1972
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1973
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1974
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1975
def register_Ns3ObjectFactory_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1976
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1977
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory(ns3::ObjectFactory const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1978
    cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1979
    ## object-factory.h (module 'core'): ns3::ObjectFactory::ObjectFactory() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1980
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1981
    ## 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
  1982
    cls.add_constructor([param('std::string', 'typeId')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1983
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::Object> ns3::ObjectFactory::Create() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1984
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1985
                   'ns3::Ptr< ns3::Object >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1986
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1987
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1988
    ## object-factory.h (module 'core'): ns3::TypeId ns3::ObjectFactory::GetTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1989
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1990
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1991
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1992
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1993
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::Set(std::string name, ns3::AttributeValue const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1994
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1995
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1996
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1997
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(ns3::TypeId tid) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1998
    cls.add_method('SetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1999
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2000
                   [param('ns3::TypeId', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2001
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(char const * tid) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2002
    cls.add_method('SetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2003
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2004
                   [param('char const *', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2005
    ## object-factory.h (module 'core'): void ns3::ObjectFactory::SetTypeId(std::string tid) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2006
    cls.add_method('SetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2007
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2008
                   [param('std::string', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2009
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2010
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2011
def register_Ns3OlsrHelper_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2012
    ## olsr-helper.h (module 'olsr'): ns3::OlsrHelper::OlsrHelper() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2013
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2014
    ## olsr-helper.h (module 'olsr'): ns3::OlsrHelper::OlsrHelper(ns3::OlsrHelper const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2015
    cls.add_constructor([param('ns3::OlsrHelper const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2016
    ## olsr-helper.h (module 'olsr'): ns3::OlsrHelper * ns3::OlsrHelper::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2017
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2018
                   'ns3::OlsrHelper *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2019
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2020
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2021
    ## olsr-helper.h (module 'olsr'): void ns3::OlsrHelper::ExcludeInterface(ns3::Ptr<ns3::Node> node, uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2022
    cls.add_method('ExcludeInterface', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2023
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2024
                   [param('ns3::Ptr< ns3::Node >', 'node'), param('uint32_t', 'interface')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2025
    ## olsr-helper.h (module 'olsr'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::OlsrHelper::Create(ns3::Ptr<ns3::Node> node) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2026
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2027
                   'ns3::Ptr< ns3::Ipv4RoutingProtocol >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2028
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2029
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2030
    ## olsr-helper.h (module 'olsr'): void ns3::OlsrHelper::Set(std::string name, ns3::AttributeValue const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2031
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2032
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2033
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  2034
    ## olsr-helper.h (module 'olsr'): int64_t ns3::OlsrHelper::AssignStreams(ns3::NodeContainer c, int64_t stream) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  2035
    cls.add_method('AssignStreams', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  2036
                   'int64_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  2037
                   [param('ns3::NodeContainer', 'c'), param('int64_t', 'stream')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2038
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2039
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2040
def register_Ns3OlsrState_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2041
    ## olsr-state.h (module 'olsr'): ns3::OlsrState::OlsrState(ns3::OlsrState const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2042
    cls.add_constructor([param('ns3::OlsrState const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2043
    ## olsr-state.h (module 'olsr'): ns3::OlsrState::OlsrState() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2044
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2045
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseAssociation(ns3::olsr::Association const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2046
    cls.add_method('EraseAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2047
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2048
                   [param('ns3::olsr::Association const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2049
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseAssociationTuple(ns3::olsr::AssociationTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2050
    cls.add_method('EraseAssociationTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2051
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2052
                   [param('ns3::olsr::AssociationTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2053
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseDuplicateTuple(ns3::olsr::DuplicateTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2054
    cls.add_method('EraseDuplicateTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2055
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2056
                   [param('ns3::olsr::DuplicateTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2057
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseIfaceAssocTuple(ns3::olsr::IfaceAssocTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2058
    cls.add_method('EraseIfaceAssocTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2059
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2060
                   [param('ns3::olsr::IfaceAssocTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2061
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseLinkTuple(ns3::olsr::LinkTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2062
    cls.add_method('EraseLinkTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2063
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2064
                   [param('ns3::olsr::LinkTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2065
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseMprSelectorTuple(ns3::olsr::MprSelectorTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2066
    cls.add_method('EraseMprSelectorTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2067
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2068
                   [param('ns3::olsr::MprSelectorTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2069
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseMprSelectorTuples(ns3::Ipv4Address const & mainAddr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2070
    cls.add_method('EraseMprSelectorTuples', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2071
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2072
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2073
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseNeighborTuple(ns3::olsr::NeighborTuple const & neighborTuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2074
    cls.add_method('EraseNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2075
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2076
                   [param('ns3::olsr::NeighborTuple const &', 'neighborTuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2077
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseNeighborTuple(ns3::Ipv4Address const & mainAddr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2078
    cls.add_method('EraseNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2079
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2080
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2081
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseOlderTopologyTuples(ns3::Ipv4Address const & lastAddr, uint16_t ansn) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2082
    cls.add_method('EraseOlderTopologyTuples', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2083
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2084
                   [param('ns3::Ipv4Address const &', 'lastAddr'), param('uint16_t', 'ansn')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2085
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseTopologyTuple(ns3::olsr::TopologyTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2086
    cls.add_method('EraseTopologyTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2087
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2088
                   [param('ns3::olsr::TopologyTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2089
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseTwoHopNeighborTuple(ns3::olsr::TwoHopNeighborTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2090
    cls.add_method('EraseTwoHopNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2091
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2092
                   [param('ns3::olsr::TwoHopNeighborTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2093
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseTwoHopNeighborTuples(ns3::Ipv4Address const & neighbor) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2094
    cls.add_method('EraseTwoHopNeighborTuples', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2095
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2096
                   [param('ns3::Ipv4Address const &', 'neighbor')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2097
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::EraseTwoHopNeighborTuples(ns3::Ipv4Address const & neighbor, ns3::Ipv4Address const & twoHopNeighbor) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2098
    cls.add_method('EraseTwoHopNeighborTuples', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2099
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2100
                   [param('ns3::Ipv4Address const &', 'neighbor'), param('ns3::Ipv4Address const &', 'twoHopNeighbor')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2101
    ## olsr-state.h (module 'olsr'): ns3::olsr::AssociationTuple * ns3::OlsrState::FindAssociationTuple(ns3::Ipv4Address const & gatewayAddr, ns3::Ipv4Address const & networkAddr, ns3::Ipv4Mask const & netmask) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2102
    cls.add_method('FindAssociationTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2103
                   'ns3::olsr::AssociationTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2104
                   [param('ns3::Ipv4Address const &', 'gatewayAddr'), param('ns3::Ipv4Address const &', 'networkAddr'), param('ns3::Ipv4Mask const &', 'netmask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2105
    ## olsr-state.h (module 'olsr'): ns3::olsr::DuplicateTuple * ns3::OlsrState::FindDuplicateTuple(ns3::Ipv4Address const & address, uint16_t sequenceNumber) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2106
    cls.add_method('FindDuplicateTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2107
                   'ns3::olsr::DuplicateTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2108
                   [param('ns3::Ipv4Address const &', 'address'), param('uint16_t', 'sequenceNumber')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2109
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocTuple * ns3::OlsrState::FindIfaceAssocTuple(ns3::Ipv4Address const & ifaceAddr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2110
    cls.add_method('FindIfaceAssocTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2111
                   'ns3::olsr::IfaceAssocTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2112
                   [param('ns3::Ipv4Address const &', 'ifaceAddr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2113
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocTuple const * ns3::OlsrState::FindIfaceAssocTuple(ns3::Ipv4Address const & ifaceAddr) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2114
    cls.add_method('FindIfaceAssocTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2115
                   'ns3::olsr::IfaceAssocTuple const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2116
                   [param('ns3::Ipv4Address const &', 'ifaceAddr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2117
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2118
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkTuple * ns3::OlsrState::FindLinkTuple(ns3::Ipv4Address const & ifaceAddr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2119
    cls.add_method('FindLinkTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2120
                   'ns3::olsr::LinkTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2121
                   [param('ns3::Ipv4Address const &', 'ifaceAddr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2122
    ## olsr-state.h (module 'olsr'): bool ns3::OlsrState::FindMprAddress(ns3::Ipv4Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2123
    cls.add_method('FindMprAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2124
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2125
                   [param('ns3::Ipv4Address const &', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2126
    ## olsr-state.h (module 'olsr'): ns3::olsr::MprSelectorTuple * ns3::OlsrState::FindMprSelectorTuple(ns3::Ipv4Address const & mainAddr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2127
    cls.add_method('FindMprSelectorTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2128
                   'ns3::olsr::MprSelectorTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2129
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2130
    ## olsr-state.h (module 'olsr'): std::vector<ns3::Ipv4Address, std::allocator<ns3::Ipv4Address> > ns3::OlsrState::FindNeighborInterfaces(ns3::Ipv4Address const & neighborMainAddr) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2131
    cls.add_method('FindNeighborInterfaces', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2132
                   'std::vector< ns3::Ipv4Address >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2133
                   [param('ns3::Ipv4Address const &', 'neighborMainAddr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2134
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2135
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborTuple * ns3::OlsrState::FindNeighborTuple(ns3::Ipv4Address const & mainAddr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2136
    cls.add_method('FindNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2137
                   'ns3::olsr::NeighborTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2138
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2139
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborTuple * ns3::OlsrState::FindNeighborTuple(ns3::Ipv4Address const & mainAddr, uint8_t willingness) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2140
    cls.add_method('FindNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2141
                   'ns3::olsr::NeighborTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2142
                   [param('ns3::Ipv4Address const &', 'mainAddr'), param('uint8_t', 'willingness')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2143
    ## olsr-state.h (module 'olsr'): ns3::olsr::TopologyTuple * ns3::OlsrState::FindNewerTopologyTuple(ns3::Ipv4Address const & lastAddr, uint16_t ansn) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2144
    cls.add_method('FindNewerTopologyTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2145
                   'ns3::olsr::TopologyTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2146
                   [param('ns3::Ipv4Address const &', 'lastAddr'), param('uint16_t', 'ansn')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2147
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkTuple * ns3::OlsrState::FindSymLinkTuple(ns3::Ipv4Address const & ifaceAddr, ns3::Time time) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2148
    cls.add_method('FindSymLinkTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2149
                   'ns3::olsr::LinkTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2150
                   [param('ns3::Ipv4Address const &', 'ifaceAddr'), param('ns3::Time', 'time')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2151
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborTuple const * ns3::OlsrState::FindSymNeighborTuple(ns3::Ipv4Address const & mainAddr) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2152
    cls.add_method('FindSymNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2153
                   'ns3::olsr::NeighborTuple const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2154
                   [param('ns3::Ipv4Address const &', 'mainAddr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2155
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2156
    ## olsr-state.h (module 'olsr'): ns3::olsr::TopologyTuple * ns3::OlsrState::FindTopologyTuple(ns3::Ipv4Address const & destAddr, ns3::Ipv4Address const & lastAddr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2157
    cls.add_method('FindTopologyTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2158
                   'ns3::olsr::TopologyTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2159
                   [param('ns3::Ipv4Address const &', 'destAddr'), param('ns3::Ipv4Address const &', 'lastAddr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2160
    ## olsr-state.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple * ns3::OlsrState::FindTwoHopNeighborTuple(ns3::Ipv4Address const & neighbor, ns3::Ipv4Address const & twoHopNeighbor) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2161
    cls.add_method('FindTwoHopNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2162
                   'ns3::olsr::TwoHopNeighborTuple *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2163
                   [param('ns3::Ipv4Address const &', 'neighbor'), param('ns3::Ipv4Address const &', 'twoHopNeighbor')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2164
    ## olsr-state.h (module 'olsr'): ns3::olsr::AssociationSet const & ns3::OlsrState::GetAssociationSet() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2165
    cls.add_method('GetAssociationSet', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2166
                   'ns3::olsr::AssociationSet const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2167
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2168
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2169
    ## olsr-state.h (module 'olsr'): ns3::olsr::Associations const & ns3::OlsrState::GetAssociations() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2170
    cls.add_method('GetAssociations', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2171
                   'ns3::olsr::Associations const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2172
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2173
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2174
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocSet const & ns3::OlsrState::GetIfaceAssocSet() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2175
    cls.add_method('GetIfaceAssocSet', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2176
                   'ns3::olsr::IfaceAssocSet const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2177
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2178
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2179
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocSet & ns3::OlsrState::GetIfaceAssocSetMutable() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2180
    cls.add_method('GetIfaceAssocSetMutable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2181
                   'ns3::olsr::IfaceAssocSet &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2182
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2183
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkSet const & ns3::OlsrState::GetLinks() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2184
    cls.add_method('GetLinks', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2185
                   'ns3::olsr::LinkSet const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2186
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2187
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2188
    ## olsr-state.h (module 'olsr'): ns3::olsr::MprSelectorSet const & ns3::OlsrState::GetMprSelectors() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2189
    cls.add_method('GetMprSelectors', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2190
                   'ns3::olsr::MprSelectorSet const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2191
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2192
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2193
    ## olsr-state.h (module 'olsr'): ns3::olsr::MprSet ns3::OlsrState::GetMprSet() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2194
    cls.add_method('GetMprSet', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2195
                   'ns3::olsr::MprSet', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2196
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2197
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2198
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborSet const & ns3::OlsrState::GetNeighbors() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2199
    cls.add_method('GetNeighbors', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2200
                   'ns3::olsr::NeighborSet const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2201
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2202
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2203
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborSet & ns3::OlsrState::GetNeighbors() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2204
    cls.add_method('GetNeighbors', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2205
                   'ns3::olsr::NeighborSet &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2206
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2207
    ## olsr-state.h (module 'olsr'): ns3::olsr::TopologySet const & ns3::OlsrState::GetTopologySet() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2208
    cls.add_method('GetTopologySet', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2209
                   'ns3::olsr::TopologySet const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2210
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2211
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2212
    ## olsr-state.h (module 'olsr'): ns3::olsr::TwoHopNeighborSet const & ns3::OlsrState::GetTwoHopNeighbors() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2213
    cls.add_method('GetTwoHopNeighbors', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2214
                   'ns3::olsr::TwoHopNeighborSet const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2215
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2216
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2217
    ## olsr-state.h (module 'olsr'): ns3::olsr::TwoHopNeighborSet & ns3::OlsrState::GetTwoHopNeighbors() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2218
    cls.add_method('GetTwoHopNeighbors', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2219
                   'ns3::olsr::TwoHopNeighborSet &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2220
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2221
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertAssociation(ns3::olsr::Association const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2222
    cls.add_method('InsertAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2223
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2224
                   [param('ns3::olsr::Association const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2225
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertAssociationTuple(ns3::olsr::AssociationTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2226
    cls.add_method('InsertAssociationTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2227
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2228
                   [param('ns3::olsr::AssociationTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2229
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertDuplicateTuple(ns3::olsr::DuplicateTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2230
    cls.add_method('InsertDuplicateTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2231
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2232
                   [param('ns3::olsr::DuplicateTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2233
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertIfaceAssocTuple(ns3::olsr::IfaceAssocTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2234
    cls.add_method('InsertIfaceAssocTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2235
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2236
                   [param('ns3::olsr::IfaceAssocTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2237
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkTuple & ns3::OlsrState::InsertLinkTuple(ns3::olsr::LinkTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2238
    cls.add_method('InsertLinkTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2239
                   'ns3::olsr::LinkTuple &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2240
                   [param('ns3::olsr::LinkTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2241
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertMprSelectorTuple(ns3::olsr::MprSelectorTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2242
    cls.add_method('InsertMprSelectorTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2243
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2244
                   [param('ns3::olsr::MprSelectorTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2245
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertNeighborTuple(ns3::olsr::NeighborTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2246
    cls.add_method('InsertNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2247
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2248
                   [param('ns3::olsr::NeighborTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2249
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertTopologyTuple(ns3::olsr::TopologyTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2250
    cls.add_method('InsertTopologyTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2251
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2252
                   [param('ns3::olsr::TopologyTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2253
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::InsertTwoHopNeighborTuple(ns3::olsr::TwoHopNeighborTuple const & tuple) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2254
    cls.add_method('InsertTwoHopNeighborTuple', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2255
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2256
                   [param('ns3::olsr::TwoHopNeighborTuple const &', 'tuple')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2257
    ## olsr-state.h (module 'olsr'): std::string ns3::OlsrState::PrintMprSelectorSet() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2258
    cls.add_method('PrintMprSelectorSet', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2259
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2260
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2261
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2262
    ## olsr-state.h (module 'olsr'): void ns3::OlsrState::SetMprSet(ns3::olsr::MprSet mprSet) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2263
    cls.add_method('SetMprSet', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2264
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2265
                   [param('ns3::olsr::MprSet', 'mprSet')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2266
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2267
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2268
def register_Ns3PacketMetadata_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2269
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(uint64_t uid, uint32_t size) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2270
    cls.add_constructor([param('uint64_t', 'uid'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2271
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::PacketMetadata(ns3::PacketMetadata const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2272
    cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2273
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddAtEnd(ns3::PacketMetadata const & o) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2274
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2275
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2276
                   [param('ns3::PacketMetadata const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2277
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddHeader(ns3::Header const & header, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2278
    cls.add_method('AddHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2279
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2280
                   [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2281
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddPaddingAtEnd(uint32_t end) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2282
    cls.add_method('AddPaddingAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2283
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2284
                   [param('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2285
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::AddTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2286
    cls.add_method('AddTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2287
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2288
                   [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2289
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::PacketMetadata::BeginItem(ns3::Buffer buffer) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2290
    cls.add_method('BeginItem', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2291
                   'ns3::PacketMetadata::ItemIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2292
                   [param('ns3::Buffer', 'buffer')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2293
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2294
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata ns3::PacketMetadata::CreateFragment(uint32_t start, uint32_t end) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2295
    cls.add_method('CreateFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2296
                   'ns3::PacketMetadata', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2297
                   [param('uint32_t', 'start'), param('uint32_t', 'end')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2298
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2299
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Deserialize(uint8_t const * buffer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2300
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2301
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2302
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2303
    ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::Enable() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2304
    cls.add_method('Enable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2305
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2306
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2307
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2308
    ## packet-metadata.h (module 'network'): static void ns3::PacketMetadata::EnableChecking() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2309
    cls.add_method('EnableChecking', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2310
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2311
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2312
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2313
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2314
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2315
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2316
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2317
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2318
    ## packet-metadata.h (module 'network'): uint64_t ns3::PacketMetadata::GetUid() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2319
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2320
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2321
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2322
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2323
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtEnd(uint32_t end) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2324
    cls.add_method('RemoveAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2325
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2326
                   [param('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2327
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveAtStart(uint32_t start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2328
    cls.add_method('RemoveAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2329
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2330
                   [param('uint32_t', 'start')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2331
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveHeader(ns3::Header const & header, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2332
    cls.add_method('RemoveHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2333
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2334
                   [param('ns3::Header const &', 'header'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2335
    ## packet-metadata.h (module 'network'): void ns3::PacketMetadata::RemoveTrailer(ns3::Trailer const & trailer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2336
    cls.add_method('RemoveTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2337
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2338
                   [param('ns3::Trailer const &', 'trailer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2339
    ## packet-metadata.h (module 'network'): uint32_t ns3::PacketMetadata::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2340
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2341
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2342
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2343
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2344
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2345
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2346
def register_Ns3PacketMetadataItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2347
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2348
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2349
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::Item(ns3::PacketMetadata::Item const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2350
    cls.add_constructor([param('ns3::PacketMetadata::Item const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2351
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::current [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2352
    cls.add_instance_attribute('current', 'ns3::Buffer::Iterator', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2353
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentSize [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2354
    cls.add_instance_attribute('currentSize', 'uint32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2355
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromEnd [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2356
    cls.add_instance_attribute('currentTrimedFromEnd', 'uint32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2357
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::currentTrimedFromStart [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2358
    cls.add_instance_attribute('currentTrimedFromStart', 'uint32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2359
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::isFragment [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2360
    cls.add_instance_attribute('isFragment', 'bool', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2361
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item::tid [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2362
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2363
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2364
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2365
def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2366
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata::ItemIterator const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2367
    cls.add_constructor([param('ns3::PacketMetadata::ItemIterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2368
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::ItemIterator::ItemIterator(ns3::PacketMetadata const * metadata, ns3::Buffer buffer) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2369
    cls.add_constructor([param('ns3::PacketMetadata const *', 'metadata'), param('ns3::Buffer', 'buffer')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2370
    ## packet-metadata.h (module 'network'): bool ns3::PacketMetadata::ItemIterator::HasNext() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2371
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2372
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2373
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2374
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2375
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata::Item ns3::PacketMetadata::ItemIterator::Next() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2376
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2377
                   'ns3::PacketMetadata::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2378
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2379
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2380
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2381
def register_Ns3PacketTagIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2382
    ## packet.h (module 'network'): ns3::PacketTagIterator::PacketTagIterator(ns3::PacketTagIterator const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2383
    cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2384
    ## packet.h (module 'network'): bool ns3::PacketTagIterator::HasNext() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2385
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2386
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2387
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2388
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2389
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item ns3::PacketTagIterator::Next() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2390
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2391
                   'ns3::PacketTagIterator::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2392
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2393
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2394
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2395
def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2396
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item::Item(ns3::PacketTagIterator::Item const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2397
    cls.add_constructor([param('ns3::PacketTagIterator::Item const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2398
    ## packet.h (module 'network'): void ns3::PacketTagIterator::Item::GetTag(ns3::Tag & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2399
    cls.add_method('GetTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2400
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2401
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2402
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2403
    ## packet.h (module 'network'): ns3::TypeId ns3::PacketTagIterator::Item::GetTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2404
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2405
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2406
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2407
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2408
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2409
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2410
def register_Ns3PacketTagList_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2411
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2412
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2413
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::PacketTagList(ns3::PacketTagList const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2414
    cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2415
    ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::Add(ns3::Tag const & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2416
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2417
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2418
                   [param('ns3::Tag const &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2419
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2420
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData const * ns3::PacketTagList::Head() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2421
    cls.add_method('Head', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2422
                   'ns3::PacketTagList::TagData const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2423
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2424
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2425
    ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Peek(ns3::Tag & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2426
    cls.add_method('Peek', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2427
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2428
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2429
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2430
    ## packet-tag-list.h (module 'network'): bool ns3::PacketTagList::Remove(ns3::Tag & tag) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2431
    cls.add_method('Remove', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2432
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2433
                   [param('ns3::Tag &', 'tag')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2434
    ## packet-tag-list.h (module 'network'): void ns3::PacketTagList::RemoveAll() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2435
    cls.add_method('RemoveAll', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2436
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2437
                   [])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  2438
    ## 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
  2439
    cls.add_method('Replace', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  2440
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  2441
                   [param('ns3::Tag &', 'tag')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2442
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2443
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2444
def register_Ns3PacketTagListTagData_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2445
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2446
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2447
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData(ns3::PacketTagList::TagData const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2448
    cls.add_constructor([param('ns3::PacketTagList::TagData const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2449
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::count [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2450
    cls.add_instance_attribute('count', 'uint32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2451
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::data [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2452
    cls.add_instance_attribute('data', 'uint8_t [ 20 ]', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2453
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::next [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2454
    cls.add_instance_attribute('next', 'ns3::PacketTagList::TagData *', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2455
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::tid [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2456
    cls.add_instance_attribute('tid', 'ns3::TypeId', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2457
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2458
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2459
def register_Ns3SimpleRefCount__Ns3Object_Ns3ObjectBase_Ns3ObjectDeleter_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2460
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2461
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2462
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2463
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2464
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Object, ns3::ObjectBase, ns3::ObjectDeleter>::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2465
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2466
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2467
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2468
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2469
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2470
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2471
def register_Ns3Simulator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2472
    ## simulator.h (module 'core'): ns3::Simulator::Simulator(ns3::Simulator const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2473
    cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2474
    ## simulator.h (module 'core'): static void ns3::Simulator::Cancel(ns3::EventId const & id) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2475
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2476
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2477
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2478
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2479
    ## simulator.h (module 'core'): static void ns3::Simulator::Destroy() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2480
    cls.add_method('Destroy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2481
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2482
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2483
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2484
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetContext() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2485
    cls.add_method('GetContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2486
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2487
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2488
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2489
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetDelayLeft(ns3::EventId const & id) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2490
    cls.add_method('GetDelayLeft', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2491
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2492
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2493
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2494
    ## simulator.h (module 'core'): static ns3::Ptr<ns3::SimulatorImpl> ns3::Simulator::GetImplementation() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2495
    cls.add_method('GetImplementation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2496
                   'ns3::Ptr< ns3::SimulatorImpl >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2497
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2498
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2499
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::GetMaximumSimulationTime() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2500
    cls.add_method('GetMaximumSimulationTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2501
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2502
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2503
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2504
    ## simulator.h (module 'core'): static uint32_t ns3::Simulator::GetSystemId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2505
    cls.add_method('GetSystemId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2506
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2507
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2508
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2509
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsExpired(ns3::EventId const & id) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2510
    cls.add_method('IsExpired', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2511
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2512
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2513
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2514
    ## simulator.h (module 'core'): static bool ns3::Simulator::IsFinished() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2515
    cls.add_method('IsFinished', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2516
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2517
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2518
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2519
    ## simulator.h (module 'core'): static ns3::Time ns3::Simulator::Now() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2520
    cls.add_method('Now', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2521
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2522
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2523
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2524
    ## simulator.h (module 'core'): static void ns3::Simulator::Remove(ns3::EventId const & id) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2525
    cls.add_method('Remove', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2526
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2527
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2528
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2529
    ## simulator.h (module 'core'): static void ns3::Simulator::SetImplementation(ns3::Ptr<ns3::SimulatorImpl> impl) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2530
    cls.add_method('SetImplementation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2531
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2532
                   [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2533
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2534
    ## simulator.h (module 'core'): static void ns3::Simulator::SetScheduler(ns3::ObjectFactory schedulerFactory) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2535
    cls.add_method('SetScheduler', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2536
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2537
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2538
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2539
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2540
    cls.add_method('Stop', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2541
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2542
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2543
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2544
    ## simulator.h (module 'core'): static void ns3::Simulator::Stop(ns3::Time const & time) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2545
    cls.add_method('Stop', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2546
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2547
                   [param('ns3::Time const &', 'time')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2548
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2549
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2550
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2551
def register_Ns3SystemWallClockMs_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2552
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs::SystemWallClockMs(ns3::SystemWallClockMs const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2553
    cls.add_constructor([param('ns3::SystemWallClockMs const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2554
    ## system-wall-clock-ms.h (module 'core'): ns3::SystemWallClockMs::SystemWallClockMs() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2555
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2556
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::End() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2557
    cls.add_method('End', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2558
                   'int64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2559
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2560
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedReal() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2561
    cls.add_method('GetElapsedReal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2562
                   'int64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2563
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2564
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2565
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedSystem() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2566
    cls.add_method('GetElapsedSystem', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2567
                   'int64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2568
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2569
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2570
    ## system-wall-clock-ms.h (module 'core'): int64_t ns3::SystemWallClockMs::GetElapsedUser() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2571
    cls.add_method('GetElapsedUser', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2572
                   'int64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2573
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2574
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2575
    ## system-wall-clock-ms.h (module 'core'): void ns3::SystemWallClockMs::Start() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2576
    cls.add_method('Start', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2577
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2578
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2579
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2580
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2581
def register_Ns3Tag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2582
    ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2583
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2584
    ## tag.h (module 'network'): ns3::Tag::Tag(ns3::Tag const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2585
    cls.add_constructor([param('ns3::Tag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2586
    ## tag.h (module 'network'): void ns3::Tag::Deserialize(ns3::TagBuffer i) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2587
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2588
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2589
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2590
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2591
    ## tag.h (module 'network'): uint32_t ns3::Tag::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2592
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2593
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2594
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2595
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2596
    ## tag.h (module 'network'): static ns3::TypeId ns3::Tag::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2597
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2598
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2599
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2600
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2601
    ## tag.h (module 'network'): void ns3::Tag::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2602
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2603
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2604
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2605
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2606
    ## tag.h (module 'network'): void ns3::Tag::Serialize(ns3::TagBuffer i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2607
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2608
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2609
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2610
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2611
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2612
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2613
def register_Ns3TagBuffer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2614
    ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(ns3::TagBuffer const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2615
    cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2616
    ## tag-buffer.h (module 'network'): ns3::TagBuffer::TagBuffer(uint8_t * start, uint8_t * end) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2617
    cls.add_constructor([param('uint8_t *', 'start'), param('uint8_t *', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2618
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::CopyFrom(ns3::TagBuffer o) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2619
    cls.add_method('CopyFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2620
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2621
                   [param('ns3::TagBuffer', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2622
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Read(uint8_t * buffer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2623
    cls.add_method('Read', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2624
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2625
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2626
    ## tag-buffer.h (module 'network'): double ns3::TagBuffer::ReadDouble() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2627
    cls.add_method('ReadDouble', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2628
                   'double', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2629
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2630
    ## tag-buffer.h (module 'network'): uint16_t ns3::TagBuffer::ReadU16() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2631
    cls.add_method('ReadU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2632
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2633
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2634
    ## tag-buffer.h (module 'network'): uint32_t ns3::TagBuffer::ReadU32() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2635
    cls.add_method('ReadU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2636
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2637
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2638
    ## tag-buffer.h (module 'network'): uint64_t ns3::TagBuffer::ReadU64() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2639
    cls.add_method('ReadU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2640
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2641
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2642
    ## tag-buffer.h (module 'network'): uint8_t ns3::TagBuffer::ReadU8() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2643
    cls.add_method('ReadU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2644
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2645
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2646
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::TrimAtEnd(uint32_t trim) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2647
    cls.add_method('TrimAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2648
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2649
                   [param('uint32_t', 'trim')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2650
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::Write(uint8_t const * buffer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2651
    cls.add_method('Write', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2652
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2653
                   [param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2654
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteDouble(double v) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2655
    cls.add_method('WriteDouble', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2656
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2657
                   [param('double', 'v')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2658
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU16(uint16_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2659
    cls.add_method('WriteU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2660
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2661
                   [param('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2662
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU32(uint32_t data) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2663
    cls.add_method('WriteU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2664
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2665
                   [param('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2666
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU64(uint64_t v) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2667
    cls.add_method('WriteU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2668
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2669
                   [param('uint64_t', 'v')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2670
    ## tag-buffer.h (module 'network'): void ns3::TagBuffer::WriteU8(uint8_t v) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2671
    cls.add_method('WriteU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2672
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2673
                   [param('uint8_t', 'v')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2674
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2675
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2676
def register_Ns3Timer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2677
    ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2678
    cls.add_constructor([param('ns3::Timer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2679
    ## timer.h (module 'core'): ns3::Timer::Timer() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2680
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2681
    ## timer.h (module 'core'): ns3::Timer::Timer(ns3::Timer::DestroyPolicy destroyPolicy) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2682
    cls.add_constructor([param('ns3::Timer::DestroyPolicy', 'destroyPolicy')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2683
    ## timer.h (module 'core'): void ns3::Timer::Cancel() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2684
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2685
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2686
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2687
    ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelay() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2688
    cls.add_method('GetDelay', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2689
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2690
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2691
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2692
    ## timer.h (module 'core'): ns3::Time ns3::Timer::GetDelayLeft() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2693
    cls.add_method('GetDelayLeft', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2694
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2695
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2696
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2697
    ## timer.h (module 'core'): ns3::Timer::State ns3::Timer::GetState() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2698
    cls.add_method('GetState', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2699
                   'ns3::Timer::State', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2700
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2701
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2702
    ## timer.h (module 'core'): bool ns3::Timer::IsExpired() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2703
    cls.add_method('IsExpired', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2704
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2705
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2706
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2707
    ## timer.h (module 'core'): bool ns3::Timer::IsRunning() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2708
    cls.add_method('IsRunning', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2709
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2710
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2711
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2712
    ## timer.h (module 'core'): bool ns3::Timer::IsSuspended() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2713
    cls.add_method('IsSuspended', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2714
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2715
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2716
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2717
    ## timer.h (module 'core'): void ns3::Timer::Remove() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2718
    cls.add_method('Remove', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2719
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2720
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2721
    ## timer.h (module 'core'): void ns3::Timer::Resume() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2722
    cls.add_method('Resume', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2723
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2724
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2725
    ## timer.h (module 'core'): void ns3::Timer::Schedule() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2726
    cls.add_method('Schedule', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2727
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2728
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2729
    ## timer.h (module 'core'): void ns3::Timer::Schedule(ns3::Time delay) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2730
    cls.add_method('Schedule', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2731
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2732
                   [param('ns3::Time', 'delay')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2733
    ## timer.h (module 'core'): void ns3::Timer::SetDelay(ns3::Time const & delay) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2734
    cls.add_method('SetDelay', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2735
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2736
                   [param('ns3::Time const &', 'delay')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2737
    ## timer.h (module 'core'): void ns3::Timer::Suspend() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2738
    cls.add_method('Suspend', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2739
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2740
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2741
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2742
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2743
def register_Ns3TimerImpl_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2744
    ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2745
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2746
    ## timer-impl.h (module 'core'): ns3::TimerImpl::TimerImpl(ns3::TimerImpl const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2747
    cls.add_constructor([param('ns3::TimerImpl const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2748
    ## timer-impl.h (module 'core'): void ns3::TimerImpl::Invoke() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2749
    cls.add_method('Invoke', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2750
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2751
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2752
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2753
    ## timer-impl.h (module 'core'): ns3::EventId ns3::TimerImpl::Schedule(ns3::Time const & delay) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2754
    cls.add_method('Schedule', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2755
                   'ns3::EventId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2756
                   [param('ns3::Time const &', 'delay')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2757
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2758
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2759
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2760
def register_Ns3TypeId_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2761
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2762
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2763
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2764
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2765
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(char const * name) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2766
    cls.add_constructor([param('char const *', 'name')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2767
    ## type-id.h (module 'core'): ns3::TypeId::TypeId() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2768
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2769
    ## type-id.h (module 'core'): ns3::TypeId::TypeId(ns3::TypeId const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2770
    cls.add_constructor([param('ns3::TypeId const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2771
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2772
    cls.add_method('AddAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2773
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2774
                   [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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2775
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2776
    cls.add_method('AddAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2777
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2778
                   [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
  2779
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::AddTraceSource(std::string name, std::string help, ns3::Ptr<ns3::TraceSourceAccessor const> accessor) [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2780
    cls.add_method('AddTraceSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2781
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2782
                   [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
  2783
    ## 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
  2784
    cls.add_method('GetAttribute', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2785
                   'ns3::TypeId::AttributeInformation', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2786
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2787
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2788
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetAttributeFullName(uint32_t i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2789
    cls.add_method('GetAttributeFullName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2790
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2791
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2792
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2793
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetAttributeN() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2794
    cls.add_method('GetAttributeN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2795
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2796
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2797
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2798
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2799
    cls.add_method('GetConstructor', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2800
                   'ns3::Callback< ns3::ObjectBase *, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2801
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2802
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2803
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetGroupName() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2804
    cls.add_method('GetGroupName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2805
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2806
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2807
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2808
    ## type-id.h (module 'core'): std::string ns3::TypeId::GetName() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2809
    cls.add_method('GetName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2810
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2811
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2812
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2813
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::GetParent() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2814
    cls.add_method('GetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2815
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2816
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2817
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2818
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::GetRegistered(uint32_t i) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2819
    cls.add_method('GetRegistered', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2820
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2821
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2822
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2823
    ## type-id.h (module 'core'): static uint32_t ns3::TypeId::GetRegisteredN() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2824
    cls.add_method('GetRegisteredN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2825
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2826
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2827
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2828
    ## 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
  2829
    cls.add_method('GetTraceSource', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2830
                   'ns3::TypeId::TraceSourceInformation', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2831
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2832
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2833
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetTraceSourceN() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2834
    cls.add_method('GetTraceSourceN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2835
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2836
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2837
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2838
    ## type-id.h (module 'core'): uint16_t ns3::TypeId::GetUid() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2839
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2840
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2841
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2842
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2843
    ## type-id.h (module 'core'): bool ns3::TypeId::HasConstructor() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2844
    cls.add_method('HasConstructor', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2845
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2846
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2847
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2848
    ## type-id.h (module 'core'): bool ns3::TypeId::HasParent() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2849
    cls.add_method('HasParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2850
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2851
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2852
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2853
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::HideFromDocumentation() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2854
    cls.add_method('HideFromDocumentation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2855
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2856
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2857
    ## type-id.h (module 'core'): bool ns3::TypeId::IsChildOf(ns3::TypeId other) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2858
    cls.add_method('IsChildOf', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2859
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2860
                   [param('ns3::TypeId', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2861
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2862
    ## type-id.h (module 'core'): bool ns3::TypeId::LookupAttributeByName(std::string name, ns3::TypeId::AttributeInformation * info) const [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2863
    cls.add_method('LookupAttributeByName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2864
                   'bool', 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  2865
                   [param('std::string', 'name'), param('ns3::TypeId::AttributeInformation *', 'info', transfer_ownership=False)], 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2866
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2867
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByName(std::string name) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2868
    cls.add_method('LookupByName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2869
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2870
                   [param('std::string', 'name')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2871
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2872
    ## type-id.h (module 'core'): ns3::Ptr<ns3::TraceSourceAccessor const> ns3::TypeId::LookupTraceSourceByName(std::string name) const [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2873
    cls.add_method('LookupTraceSourceByName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2874
                   'ns3::Ptr< ns3::TraceSourceAccessor const >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2875
                   [param('std::string', 'name')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2876
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2877
    ## type-id.h (module 'core'): bool ns3::TypeId::MustHideFromDocumentation() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2878
    cls.add_method('MustHideFromDocumentation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2879
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2880
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2881
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2882
    ## 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
  2883
    cls.add_method('SetAttributeInitialValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2884
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2885
                   [param('uint32_t', 'i'), param('ns3::Ptr< ns3::AttributeValue const >', 'initialValue')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2886
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetGroupName(std::string groupName) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2887
    cls.add_method('SetGroupName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2888
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2889
                   [param('std::string', 'groupName')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2890
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeId::SetParent(ns3::TypeId tid) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2891
    cls.add_method('SetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2892
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2893
                   [param('ns3::TypeId', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2894
    ## type-id.h (module 'core'): void ns3::TypeId::SetUid(uint16_t tid) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2895
    cls.add_method('SetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2896
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2897
                   [param('uint16_t', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2898
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2899
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2900
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2901
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::AttributeInformation() [constructor]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2902
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2903
    ## 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
  2904
    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
  2905
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::accessor [variable]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2906
    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
  2907
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::checker [variable]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2908
    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
  2909
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::flags [variable]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2910
    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
  2911
    ## 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
  2912
    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
  2913
    ## type-id.h (module 'core'): ns3::TypeId::AttributeInformation::initialValue [variable]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2914
    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
  2915
    ## 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
  2916
    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
  2917
    ## 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
  2918
    cls.add_instance_attribute('originalInitialValue', 'ns3::Ptr< ns3::AttributeValue const >', is_const=False)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2919
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2920
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2921
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2922
    ## type-id.h (module 'core'): ns3::TypeId::TraceSourceInformation::TraceSourceInformation() [constructor]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2923
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2924
    ## 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
  2925
    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
  2926
    ## 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
  2927
    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
  2928
    ## 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
  2929
    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
  2930
    ## 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
  2931
    cls.add_instance_attribute('name', 'std::string', is_const=False)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2932
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2933
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2934
def register_Ns3Empty_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2935
    ## empty.h (module 'core'): ns3::empty::empty() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2936
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2937
    ## empty.h (module 'core'): ns3::empty::empty(ns3::empty const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2938
    cls.add_constructor([param('ns3::empty const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2939
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2940
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2941
def register_Ns3Int64x64_t_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2942
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2943
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2944
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2945
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2946
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2947
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2948
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2949
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2950
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2951
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2952
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2953
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2954
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2955
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2956
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2957
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2958
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2959
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2960
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2961
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2962
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2963
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2964
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2965
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2966
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2967
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2968
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2969
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2970
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2971
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2972
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2973
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2974
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2975
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2976
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2977
    cls.add_unary_numeric_operator('-')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2978
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2979
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2980
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2981
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2982
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short unsigned int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2983
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('unsigned char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2984
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2985
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('long int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2986
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2987
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('short int const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2988
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('signed char const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2989
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('double const', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2990
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2991
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2992
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2993
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2994
    cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2995
    cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2996
    cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2997
    cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2998
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2999
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3000
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3001
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3002
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3003
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3004
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3005
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3006
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3007
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3008
    ## 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: 6989
diff changeset
  3009
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3010
    ## 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: 6989
diff changeset
  3011
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3012
    ## 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: 6989
diff changeset
  3013
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3014
    ## 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: 6989
diff changeset
  3015
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3016
    ## 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: 6989
diff changeset
  3017
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3018
    ## 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: 6989
diff changeset
  3019
    cls.add_constructor([param('int64_t', 'hi'), param('uint64_t', 'lo')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3020
    ## 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: 6989
diff changeset
  3021
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3022
    ## int64x64-double.h (module 'core'): double ns3::int64x64_t::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3023
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3024
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3025
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3026
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3027
    ## 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: 6989
diff changeset
  3028
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3029
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3030
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3031
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3032
    ## 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: 6989
diff changeset
  3033
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3034
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3035
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3036
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3037
    ## 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: 6989
diff changeset
  3038
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3039
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3040
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3041
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3042
    ## 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: 6989
diff changeset
  3043
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3044
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3045
                   [param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3046
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3047
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3048
def register_Ns3Chunk_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3049
    ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3050
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3051
    ## chunk.h (module 'network'): ns3::Chunk::Chunk(ns3::Chunk const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3052
    cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3053
    ## chunk.h (module 'network'): uint32_t ns3::Chunk::Deserialize(ns3::Buffer::Iterator start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3054
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3055
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3056
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3057
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3058
    ## chunk.h (module 'network'): static ns3::TypeId ns3::Chunk::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3059
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3060
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3061
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3062
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3063
    ## chunk.h (module 'network'): void ns3::Chunk::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3064
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3065
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3066
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3067
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3068
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3069
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3070
def register_Ns3Header_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3071
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3072
    ## header.h (module 'network'): ns3::Header::Header() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3073
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3074
    ## header.h (module 'network'): ns3::Header::Header(ns3::Header const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3075
    cls.add_constructor([param('ns3::Header const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3076
    ## header.h (module 'network'): uint32_t ns3::Header::Deserialize(ns3::Buffer::Iterator start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3077
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3078
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3079
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3080
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3081
    ## header.h (module 'network'): uint32_t ns3::Header::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3082
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3083
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3084
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3085
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3086
    ## header.h (module 'network'): static ns3::TypeId ns3::Header::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3087
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3088
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3089
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3090
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3091
    ## header.h (module 'network'): void ns3::Header::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3092
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3093
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3094
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3095
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3096
    ## header.h (module 'network'): void ns3::Header::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3097
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3098
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3099
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3100
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3101
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3102
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3103
def register_Ns3Ipv4Header_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3104
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header(ns3::Ipv4Header const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3105
    cls.add_constructor([param('ns3::Ipv4Header const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3106
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::Ipv4Header() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3107
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3108
    ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::Deserialize(ns3::Buffer::Iterator start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3109
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3110
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3111
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3112
                   is_virtual=True)
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3113
    ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::DscpTypeToString(ns3::Ipv4Header::DscpType dscp) const [member function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3114
    cls.add_method('DscpTypeToString', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3115
                   'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3116
                   [param('ns3::Ipv4Header::DscpType', 'dscp')], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3117
                   is_const=True)
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3118
    ## ipv4-header.h (module 'internet'): std::string ns3::Ipv4Header::EcnTypeToString(ns3::Ipv4Header::EcnType ecn) const [member function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3119
    cls.add_method('EcnTypeToString', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3120
                   'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3121
                   [param('ns3::Ipv4Header::EcnType', 'ecn')], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3122
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3123
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::EnableChecksum() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3124
    cls.add_method('EnableChecksum', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3125
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3126
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3127
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetDestination() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3128
    cls.add_method('GetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3129
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3130
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3131
                   is_const=True)
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3132
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType ns3::Ipv4Header::GetDscp() const [member function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3133
    cls.add_method('GetDscp', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3134
                   'ns3::Ipv4Header::DscpType', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3135
                   [], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3136
                   is_const=True)
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3137
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType ns3::Ipv4Header::GetEcn() const [member function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3138
    cls.add_method('GetEcn', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3139
                   'ns3::Ipv4Header::EcnType', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3140
                   [], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3141
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3142
    ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetFragmentOffset() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3143
    cls.add_method('GetFragmentOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3144
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3145
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3146
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3147
    ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetIdentification() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3148
    cls.add_method('GetIdentification', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3149
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3150
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3151
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3152
    ## ipv4-header.h (module 'internet'): ns3::TypeId ns3::Ipv4Header::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3153
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3154
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3155
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3156
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3157
    ## ipv4-header.h (module 'internet'): uint16_t ns3::Ipv4Header::GetPayloadSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3158
    cls.add_method('GetPayloadSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3159
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3160
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3161
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3162
    ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetProtocol() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3163
    cls.add_method('GetProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3164
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3165
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3166
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3167
    ## ipv4-header.h (module 'internet'): uint32_t ns3::Ipv4Header::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3168
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3169
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3170
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3171
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3172
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Header::GetSource() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3173
    cls.add_method('GetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3174
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3175
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3176
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3177
    ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTos() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3178
    cls.add_method('GetTos', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3179
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3180
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3181
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3182
    ## ipv4-header.h (module 'internet'): uint8_t ns3::Ipv4Header::GetTtl() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3183
    cls.add_method('GetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3184
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3185
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3186
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3187
    ## ipv4-header.h (module 'internet'): static ns3::TypeId ns3::Ipv4Header::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3188
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3189
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3190
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3191
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3192
    ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsChecksumOk() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3193
    cls.add_method('IsChecksumOk', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3194
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3195
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3196
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3197
    ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsDontFragment() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3198
    cls.add_method('IsDontFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3199
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3200
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3201
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3202
    ## ipv4-header.h (module 'internet'): bool ns3::Ipv4Header::IsLastFragment() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3203
    cls.add_method('IsLastFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3204
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3205
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3206
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3207
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3208
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3209
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3210
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3211
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3212
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3213
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3214
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3215
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3216
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3217
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDestination(ns3::Ipv4Address destination) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3218
    cls.add_method('SetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3219
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3220
                   [param('ns3::Ipv4Address', 'destination')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3221
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDontFragment() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3222
    cls.add_method('SetDontFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3223
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3224
                   [])
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3225
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetDscp(ns3::Ipv4Header::DscpType dscp) [member function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3226
    cls.add_method('SetDscp', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3227
                   'void', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3228
                   [param('ns3::Ipv4Header::DscpType', 'dscp')])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3229
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetEcn(ns3::Ipv4Header::EcnType ecn) [member function]
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3230
    cls.add_method('SetEcn', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3231
                   'void', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3232
                   [param('ns3::Ipv4Header::EcnType', 'ecn')])
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  3233
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetFragmentOffset(uint16_t offsetBytes) [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3234
    cls.add_method('SetFragmentOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3235
                   'void', 
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  3236
                   [param('uint16_t', 'offsetBytes')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3237
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetIdentification(uint16_t identification) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3238
    cls.add_method('SetIdentification', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3239
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3240
                   [param('uint16_t', 'identification')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3241
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetLastFragment() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3242
    cls.add_method('SetLastFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3243
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3244
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3245
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMayFragment() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3246
    cls.add_method('SetMayFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3247
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3248
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3249
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetMoreFragments() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3250
    cls.add_method('SetMoreFragments', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3251
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3252
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3253
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetPayloadSize(uint16_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3254
    cls.add_method('SetPayloadSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3255
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3256
                   [param('uint16_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3257
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetProtocol(uint8_t num) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3258
    cls.add_method('SetProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3259
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3260
                   [param('uint8_t', 'num')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3261
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetSource(ns3::Ipv4Address source) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3262
    cls.add_method('SetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3263
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3264
                   [param('ns3::Ipv4Address', 'source')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3265
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTos(uint8_t tos) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3266
    cls.add_method('SetTos', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3267
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3268
                   [param('uint8_t', 'tos')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3269
    ## ipv4-header.h (module 'internet'): void ns3::Ipv4Header::SetTtl(uint8_t ttl) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3270
    cls.add_method('SetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3271
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3272
                   [param('uint8_t', 'ttl')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3273
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3274
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3275
def register_Ns3Ipv6Header_methods(root_module, cls):
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3276
    ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header(ns3::Ipv6Header const & arg0) [copy constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3277
    cls.add_constructor([param('ns3::Ipv6Header const &', 'arg0')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3278
    ## ipv6-header.h (module 'internet'): ns3::Ipv6Header::Ipv6Header() [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3279
    cls.add_constructor([])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3280
    ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::Deserialize(ns3::Buffer::Iterator start) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3281
    cls.add_method('Deserialize', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3282
                   'uint32_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3283
                   [param('ns3::Buffer::Iterator', 'start')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3284
                   is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3285
    ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetDestinationAddress() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3286
    cls.add_method('GetDestinationAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3287
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3288
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3289
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3290
    ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetFlowLabel() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3291
    cls.add_method('GetFlowLabel', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3292
                   'uint32_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3293
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3294
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3295
    ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetHopLimit() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3296
    cls.add_method('GetHopLimit', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3297
                   'uint8_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3298
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3299
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3300
    ## ipv6-header.h (module 'internet'): ns3::TypeId ns3::Ipv6Header::GetInstanceTypeId() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3301
    cls.add_method('GetInstanceTypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3302
                   'ns3::TypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3303
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3304
                   is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3305
    ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetNextHeader() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3306
    cls.add_method('GetNextHeader', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3307
                   'uint8_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3308
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3309
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3310
    ## ipv6-header.h (module 'internet'): uint16_t ns3::Ipv6Header::GetPayloadLength() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3311
    cls.add_method('GetPayloadLength', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3312
                   'uint16_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3313
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3314
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3315
    ## ipv6-header.h (module 'internet'): uint32_t ns3::Ipv6Header::GetSerializedSize() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3316
    cls.add_method('GetSerializedSize', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3317
                   'uint32_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3318
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3319
                   is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3320
    ## ipv6-header.h (module 'internet'): ns3::Ipv6Address ns3::Ipv6Header::GetSourceAddress() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3321
    cls.add_method('GetSourceAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3322
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3323
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3324
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3325
    ## ipv6-header.h (module 'internet'): uint8_t ns3::Ipv6Header::GetTrafficClass() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3326
    cls.add_method('GetTrafficClass', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3327
                   'uint8_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3328
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3329
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3330
    ## ipv6-header.h (module 'internet'): static ns3::TypeId ns3::Ipv6Header::GetTypeId() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3331
    cls.add_method('GetTypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3332
                   'ns3::TypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3333
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3334
                   is_static=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3335
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Print(std::ostream & os) const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3336
    cls.add_method('Print', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3337
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3338
                   [param('std::ostream &', 'os')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3339
                   is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3340
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::Serialize(ns3::Buffer::Iterator start) const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3341
    cls.add_method('Serialize', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3342
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3343
                   [param('ns3::Buffer::Iterator', 'start')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3344
                   is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3345
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetDestinationAddress(ns3::Ipv6Address dst) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3346
    cls.add_method('SetDestinationAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3347
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3348
                   [param('ns3::Ipv6Address', 'dst')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3349
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetFlowLabel(uint32_t flow) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3350
    cls.add_method('SetFlowLabel', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3351
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3352
                   [param('uint32_t', 'flow')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3353
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetHopLimit(uint8_t limit) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3354
    cls.add_method('SetHopLimit', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3355
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3356
                   [param('uint8_t', 'limit')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3357
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetNextHeader(uint8_t next) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3358
    cls.add_method('SetNextHeader', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3359
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3360
                   [param('uint8_t', 'next')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3361
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetPayloadLength(uint16_t len) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3362
    cls.add_method('SetPayloadLength', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3363
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3364
                   [param('uint16_t', 'len')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3365
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetSourceAddress(ns3::Ipv6Address src) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3366
    cls.add_method('SetSourceAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3367
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3368
                   [param('ns3::Ipv6Address', 'src')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3369
    ## ipv6-header.h (module 'internet'): void ns3::Ipv6Header::SetTrafficClass(uint8_t traffic) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3370
    cls.add_method('SetTrafficClass', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3371
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3372
                   [param('uint8_t', 'traffic')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3373
    return
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3374
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3375
def register_Ns3Object_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3376
    ## object.h (module 'core'): ns3::Object::Object() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3377
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3378
    ## object.h (module 'core'): void ns3::Object::AggregateObject(ns3::Ptr<ns3::Object> other) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3379
    cls.add_method('AggregateObject', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3380
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3381
                   [param('ns3::Ptr< ns3::Object >', 'other')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3382
    ## object.h (module 'core'): void ns3::Object::Dispose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3383
    cls.add_method('Dispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3384
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3385
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3386
    ## object.h (module 'core'): ns3::Object::AggregateIterator ns3::Object::GetAggregateIterator() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3387
    cls.add_method('GetAggregateIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3388
                   'ns3::Object::AggregateIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3389
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3390
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3391
    ## object.h (module 'core'): ns3::TypeId ns3::Object::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3392
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3393
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3394
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3395
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3396
    ## object.h (module 'core'): static ns3::TypeId ns3::Object::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3397
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3398
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3399
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3400
                   is_static=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3401
    ## object.h (module 'core'): void ns3::Object::Initialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3402
    cls.add_method('Initialize', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3403
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3404
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3405
    ## object.h (module 'core'): ns3::Object::Object(ns3::Object const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3406
    cls.add_constructor([param('ns3::Object const &', 'o')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3407
                        visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3408
    ## object.h (module 'core'): void ns3::Object::DoDispose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3409
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3410
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3411
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3412
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3413
    ## object.h (module 'core'): void ns3::Object::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3414
    cls.add_method('DoInitialize', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3415
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3416
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3417
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3418
    ## object.h (module 'core'): void ns3::Object::NotifyNewAggregate() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3419
    cls.add_method('NotifyNewAggregate', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3420
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3421
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3422
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3423
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3424
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3425
def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3426
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator(ns3::Object::AggregateIterator const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3427
    cls.add_constructor([param('ns3::Object::AggregateIterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3428
    ## object.h (module 'core'): ns3::Object::AggregateIterator::AggregateIterator() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3429
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3430
    ## object.h (module 'core'): bool ns3::Object::AggregateIterator::HasNext() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3431
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3432
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3433
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3434
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3435
    ## object.h (module 'core'): ns3::Ptr<ns3::Object const> ns3::Object::AggregateIterator::Next() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3436
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3437
                   'ns3::Ptr< ns3::Object const >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3438
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3439
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3440
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3441
def register_Ns3RandomVariableStream_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3442
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::RandomVariableStream::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3443
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3444
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3445
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3446
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3447
    ## random-variable-stream.h (module 'core'): ns3::RandomVariableStream::RandomVariableStream() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3448
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3449
    ## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetStream(int64_t stream) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3450
    cls.add_method('SetStream', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3451
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3452
                   [param('int64_t', 'stream')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3453
    ## random-variable-stream.h (module 'core'): int64_t ns3::RandomVariableStream::GetStream() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3454
    cls.add_method('GetStream', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3455
                   'int64_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3456
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3457
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3458
    ## random-variable-stream.h (module 'core'): void ns3::RandomVariableStream::SetAntithetic(bool isAntithetic) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3459
    cls.add_method('SetAntithetic', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3460
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3461
                   [param('bool', 'isAntithetic')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3462
    ## random-variable-stream.h (module 'core'): bool ns3::RandomVariableStream::IsAntithetic() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3463
    cls.add_method('IsAntithetic', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3464
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3465
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3466
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3467
    ## random-variable-stream.h (module 'core'): double ns3::RandomVariableStream::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3468
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3469
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3470
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3471
                   is_pure_virtual=True, is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3472
    ## random-variable-stream.h (module 'core'): uint32_t ns3::RandomVariableStream::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3473
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3474
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3475
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3476
                   is_pure_virtual=True, is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3477
    ## random-variable-stream.h (module 'core'): ns3::RngStream * ns3::RandomVariableStream::Peek() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3478
    cls.add_method('Peek', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3479
                   'ns3::RngStream *', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3480
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3481
                   is_const=True, visibility='protected')
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3482
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3483
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3484
def register_Ns3SequentialRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3485
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::SequentialRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3486
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3487
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3488
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3489
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3490
    ## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable::SequentialRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3491
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3492
    ## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMin() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3493
    cls.add_method('GetMin', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3494
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3495
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3496
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3497
    ## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetMax() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3498
    cls.add_method('GetMax', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3499
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3500
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3501
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3502
    ## random-variable-stream.h (module 'core'): ns3::Ptr<ns3::RandomVariableStream> ns3::SequentialRandomVariable::GetIncrement() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3503
    cls.add_method('GetIncrement', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3504
                   'ns3::Ptr< ns3::RandomVariableStream >', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3505
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3506
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3507
    ## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetConsecutive() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3508
    cls.add_method('GetConsecutive', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3509
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3510
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3511
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3512
    ## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3513
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3514
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3515
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3516
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3517
    ## random-variable-stream.h (module 'core'): uint32_t ns3::SequentialRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3518
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3519
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3520
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3521
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3522
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3523
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3524
def register_Ns3SimpleRefCount__Ns3AttributeAccessor_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeAccessor__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3525
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3526
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3527
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3528
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter< ns3::AttributeAccessor > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3529
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeAccessor, ns3::empty, ns3::DefaultDeleter<ns3::AttributeAccessor> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3530
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3531
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3532
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3533
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3534
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3535
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3536
def register_Ns3SimpleRefCount__Ns3AttributeChecker_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeChecker__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3537
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3538
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3539
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3540
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter< ns3::AttributeChecker > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3541
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeChecker, ns3::empty, ns3::DefaultDeleter<ns3::AttributeChecker> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3542
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3543
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3544
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3545
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3546
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3547
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3548
def register_Ns3SimpleRefCount__Ns3AttributeValue_Ns3Empty_Ns3DefaultDeleter__lt__ns3AttributeValue__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3549
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3550
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3551
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3552
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter< ns3::AttributeValue > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3553
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::AttributeValue, ns3::empty, ns3::DefaultDeleter<ns3::AttributeValue> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3554
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3555
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3556
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3557
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3558
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3559
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3560
def register_Ns3SimpleRefCount__Ns3CallbackImplBase_Ns3Empty_Ns3DefaultDeleter__lt__ns3CallbackImplBase__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3561
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3562
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3563
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3564
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter< ns3::CallbackImplBase > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3565
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::CallbackImplBase, ns3::empty, ns3::DefaultDeleter<ns3::CallbackImplBase> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3566
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3567
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3568
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3569
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3570
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3571
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3572
def register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3573
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3574
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3575
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3576
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter< ns3::EventImpl > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3577
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3578
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3579
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3580
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3581
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3582
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3583
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3584
def register_Ns3SimpleRefCount__Ns3Ipv4MulticastRoute_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4MulticastRoute__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3585
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3586
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3587
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3588
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4MulticastRoute > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3589
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3590
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3591
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3592
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3593
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3594
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3595
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3596
def register_Ns3SimpleRefCount__Ns3Ipv4Route_Ns3Empty_Ns3DefaultDeleter__lt__ns3Ipv4Route__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3597
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3598
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3599
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> > const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3600
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter< ns3::Ipv4Route > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3601
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Ipv4Route, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4Route> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3602
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3603
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3604
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3605
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3606
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3607
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3608
def register_Ns3SimpleRefCount__Ns3NixVector_Ns3Empty_Ns3DefaultDeleter__lt__ns3NixVector__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3609
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3610
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3611
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3612
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::NixVector, ns3::empty, ns3::DefaultDeleter< ns3::NixVector > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3613
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::NixVector, ns3::empty, ns3::DefaultDeleter<ns3::NixVector> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3614
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3615
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3616
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3617
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3618
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3619
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3620
def register_Ns3SimpleRefCount__Ns3OutputStreamWrapper_Ns3Empty_Ns3DefaultDeleter__lt__ns3OutputStreamWrapper__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3621
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3622
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3623
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3624
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter< ns3::OutputStreamWrapper > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3625
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::OutputStreamWrapper, ns3::empty, ns3::DefaultDeleter<ns3::OutputStreamWrapper> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3626
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3627
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3628
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3629
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3630
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3631
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3632
def register_Ns3SimpleRefCount__Ns3Packet_Ns3Empty_Ns3DefaultDeleter__lt__ns3Packet__gt___methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3633
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::SimpleRefCount() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3634
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3635
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3636
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Packet, ns3::empty, ns3::DefaultDeleter< ns3::Packet > > const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3637
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Packet, ns3::empty, ns3::DefaultDeleter<ns3::Packet> >::Cleanup() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3638
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3639
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3640
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3641
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3642
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3643
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3644
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
  3645
    ## 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
  3646
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3647
    ## 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
  3648
    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
  3649
    ## 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
  3650
    cls.add_method('Cleanup', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3651
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3652
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3653
                   is_static=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3654
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3655
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3656
def register_Ns3Socket_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3657
    ## socket.h (module 'network'): ns3::Socket::Socket(ns3::Socket const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3658
    cls.add_constructor([param('ns3::Socket const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3659
    ## socket.h (module 'network'): ns3::Socket::Socket() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3660
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3661
    ## socket.h (module 'network'): int ns3::Socket::Bind(ns3::Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3662
    cls.add_method('Bind', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3663
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3664
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3665
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3666
    ## socket.h (module 'network'): int ns3::Socket::Bind() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3667
    cls.add_method('Bind', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3668
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3669
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3670
                   is_pure_virtual=True, is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3671
    ## socket.h (module 'network'): int ns3::Socket::Bind6() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3672
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3673
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3674
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3675
                   is_pure_virtual=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3676
    ## socket.h (module 'network'): void ns3::Socket::BindToNetDevice(ns3::Ptr<ns3::NetDevice> netdevice) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3677
    cls.add_method('BindToNetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3678
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3679
                   [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3680
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3681
    ## socket.h (module 'network'): int ns3::Socket::Close() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3682
    cls.add_method('Close', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3683
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3684
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3685
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3686
    ## socket.h (module 'network'): int ns3::Socket::Connect(ns3::Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3687
    cls.add_method('Connect', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3688
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3689
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3690
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3691
    ## socket.h (module 'network'): static ns3::Ptr<ns3::Socket> ns3::Socket::CreateSocket(ns3::Ptr<ns3::Node> node, ns3::TypeId tid) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3692
    cls.add_method('CreateSocket', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3693
                   'ns3::Ptr< ns3::Socket >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3694
                   [param('ns3::Ptr< ns3::Node >', 'node'), param('ns3::TypeId', 'tid')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3695
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3696
    ## socket.h (module 'network'): bool ns3::Socket::GetAllowBroadcast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3697
    cls.add_method('GetAllowBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3698
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3699
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3700
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3701
    ## socket.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Socket::GetBoundNetDevice() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3702
    cls.add_method('GetBoundNetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3703
                   'ns3::Ptr< ns3::NetDevice >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3704
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3705
    ## socket.h (module 'network'): ns3::Socket::SocketErrno ns3::Socket::GetErrno() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3706
    cls.add_method('GetErrno', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3707
                   'ns3::Socket::SocketErrno', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3708
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3709
                   is_pure_virtual=True, is_const=True, is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3710
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3711
    cls.add_method('GetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3712
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3713
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3714
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3715
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3716
    cls.add_method('GetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3717
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3718
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3719
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3720
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3721
    cls.add_method('GetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3722
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3723
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3724
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3725
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3726
    cls.add_method('GetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3727
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3728
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3729
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3730
    ## socket.h (module 'network'): ns3::Ptr<ns3::Node> ns3::Socket::GetNode() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3731
    cls.add_method('GetNode', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3732
                   'ns3::Ptr< ns3::Node >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3733
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3734
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3735
    ## socket.h (module 'network'): uint32_t ns3::Socket::GetRxAvailable() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3736
    cls.add_method('GetRxAvailable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3737
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3738
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3739
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3740
    ## socket.h (module 'network'): int ns3::Socket::GetSockName(ns3::Address & address) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3741
    cls.add_method('GetSockName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3742
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3743
                   [param('ns3::Address &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3744
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3745
    ## socket.h (module 'network'): ns3::Socket::SocketType ns3::Socket::GetSocketType() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3746
    cls.add_method('GetSocketType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3747
                   'ns3::Socket::SocketType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3748
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3749
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3750
    ## socket.h (module 'network'): uint32_t ns3::Socket::GetTxAvailable() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3751
    cls.add_method('GetTxAvailable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3752
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3753
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3754
                   is_pure_virtual=True, is_const=True, is_virtual=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3755
    ## socket.h (module 'network'): static ns3::TypeId ns3::Socket::GetTypeId() [member function]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3756
    cls.add_method('GetTypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3757
                   'ns3::TypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3758
                   [], 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3759
                   is_static=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3760
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3761
    cls.add_method('IsIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3762
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3763
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3764
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3765
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3766
    cls.add_method('IsIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3767
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3768
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3769
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3770
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3771
    cls.add_method('IsIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3772
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3773
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3774
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3775
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3776
    cls.add_method('IsIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3777
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3778
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3779
                   is_const=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3780
    ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3781
    cls.add_method('IsRecvPktInfo', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3782
                   'bool', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3783
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3784
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3785
    ## socket.h (module 'network'): int ns3::Socket::Listen() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3786
    cls.add_method('Listen', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3787
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3788
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3789
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3790
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv(uint32_t maxSize, uint32_t flags) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3791
    cls.add_method('Recv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3792
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3793
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3794
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3795
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::Recv() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3796
    cls.add_method('Recv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3797
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3798
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3799
    ## socket.h (module 'network'): int ns3::Socket::Recv(uint8_t * buf, uint32_t size, uint32_t flags) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3800
    cls.add_method('Recv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3801
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3802
                   [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3803
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(uint32_t maxSize, uint32_t flags, ns3::Address & fromAddress) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3804
    cls.add_method('RecvFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3805
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3806
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3807
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3808
    ## socket.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Socket::RecvFrom(ns3::Address & fromAddress) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3809
    cls.add_method('RecvFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3810
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3811
                   [param('ns3::Address &', 'fromAddress')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3812
    ## socket.h (module 'network'): int ns3::Socket::RecvFrom(uint8_t * buf, uint32_t size, uint32_t flags, ns3::Address & fromAddress) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3813
    cls.add_method('RecvFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3814
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3815
                   [param('uint8_t *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address &', 'fromAddress')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3816
    ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p, uint32_t flags) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3817
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3818
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3819
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3820
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3821
    ## socket.h (module 'network'): int ns3::Socket::Send(ns3::Ptr<ns3::Packet> p) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3822
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3823
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3824
                   [param('ns3::Ptr< ns3::Packet >', 'p')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3825
    ## socket.h (module 'network'): int ns3::Socket::Send(uint8_t const * buf, uint32_t size, uint32_t flags) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3826
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3827
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3828
                   [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3829
    ## socket.h (module 'network'): int ns3::Socket::SendTo(ns3::Ptr<ns3::Packet> p, uint32_t flags, ns3::Address const & toAddress) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3830
    cls.add_method('SendTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3831
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3832
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('uint32_t', 'flags'), param('ns3::Address const &', 'toAddress')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3833
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3834
    ## socket.h (module 'network'): int ns3::Socket::SendTo(uint8_t const * buf, uint32_t size, uint32_t flags, ns3::Address const & address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3835
    cls.add_method('SendTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3836
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3837
                   [param('uint8_t const *', 'buf'), param('uint32_t', 'size'), param('uint32_t', 'flags'), param('ns3::Address const &', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3838
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3839
    cls.add_method('SetAcceptCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3840
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3841
                   [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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3842
    ## socket.h (module 'network'): bool ns3::Socket::SetAllowBroadcast(bool allowBroadcast) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3843
    cls.add_method('SetAllowBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3844
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3845
                   [param('bool', 'allowBroadcast')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3846
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3847
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3848
    cls.add_method('SetCloseCallbacks', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3849
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3850
                   [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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3851
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3852
    cls.add_method('SetConnectCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3853
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3854
                   [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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3855
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3856
    cls.add_method('SetDataSentCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3857
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3858
                   [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
  3859
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTos(bool ipv4RecvTos) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3860
    cls.add_method('SetIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3861
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3862
                   [param('bool', 'ipv4RecvTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3863
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTtl(bool ipv4RecvTtl) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3864
    cls.add_method('SetIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3865
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3866
                   [param('bool', 'ipv4RecvTtl')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3867
    ## 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
  3868
    cls.add_method('SetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3869
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3870
                   [param('uint8_t', 'ipTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3871
    ## 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
  3872
    cls.add_method('SetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3873
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3874
                   [param('uint8_t', 'ipTtl')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3875
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3876
    ## 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
  3877
    cls.add_method('SetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3878
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3879
                   [param('uint8_t', 'ipHopLimit')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3880
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3881
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvHopLimit(bool ipv6RecvHopLimit) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3882
    cls.add_method('SetIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3883
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3884
                   [param('bool', 'ipv6RecvHopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3885
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvTclass(bool ipv6RecvTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3886
    cls.add_method('SetIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3887
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3888
                   [param('bool', 'ipv6RecvTclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3889
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6Tclass(int ipTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3890
    cls.add_method('SetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3891
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3892
                   [param('int', 'ipTclass')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3893
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3894
    cls.add_method('SetRecvCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3895
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3896
                   [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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3897
    ## socket.h (module 'network'): void ns3::Socket::SetRecvPktInfo(bool flag) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3898
    cls.add_method('SetRecvPktInfo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3899
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3900
                   [param('bool', 'flag')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3901
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3902
    cls.add_method('SetSendCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3903
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3904
                   [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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3905
    ## socket.h (module 'network'): int ns3::Socket::ShutdownRecv() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3906
    cls.add_method('ShutdownRecv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3907
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3908
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3909
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3910
    ## socket.h (module 'network'): int ns3::Socket::ShutdownSend() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3911
    cls.add_method('ShutdownSend', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3912
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3913
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3914
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3915
    ## socket.h (module 'network'): void ns3::Socket::DoDispose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3916
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3917
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3918
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3919
                   visibility='protected', is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3920
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3921
    cls.add_method('IsManualIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3922
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3923
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3924
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3925
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3926
    cls.add_method('IsManualIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3927
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3928
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3929
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3930
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3931
    cls.add_method('IsManualIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3932
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3933
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3934
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3935
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3936
    cls.add_method('IsManualIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3937
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3938
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3939
                   is_const=True, visibility='protected')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3940
    ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionFailed() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3941
    cls.add_method('NotifyConnectionFailed', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3942
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3943
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3944
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3945
    ## socket.h (module 'network'): bool ns3::Socket::NotifyConnectionRequest(ns3::Address const & from) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3946
    cls.add_method('NotifyConnectionRequest', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3947
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3948
                   [param('ns3::Address const &', 'from')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3949
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3950
    ## socket.h (module 'network'): void ns3::Socket::NotifyConnectionSucceeded() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3951
    cls.add_method('NotifyConnectionSucceeded', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3952
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3953
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3954
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3955
    ## socket.h (module 'network'): void ns3::Socket::NotifyDataRecv() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3956
    cls.add_method('NotifyDataRecv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3957
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3958
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3959
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3960
    ## socket.h (module 'network'): void ns3::Socket::NotifyDataSent(uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3961
    cls.add_method('NotifyDataSent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3962
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3963
                   [param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3964
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3965
    ## socket.h (module 'network'): void ns3::Socket::NotifyErrorClose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3966
    cls.add_method('NotifyErrorClose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3967
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3968
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3969
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
    ## socket.h (module 'network'): void ns3::Socket::NotifyNewConnectionCreated(ns3::Ptr<ns3::Socket> socket, ns3::Address const & from) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3971
    cls.add_method('NotifyNewConnectionCreated', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3972
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3973
                   [param('ns3::Ptr< ns3::Socket >', 'socket'), param('ns3::Address const &', 'from')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3974
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3975
    ## socket.h (module 'network'): void ns3::Socket::NotifyNormalClose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3976
    cls.add_method('NotifyNormalClose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3977
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3978
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3979
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3980
    ## socket.h (module 'network'): void ns3::Socket::NotifySend(uint32_t spaceAvailable) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3981
    cls.add_method('NotifySend', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3982
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3983
                   [param('uint32_t', 'spaceAvailable')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3984
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3985
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3986
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3987
def register_Ns3SocketAddressTag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3988
    ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag(ns3::SocketAddressTag const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3989
    cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3990
    ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3991
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3992
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Deserialize(ns3::TagBuffer i) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3993
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3994
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3995
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3996
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3997
    ## socket.h (module 'network'): ns3::Address ns3::SocketAddressTag::GetAddress() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3998
    cls.add_method('GetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3999
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4000
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4001
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4002
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketAddressTag::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4003
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4004
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4005
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4006
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4007
    ## socket.h (module 'network'): uint32_t ns3::SocketAddressTag::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4008
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4009
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4010
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4011
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4012
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketAddressTag::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4013
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4014
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4015
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4016
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4017
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4018
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4019
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4020
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4021
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4022
    ## socket.h (module 'network'): void ns3::SocketAddressTag::Serialize(ns3::TagBuffer i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4023
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4024
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4025
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4026
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4027
    ## socket.h (module 'network'): void ns3::SocketAddressTag::SetAddress(ns3::Address addr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4028
    cls.add_method('SetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4029
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4030
                   [param('ns3::Address', 'addr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4031
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4032
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4033
def register_Ns3SocketIpTosTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4034
    ## 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
  4035
    cls.add_constructor([param('ns3::SocketIpTosTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4036
    ## socket.h (module 'network'): ns3::SocketIpTosTag::SocketIpTosTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4037
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4038
    ## 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
  4039
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4040
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4041
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4042
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4043
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTosTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4044
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4045
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4046
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4047
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4048
    ## socket.h (module 'network'): uint32_t ns3::SocketIpTosTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4049
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4050
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4051
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4052
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4053
    ## socket.h (module 'network'): uint8_t ns3::SocketIpTosTag::GetTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4054
    cls.add_method('GetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4055
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4056
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4057
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4058
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTosTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4059
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4060
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4061
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4062
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4063
    ## 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
  4064
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4065
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4066
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4067
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4068
    ## 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
  4069
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4070
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4071
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4072
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4073
    ## 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
  4074
    cls.add_method('SetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4075
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4076
                   [param('uint8_t', 'tos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4077
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4078
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4079
def register_Ns3SocketIpTtlTag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4080
    ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag(ns3::SocketIpTtlTag const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4081
    cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4082
    ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4083
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4084
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Deserialize(ns3::TagBuffer i) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4085
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4086
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4087
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4088
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4089
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTtlTag::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4090
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4091
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4092
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4093
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4094
    ## socket.h (module 'network'): uint32_t ns3::SocketIpTtlTag::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4095
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4096
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4097
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4098
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4099
    ## socket.h (module 'network'): uint8_t ns3::SocketIpTtlTag::GetTtl() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4100
    cls.add_method('GetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4101
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4102
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4103
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4104
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpTtlTag::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4105
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4106
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4107
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4108
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4109
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4110
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4111
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4112
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4113
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4114
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::Serialize(ns3::TagBuffer i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4115
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4116
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4117
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4118
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4119
    ## socket.h (module 'network'): void ns3::SocketIpTtlTag::SetTtl(uint8_t ttl) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4120
    cls.add_method('SetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4121
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4122
                   [param('uint8_t', 'ttl')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4123
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4124
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4125
def register_Ns3SocketIpv6HopLimitTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4126
    ## 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
  4127
    cls.add_constructor([param('ns3::SocketIpv6HopLimitTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4128
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag::SocketIpv6HopLimitTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4129
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4130
    ## 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
  4131
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4132
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4133
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4134
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4135
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6HopLimitTag::GetHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4136
    cls.add_method('GetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4137
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4138
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4139
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4140
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6HopLimitTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4141
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4142
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4143
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4144
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4145
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6HopLimitTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4146
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4147
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4148
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4149
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4150
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6HopLimitTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4151
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4152
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4153
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4154
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4155
    ## 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
  4156
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4157
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4158
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4159
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4160
    ## 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
  4161
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4162
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4163
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4164
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4165
    ## 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
  4166
    cls.add_method('SetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4167
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4168
                   [param('uint8_t', 'hopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4169
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4170
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4171
def register_Ns3SocketIpv6TclassTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4172
    ## 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
  4173
    cls.add_constructor([param('ns3::SocketIpv6TclassTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4174
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag::SocketIpv6TclassTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4175
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4176
    ## 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
  4177
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4178
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4179
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4180
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4181
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6TclassTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4182
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4183
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4184
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4185
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4186
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6TclassTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4187
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4188
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4189
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4190
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4191
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6TclassTag::GetTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4192
    cls.add_method('GetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4193
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4194
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4195
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4196
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6TclassTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4197
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4198
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4199
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4200
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4201
    ## 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
  4202
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4203
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4204
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4205
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4206
    ## 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
  4207
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4208
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4209
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4210
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4211
    ## 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
  4212
    cls.add_method('SetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4213
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4214
                   [param('uint8_t', 'tclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4215
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  4216
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4217
def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4218
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag(ns3::SocketSetDontFragmentTag const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4219
    cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4220
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4221
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4222
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Deserialize(ns3::TagBuffer i) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4223
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4224
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4225
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4226
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4227
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Disable() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4228
    cls.add_method('Disable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4229
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4230
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4231
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Enable() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4232
    cls.add_method('Enable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4233
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4234
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4235
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketSetDontFragmentTag::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4236
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4237
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4238
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4239
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4240
    ## socket.h (module 'network'): uint32_t ns3::SocketSetDontFragmentTag::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4241
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4242
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4243
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4244
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4245
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketSetDontFragmentTag::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4246
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4247
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4248
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4249
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4250
    ## socket.h (module 'network'): bool ns3::SocketSetDontFragmentTag::IsEnabled() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4251
    cls.add_method('IsEnabled', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4252
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4253
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4254
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4255
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4256
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4257
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4258
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4259
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4260
    ## socket.h (module 'network'): void ns3::SocketSetDontFragmentTag::Serialize(ns3::TagBuffer i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4261
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4262
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4263
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4264
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4265
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4266
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4267
def register_Ns3Time_methods(root_module, cls):
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4268
    cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4269
    cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4270
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4271
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4272
    cls.add_binary_comparison_operator('!=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4273
    cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4274
    cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', 'right'))
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4275
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4276
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4277
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4278
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4279
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4280
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4281
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::Time const & o) [copy constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4282
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4283
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4284
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4285
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4286
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4287
    ## nstime.h (module 'core'): ns3::Time::Time(long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4288
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4289
    ## nstime.h (module 'core'): ns3::Time::Time(long long int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4290
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4291
    ## nstime.h (module 'core'): ns3::Time::Time(unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4292
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4293
    ## nstime.h (module 'core'): ns3::Time::Time(long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4294
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4295
    ## nstime.h (module 'core'): ns3::Time::Time(long long unsigned int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4296
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4297
    ## nstime.h (module 'core'): ns3::Time::Time(std::string const & s) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4298
    cls.add_constructor([param('std::string const &', 's')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4299
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & value) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4300
    cls.add_constructor([param('ns3::int64x64_t const &', 'value')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4301
    ## 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: 6989
diff changeset
  4302
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4303
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4304
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4305
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4306
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & from, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4307
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4308
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4309
                   [param('ns3::int64x64_t const &', 'from'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4310
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4311
    ## 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: 6989
diff changeset
  4312
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4313
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4314
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4315
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4316
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4317
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4318
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4319
                   [param('double', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4320
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4321
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit timeUnit) [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4322
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4323
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4324
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4325
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4326
    ## nstime.h (module 'core'): double ns3::Time::GetDouble() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4327
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4328
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4329
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4330
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4331
    ## nstime.h (module 'core'): int64_t ns3::Time::GetFemtoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4332
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4333
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4334
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4335
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4336
    ## nstime.h (module 'core'): int64_t ns3::Time::GetInteger() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4337
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4338
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4339
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4340
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4341
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMicroSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4342
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4343
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4344
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4345
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4346
    ## nstime.h (module 'core'): int64_t ns3::Time::GetMilliSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4347
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4348
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4349
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4350
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4351
    ## nstime.h (module 'core'): int64_t ns3::Time::GetNanoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4352
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4353
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4354
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4355
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4356
    ## nstime.h (module 'core'): int64_t ns3::Time::GetPicoSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4357
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4358
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4359
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4360
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4361
    ## nstime.h (module 'core'): static ns3::Time::Unit ns3::Time::GetResolution() [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4362
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4363
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4364
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4365
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4366
    ## nstime.h (module 'core'): double ns3::Time::GetSeconds() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4367
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4368
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4369
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4370
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4371
    ## nstime.h (module 'core'): int64_t ns3::Time::GetTimeStep() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4372
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4373
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4374
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4375
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4376
    ## nstime.h (module 'core'): bool ns3::Time::IsNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4377
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4378
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4379
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4380
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4381
    ## nstime.h (module 'core'): bool ns3::Time::IsPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4382
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4383
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4384
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4385
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4386
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyNegative() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4387
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4388
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4389
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4390
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4391
    ## nstime.h (module 'core'): bool ns3::Time::IsStrictlyPositive() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4392
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4393
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4394
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4395
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4396
    ## nstime.h (module 'core'): bool ns3::Time::IsZero() const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4397
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4398
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4399
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4400
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4401
    ## 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: 6989
diff changeset
  4402
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4403
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4404
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4405
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4406
    ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4407
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4408
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4409
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4410
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4411
    ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4412
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4413
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4414
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4415
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4416
    ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit timeUnit) const [member function]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4417
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4418
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4419
                   [param('ns3::Time::Unit', 'timeUnit')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4420
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4421
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4422
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4423
def register_Ns3TraceSourceAccessor_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4424
    ## 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
  4425
    cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4426
    ## 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
  4427
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4428
    ## 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
  4429
    cls.add_method('Connect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4430
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4431
                   [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
  4432
                   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
  4433
    ## 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
  4434
    cls.add_method('ConnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4435
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4436
                   [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
  4437
                   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
  4438
    ## 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
  4439
    cls.add_method('Disconnect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4440
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4441
                   [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
  4442
                   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
  4443
    ## 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
  4444
    cls.add_method('DisconnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4445
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4446
                   [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
  4447
                   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
  4448
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4449
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4450
def register_Ns3Trailer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4451
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4452
    ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4453
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4454
    ## trailer.h (module 'network'): ns3::Trailer::Trailer(ns3::Trailer const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4455
    cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4456
    ## trailer.h (module 'network'): uint32_t ns3::Trailer::Deserialize(ns3::Buffer::Iterator end) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4457
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4458
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4459
                   [param('ns3::Buffer::Iterator', 'end')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4460
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4461
    ## trailer.h (module 'network'): uint32_t ns3::Trailer::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4462
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4463
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4464
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4465
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4466
    ## trailer.h (module 'network'): static ns3::TypeId ns3::Trailer::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4467
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4468
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4469
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4470
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4471
    ## trailer.h (module 'network'): void ns3::Trailer::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4472
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4473
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4474
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4475
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4476
    ## trailer.h (module 'network'): void ns3::Trailer::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4477
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4478
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4479
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4480
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4481
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4482
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4483
def register_Ns3TriangularRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4484
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::TriangularRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4485
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4486
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4487
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4488
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4489
    ## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable::TriangularRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4490
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4491
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMean() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4492
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4493
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4494
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4495
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4496
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMin() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4497
    cls.add_method('GetMin', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4498
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4499
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4500
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4501
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetMax() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4502
    cls.add_method('GetMax', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4503
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4504
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4505
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4506
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue(double mean, double min, double max) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4507
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4508
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4509
                   [param('double', 'mean'), param('double', 'min'), param('double', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4510
    ## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger(uint32_t mean, uint32_t min, uint32_t max) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4511
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4512
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4513
                   [param('uint32_t', 'mean'), param('uint32_t', 'min'), param('uint32_t', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4514
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4515
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4516
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4517
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4518
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4519
    ## random-variable-stream.h (module 'core'): uint32_t ns3::TriangularRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4520
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4521
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4522
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4523
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4524
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4525
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4526
def register_Ns3UniformRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4527
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::UniformRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4528
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4529
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4530
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4531
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4532
    ## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable::UniformRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4533
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4534
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMin() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4535
    cls.add_method('GetMin', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4536
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4537
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4538
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4539
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetMax() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4540
    cls.add_method('GetMax', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4541
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4542
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4543
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4544
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue(double min, double max) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4545
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4546
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4547
                   [param('double', 'min'), param('double', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4548
    ## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger(uint32_t min, uint32_t max) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4549
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4550
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4551
                   [param('uint32_t', 'min'), param('uint32_t', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4552
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4553
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4554
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4555
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4556
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4557
    ## random-variable-stream.h (module 'core'): uint32_t ns3::UniformRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4558
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4559
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4560
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4561
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4562
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4563
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4564
def register_Ns3WeibullRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4565
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::WeibullRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4566
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4567
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4568
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4569
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4570
    ## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable::WeibullRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4571
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4572
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetScale() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4573
    cls.add_method('GetScale', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4574
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4575
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4576
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4577
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetShape() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4578
    cls.add_method('GetShape', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4579
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4580
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4581
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4582
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetBound() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4583
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4584
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4585
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4586
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4587
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue(double scale, double shape, double bound) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4588
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4589
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4590
                   [param('double', 'scale'), param('double', 'shape'), param('double', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4591
    ## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger(uint32_t scale, uint32_t shape, uint32_t bound) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4592
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4593
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4594
                   [param('uint32_t', 'scale'), param('uint32_t', 'shape'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4595
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4596
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4597
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4598
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4599
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4600
    ## random-variable-stream.h (module 'core'): uint32_t ns3::WeibullRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4601
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4602
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4603
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4604
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4605
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4606
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4607
def register_Ns3ZetaRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4608
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZetaRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4609
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4610
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4611
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4612
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4613
    ## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable::ZetaRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4614
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4615
    ## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetAlpha() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4616
    cls.add_method('GetAlpha', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4617
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4618
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4619
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4620
    ## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue(double alpha) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4621
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4622
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4623
                   [param('double', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4624
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger(uint32_t alpha) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4625
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4626
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4627
                   [param('uint32_t', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4628
    ## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4629
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4630
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4631
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4632
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4633
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZetaRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4634
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4635
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4636
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4637
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4638
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4639
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4640
def register_Ns3ZipfRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4641
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ZipfRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4642
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4643
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4644
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4645
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4646
    ## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable::ZipfRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4647
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4648
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetN() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4649
    cls.add_method('GetN', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4650
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4651
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4652
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4653
    ## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetAlpha() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4654
    cls.add_method('GetAlpha', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4655
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4656
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4657
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4658
    ## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue(uint32_t n, double alpha) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4659
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4660
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4661
                   [param('uint32_t', 'n'), param('double', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4662
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger(uint32_t n, uint32_t alpha) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4663
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4664
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4665
                   [param('uint32_t', 'n'), param('uint32_t', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4666
    ## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4667
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4668
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4669
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4670
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4671
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ZipfRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4672
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4673
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4674
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4675
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4676
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4677
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4678
def register_Ns3AttributeAccessor_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4679
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor(ns3::AttributeAccessor const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4680
    cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4681
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4682
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4683
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Get(ns3::ObjectBase const * object, ns3::AttributeValue & attribute) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4684
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4685
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4686
                   [param('ns3::ObjectBase const *', 'object'), param('ns3::AttributeValue &', 'attribute')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4687
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4688
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasGetter() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4689
    cls.add_method('HasGetter', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4690
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4691
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4692
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4693
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::HasSetter() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4694
    cls.add_method('HasSetter', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4695
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4696
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4697
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4698
    ## attribute.h (module 'core'): bool ns3::AttributeAccessor::Set(ns3::ObjectBase * object, ns3::AttributeValue const & value) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4699
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4700
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4701
                   [param('ns3::ObjectBase *', 'object', transfer_ownership=False), param('ns3::AttributeValue const &', 'value')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4702
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4703
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4704
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4705
def register_Ns3AttributeChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4706
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker(ns3::AttributeChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4707
    cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4708
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4709
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4710
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Check(ns3::AttributeValue const & value) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4711
    cls.add_method('Check', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4712
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4713
                   [param('ns3::AttributeValue const &', 'value')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4714
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4715
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::Copy(ns3::AttributeValue const & source, ns3::AttributeValue & destination) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4716
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4717
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4718
                   [param('ns3::AttributeValue const &', 'source'), param('ns3::AttributeValue &', 'destination')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4719
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4720
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeChecker::Create() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4721
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4722
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4723
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4724
                   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
  4725
    ## 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
  4726
    cls.add_method('CreateValidValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4727
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4728
                   [param('ns3::AttributeValue const &', 'value')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4729
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4730
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetUnderlyingTypeInformation() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4731
    cls.add_method('GetUnderlyingTypeInformation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4732
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4733
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4734
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4735
    ## attribute.h (module 'core'): std::string ns3::AttributeChecker::GetValueTypeName() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4736
    cls.add_method('GetValueTypeName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4737
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4738
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4739
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4740
    ## attribute.h (module 'core'): bool ns3::AttributeChecker::HasUnderlyingTypeInformation() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4741
    cls.add_method('HasUnderlyingTypeInformation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4742
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4743
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4744
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4745
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4746
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4747
def register_Ns3AttributeValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4748
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue(ns3::AttributeValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4749
    cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4750
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4751
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4752
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::AttributeValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4753
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4754
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4755
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4756
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4757
    ## attribute.h (module 'core'): bool ns3::AttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4758
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4759
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4760
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4761
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4762
    ## attribute.h (module 'core'): std::string ns3::AttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4763
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4764
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4765
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4766
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4767
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4768
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4769
def register_Ns3CallbackChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4770
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4771
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4772
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker(ns3::CallbackChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4773
    cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4774
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4775
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4776
def register_Ns3CallbackImplBase_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4777
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4778
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4779
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase(ns3::CallbackImplBase const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4780
    cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4781
    ## callback.h (module 'core'): bool ns3::CallbackImplBase::IsEqual(ns3::Ptr<ns3::CallbackImplBase const> other) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4782
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4783
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4784
                   [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4785
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4786
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4787
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4788
def register_Ns3CallbackValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4789
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4790
    cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4791
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4792
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4793
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue(ns3::CallbackBase const & base) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4794
    cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4795
    ## callback.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::CallbackValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4796
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4797
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4798
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4799
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4800
    ## callback.h (module 'core'): bool ns3::CallbackValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4801
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4802
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4803
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4804
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4805
    ## callback.h (module 'core'): std::string ns3::CallbackValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4806
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4807
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4808
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4809
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4810
    ## callback.h (module 'core'): void ns3::CallbackValue::Set(ns3::CallbackBase base) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4811
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4812
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4813
                   [param('ns3::CallbackBase', 'base')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4814
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4815
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4816
def register_Ns3ConstantRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4817
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ConstantRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4818
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4819
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4820
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4821
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4822
    ## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable::ConstantRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4823
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4824
    ## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetConstant() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4825
    cls.add_method('GetConstant', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4826
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4827
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4828
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4829
    ## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue(double constant) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4830
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4831
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4832
                   [param('double', 'constant')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4833
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger(uint32_t constant) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4834
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4835
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4836
                   [param('uint32_t', 'constant')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4837
    ## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4838
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4839
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4840
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4841
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4842
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ConstantRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4843
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4844
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4845
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4846
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4847
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4848
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4849
def register_Ns3DeterministicRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4850
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::DeterministicRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4851
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4852
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4853
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4854
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4855
    ## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable::DeterministicRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4856
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4857
    ## random-variable-stream.h (module 'core'): void ns3::DeterministicRandomVariable::SetValueArray(double * values, uint64_t length) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4858
    cls.add_method('SetValueArray', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4859
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4860
                   [param('double *', 'values'), param('uint64_t', 'length')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4861
    ## random-variable-stream.h (module 'core'): double ns3::DeterministicRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4862
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4863
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4864
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4865
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4866
    ## random-variable-stream.h (module 'core'): uint32_t ns3::DeterministicRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4867
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4868
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4869
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4870
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4871
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4872
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4873
def register_Ns3EmpiricalRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4874
    ## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable::EmpiricalRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4875
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4876
    ## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::CDF(double v, double c) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4877
    cls.add_method('CDF', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4878
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4879
                   [param('double', 'v'), param('double', 'c')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4880
    ## random-variable-stream.h (module 'core'): uint32_t ns3::EmpiricalRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4881
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4882
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4883
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4884
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4885
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::EmpiricalRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4886
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4887
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4888
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4889
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4890
    ## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4891
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4892
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4893
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4894
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4895
    ## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::Interpolate(double arg0, double arg1, double arg2, double arg3, double arg4) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4896
    cls.add_method('Interpolate', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4897
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4898
                   [param('double', 'arg0'), param('double', 'arg1'), param('double', 'arg2'), param('double', 'arg3'), param('double', 'arg4')], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4899
                   visibility='private', is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4900
    ## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::Validate() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4901
    cls.add_method('Validate', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4902
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4903
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4904
                   visibility='private', is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4905
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4906
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4907
def register_Ns3EmptyAttributeValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4908
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue(ns3::EmptyAttributeValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4909
    cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4910
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4911
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4912
    ## attribute.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::EmptyAttributeValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4913
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4914
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4915
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4916
                   is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4917
    ## attribute.h (module 'core'): bool ns3::EmptyAttributeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4918
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4919
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4920
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4921
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4922
    ## attribute.h (module 'core'): std::string ns3::EmptyAttributeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4923
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4924
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4925
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4926
                   is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4927
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4928
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4929
def register_Ns3ErlangRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4930
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ErlangRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4931
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4932
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4933
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4934
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4935
    ## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable::ErlangRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4936
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4937
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetK() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4938
    cls.add_method('GetK', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4939
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4940
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4941
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4942
    ## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetLambda() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4943
    cls.add_method('GetLambda', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4944
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4945
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4946
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4947
    ## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue(uint32_t k, double lambda) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4948
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4949
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4950
                   [param('uint32_t', 'k'), param('double', 'lambda')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4951
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger(uint32_t k, uint32_t lambda) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4952
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4953
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4954
                   [param('uint32_t', 'k'), param('uint32_t', 'lambda')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4955
    ## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4956
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4957
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4958
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4959
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4960
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ErlangRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4961
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4962
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4963
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4964
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4965
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4966
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4967
def register_Ns3EventImpl_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4968
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl(ns3::EventImpl const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4969
    cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4970
    ## event-impl.h (module 'core'): ns3::EventImpl::EventImpl() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4971
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4972
    ## event-impl.h (module 'core'): void ns3::EventImpl::Cancel() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4973
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4974
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4975
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4976
    ## event-impl.h (module 'core'): void ns3::EventImpl::Invoke() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4977
    cls.add_method('Invoke', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4978
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4979
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4980
    ## event-impl.h (module 'core'): bool ns3::EventImpl::IsCancelled() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4981
    cls.add_method('IsCancelled', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4982
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4983
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4984
    ## event-impl.h (module 'core'): void ns3::EventImpl::Notify() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4985
    cls.add_method('Notify', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4986
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4987
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4988
                   is_pure_virtual=True, visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4989
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4990
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4991
def register_Ns3ExponentialRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4992
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ExponentialRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4993
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4994
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4995
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4996
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4997
    ## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable::ExponentialRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4998
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4999
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetMean() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5000
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5001
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5002
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5003
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5004
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetBound() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5005
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5006
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5007
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5008
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5009
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue(double mean, double bound) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5010
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5011
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5012
                   [param('double', 'mean'), param('double', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5013
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger(uint32_t mean, uint32_t bound) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5014
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5015
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5016
                   [param('uint32_t', 'mean'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5017
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5018
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5019
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5020
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5021
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5022
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ExponentialRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5023
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5024
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5025
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5026
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5027
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5028
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5029
def register_Ns3GammaRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5030
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::GammaRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5031
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5032
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5033
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5034
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5035
    ## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable::GammaRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5036
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5037
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetAlpha() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5038
    cls.add_method('GetAlpha', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5039
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5040
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5041
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5042
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetBeta() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5043
    cls.add_method('GetBeta', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5044
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5045
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5046
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5047
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue(double alpha, double beta) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5048
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5049
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5050
                   [param('double', 'alpha'), param('double', 'beta')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5051
    ## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger(uint32_t alpha, uint32_t beta) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5052
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5053
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5054
                   [param('uint32_t', 'alpha'), param('uint32_t', 'beta')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5055
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5056
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5057
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5058
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5059
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5060
    ## random-variable-stream.h (module 'core'): uint32_t ns3::GammaRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5061
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5062
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5063
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5064
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5065
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5066
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5067
def register_Ns3IpL4Protocol_methods(root_module, cls):
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5068
    ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol() [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5069
    cls.add_constructor([])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5070
    ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::IpL4Protocol(ns3::IpL4Protocol const & arg0) [copy constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5071
    cls.add_constructor([param('ns3::IpL4Protocol const &', 'arg0')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5072
    ## ip-l4-protocol.h (module 'internet'): ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv4Address,ns3::Ipv4Address,unsigned char,ns3::Ptr<ns3::Ipv4Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::IpL4Protocol::GetDownTarget() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5073
    cls.add_method('GetDownTarget', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5074
                   'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv4Address, ns3::Ipv4Address, unsigned char, ns3::Ptr< ns3::Ipv4Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5075
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5076
                   is_pure_virtual=True, is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5077
    ## ip-l4-protocol.h (module 'internet'): ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv6Address,ns3::Ipv6Address,unsigned char,ns3::Ptr<ns3::Ipv6Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ns3::IpL4Protocol::GetDownTarget6() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5078
    cls.add_method('GetDownTarget6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5079
                   'ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv6Address, ns3::Ipv6Address, unsigned char, ns3::Ptr< ns3::Ipv6Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5080
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5081
                   is_pure_virtual=True, is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5082
    ## ip-l4-protocol.h (module 'internet'): int ns3::IpL4Protocol::GetProtocolNumber() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5083
    cls.add_method('GetProtocolNumber', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5084
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5085
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5086
                   is_pure_virtual=True, is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5087
    ## ip-l4-protocol.h (module 'internet'): static ns3::TypeId ns3::IpL4Protocol::GetTypeId() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5088
    cls.add_method('GetTypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5089
                   'ns3::TypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5090
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5091
                   is_static=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5092
    ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus ns3::IpL4Protocol::Receive(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::Ipv4Interface> incomingInterface) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5093
    cls.add_method('Receive', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5094
                   'ns3::IpL4Protocol::RxStatus', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5095
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::Ipv4Interface >', 'incomingInterface')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5096
                   is_pure_virtual=True, is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5097
    ## ip-l4-protocol.h (module 'internet'): ns3::IpL4Protocol::RxStatus ns3::IpL4Protocol::Receive(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Header const & header, ns3::Ptr<ns3::Ipv6Interface> incomingInterface) [member function]
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5098
    cls.add_method('Receive', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5099
                   'ns3::IpL4Protocol::RxStatus', 
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  5100
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Header const &', 'header'), param('ns3::Ptr< ns3::Ipv6Interface >', 'incomingInterface')], 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5101
                   is_pure_virtual=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5102
    ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::ReceiveIcmp(ns3::Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, ns3::Ipv4Address payloadSource, ns3::Ipv4Address payloadDestination, uint8_t const * payload) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5103
    cls.add_method('ReceiveIcmp', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5104
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5105
                   [param('ns3::Ipv4Address', 'icmpSource'), param('uint8_t', 'icmpTtl'), param('uint8_t', 'icmpType'), param('uint8_t', 'icmpCode'), param('uint32_t', 'icmpInfo'), param('ns3::Ipv4Address', 'payloadSource'), param('ns3::Ipv4Address', 'payloadDestination'), param('uint8_t const *', 'payload')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5106
                   is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5107
    ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::ReceiveIcmp(ns3::Ipv6Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, ns3::Ipv6Address payloadSource, ns3::Ipv6Address payloadDestination, uint8_t const * payload) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5108
    cls.add_method('ReceiveIcmp', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5109
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5110
                   [param('ns3::Ipv6Address', 'icmpSource'), param('uint8_t', 'icmpTtl'), param('uint8_t', 'icmpType'), param('uint8_t', 'icmpCode'), param('uint32_t', 'icmpInfo'), param('ns3::Ipv6Address', 'payloadSource'), param('ns3::Ipv6Address', 'payloadDestination'), param('uint8_t const *', 'payload')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5111
                   is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5112
    ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::SetDownTarget(ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv4Address,ns3::Ipv4Address,unsigned char,ns3::Ptr<ns3::Ipv4Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5113
    cls.add_method('SetDownTarget', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5114
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5115
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv4Address, ns3::Ipv4Address, unsigned char, ns3::Ptr< ns3::Ipv4Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5116
                   is_pure_virtual=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5117
    ## ip-l4-protocol.h (module 'internet'): void ns3::IpL4Protocol::SetDownTarget6(ns3::Callback<void,ns3::Ptr<ns3::Packet>,ns3::Ipv6Address,ns3::Ipv6Address,unsigned char,ns3::Ptr<ns3::Ipv6Route>,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5118
    cls.add_method('SetDownTarget6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5119
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5120
                   [param('ns3::Callback< void, ns3::Ptr< ns3::Packet >, ns3::Ipv6Address, ns3::Ipv6Address, unsigned char, ns3::Ptr< ns3::Ipv6Route >, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5121
                   is_pure_virtual=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5122
    return
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5123
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5124
def register_Ns3Ipv4_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5125
    ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4(ns3::Ipv4 const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5126
    cls.add_constructor([param('ns3::Ipv4 const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5127
    ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5128
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5129
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::AddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5130
    cls.add_method('AddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5131
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5132
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5133
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5134
    ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::AddInterface(ns3::Ptr<ns3::NetDevice> device) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5135
    cls.add_method('AddInterface', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5136
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5137
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5138
                   is_pure_virtual=True, is_virtual=True)
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5139
    ## ipv4.h (module 'internet'): ns3::Ptr<ns3::Socket> ns3::Ipv4::CreateRawSocket() [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5140
    cls.add_method('CreateRawSocket', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5141
                   'ns3::Ptr< ns3::Socket >', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5142
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5143
                   is_pure_virtual=True, is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5144
    ## ipv4.h (module 'internet'): void ns3::Ipv4::DeleteRawSocket(ns3::Ptr<ns3::Socket> socket) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5145
    cls.add_method('DeleteRawSocket', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5146
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5147
                   [param('ns3::Ptr< ns3::Socket >', 'socket')], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5148
                   is_pure_virtual=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5149
    ## ipv4.h (module 'internet'): ns3::Ipv4InterfaceAddress ns3::Ipv4::GetAddress(uint32_t interface, uint32_t addressIndex) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5150
    cls.add_method('GetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5151
                   'ns3::Ipv4InterfaceAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5152
                   [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5153
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5154
    ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForAddress(ns3::Ipv4Address address) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5155
    cls.add_method('GetInterfaceForAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5156
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5157
                   [param('ns3::Ipv4Address', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5158
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5159
    ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForDevice(ns3::Ptr<const ns3::NetDevice> device) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5160
    cls.add_method('GetInterfaceForDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5161
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5162
                   [param('ns3::Ptr< ns3::NetDevice const >', 'device')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5163
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5164
    ## ipv4.h (module 'internet'): int32_t ns3::Ipv4::GetInterfaceForPrefix(ns3::Ipv4Address address, ns3::Ipv4Mask mask) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5165
    cls.add_method('GetInterfaceForPrefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5166
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5167
                   [param('ns3::Ipv4Address', 'address'), param('ns3::Ipv4Mask', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5168
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5169
    ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMetric(uint32_t interface) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5170
    cls.add_method('GetMetric', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5171
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5172
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5173
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5174
    ## ipv4.h (module 'internet'): uint16_t ns3::Ipv4::GetMtu(uint32_t interface) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5175
    cls.add_method('GetMtu', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5176
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5177
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5178
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5179
    ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNAddresses(uint32_t interface) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5180
    cls.add_method('GetNAddresses', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5181
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5182
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5183
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5184
    ## ipv4.h (module 'internet'): uint32_t ns3::Ipv4::GetNInterfaces() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5185
    cls.add_method('GetNInterfaces', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5186
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5187
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5188
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5189
    ## ipv4.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4::GetNetDevice(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5190
    cls.add_method('GetNetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5191
                   'ns3::Ptr< ns3::NetDevice >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5192
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5193
                   is_pure_virtual=True, is_virtual=True)
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5194
    ## ipv4.h (module 'internet'): ns3::Ptr<ns3::IpL4Protocol> ns3::Ipv4::GetProtocol(int protocolNumber) const [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5195
    cls.add_method('GetProtocol', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5196
                   'ns3::Ptr< ns3::IpL4Protocol >', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5197
                   [param('int', 'protocolNumber')], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5198
                   is_pure_virtual=True, is_const=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5199
    ## ipv4.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4::GetRoutingProtocol() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5200
    cls.add_method('GetRoutingProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5201
                   'ns3::Ptr< ns3::Ipv4RoutingProtocol >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5202
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5203
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5204
    ## ipv4.h (module 'internet'): static ns3::TypeId ns3::Ipv4::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5205
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5206
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5207
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5208
                   is_static=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5209
    ## ipv4.h (module 'internet'): void ns3::Ipv4::Insert(ns3::Ptr<ns3::IpL4Protocol> protocol) [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5210
    cls.add_method('Insert', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5211
                   'void', 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5212
                   [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')], 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5213
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5214
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsDestinationAddress(ns3::Ipv4Address address, uint32_t iif) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5215
    cls.add_method('IsDestinationAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5216
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5217
                   [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5218
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5219
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsForwarding(uint32_t interface) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5220
    cls.add_method('IsForwarding', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5221
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5222
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5223
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5224
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::IsUp(uint32_t interface) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5225
    cls.add_method('IsUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5226
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5227
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5228
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5229
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::RemoveAddress(uint32_t interface, uint32_t addressIndex) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5230
    cls.add_method('RemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5231
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5232
                   [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5233
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5234
    ## ipv4.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4::SelectSourceAddress(ns3::Ptr<const ns3::NetDevice> device, ns3::Ipv4Address dst, ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e scope) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5235
    cls.add_method('SelectSourceAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5236
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5237
                   [param('ns3::Ptr< ns3::NetDevice const >', 'device'), param('ns3::Ipv4Address', 'dst'), param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5238
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5239
    ## ipv4.h (module 'internet'): void ns3::Ipv4::Send(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Address source, ns3::Ipv4Address destination, uint8_t protocol, ns3::Ptr<ns3::Ipv4Route> route) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5240
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5241
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5242
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Address', 'source'), param('ns3::Ipv4Address', 'destination'), param('uint8_t', 'protocol'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5243
                   is_pure_virtual=True, is_virtual=True)
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5244
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SendWithHeader(ns3::Ptr<ns3::Packet> packet, ns3::Ipv4Header ipHeader, ns3::Ptr<ns3::Ipv4Route> route) [member function]
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5245
    cls.add_method('SendWithHeader', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5246
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5247
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Ipv4Header', 'ipHeader'), param('ns3::Ptr< ns3::Ipv4Route >', 'route')], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  5248
                   is_pure_virtual=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5249
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SetDown(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5250
    cls.add_method('SetDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5251
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5252
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5253
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5254
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SetForwarding(uint32_t interface, bool val) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5255
    cls.add_method('SetForwarding', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5256
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5257
                   [param('uint32_t', 'interface'), param('bool', 'val')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5258
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5259
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SetMetric(uint32_t interface, uint16_t metric) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5260
    cls.add_method('SetMetric', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5261
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5262
                   [param('uint32_t', 'interface'), param('uint16_t', 'metric')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5263
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5264
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SetRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5265
    cls.add_method('SetRoutingProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5266
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5267
                   [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5268
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5269
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SetUp(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5270
    cls.add_method('SetUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5271
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5272
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5273
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5274
    ## ipv4.h (module 'internet'): ns3::Ipv4::IF_ANY [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5275
    cls.add_static_attribute('IF_ANY', 'uint32_t const', is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5276
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetIpForward() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5277
    cls.add_method('GetIpForward', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5278
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5279
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5280
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5281
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::GetWeakEsModel() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5282
    cls.add_method('GetWeakEsModel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5283
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5284
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5285
                   is_pure_virtual=True, is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5286
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SetIpForward(bool forward) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5287
    cls.add_method('SetIpForward', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5288
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5289
                   [param('bool', 'forward')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5290
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5291
    ## ipv4.h (module 'internet'): void ns3::Ipv4::SetWeakEsModel(bool model) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5292
    cls.add_method('SetWeakEsModel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5293
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5294
                   [param('bool', 'model')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5295
                   is_pure_virtual=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5296
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5297
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5298
def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5299
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5300
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5301
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker::Ipv4AddressChecker(ns3::Ipv4AddressChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5302
    cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5303
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5304
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5305
def register_Ns3Ipv4AddressValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5306
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5307
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5308
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4AddressValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5309
    cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5310
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue::Ipv4AddressValue(ns3::Ipv4Address const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5311
    cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5312
    ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4AddressValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5313
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5314
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5315
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5316
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5317
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5318
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5319
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5320
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5321
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5322
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address ns3::Ipv4AddressValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5323
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5324
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5325
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5326
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5327
    ## ipv4-address.h (module 'network'): std::string ns3::Ipv4AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5328
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5329
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5330
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5331
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5332
    ## ipv4-address.h (module 'network'): void ns3::Ipv4AddressValue::Set(ns3::Ipv4Address const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5333
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5334
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5335
                   [param('ns3::Ipv4Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5336
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5337
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5338
def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5339
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5340
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5341
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker::Ipv4MaskChecker(ns3::Ipv4MaskChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5342
    cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5343
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5344
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5345
def register_Ns3Ipv4MaskValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5346
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5347
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5348
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4MaskValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5349
    cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5350
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue::Ipv4MaskValue(ns3::Ipv4Mask const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5351
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5352
    ## ipv4-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv4MaskValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5353
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5354
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5355
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5356
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5357
    ## ipv4-address.h (module 'network'): bool ns3::Ipv4MaskValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5358
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5359
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5360
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5361
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5362
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask ns3::Ipv4MaskValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5363
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5364
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5365
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5366
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5367
    ## ipv4-address.h (module 'network'): std::string ns3::Ipv4MaskValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5368
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5369
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5370
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5371
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5372
    ## ipv4-address.h (module 'network'): void ns3::Ipv4MaskValue::Set(ns3::Ipv4Mask const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5373
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5374
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5375
                   [param('ns3::Ipv4Mask const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5376
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5377
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5378
def register_Ns3Ipv4MulticastRoute_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5379
    ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute(ns3::Ipv4MulticastRoute const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5380
    cls.add_constructor([param('ns3::Ipv4MulticastRoute const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5381
    ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::Ipv4MulticastRoute() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5382
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5383
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetGroup() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5384
    cls.add_method('GetGroup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5385
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5386
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5387
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5388
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4MulticastRoute::GetOrigin() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5389
    cls.add_method('GetOrigin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5390
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5391
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5392
                   is_const=True)
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5393
    ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetOutputTtl(uint32_t oif) [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5394
    cls.add_method('GetOutputTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5395
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5396
                   [param('uint32_t', 'oif')], 
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5397
                   deprecated=True)
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5398
    ## ipv4-route.h (module 'internet'): std::map<unsigned int, unsigned int, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, unsigned int> > > ns3::Ipv4MulticastRoute::GetOutputTtlMap() const [member function]
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5399
    cls.add_method('GetOutputTtlMap', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5400
                   'std::map< unsigned int, unsigned int >', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5401
                   [], 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5402
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5403
    ## ipv4-route.h (module 'internet'): uint32_t ns3::Ipv4MulticastRoute::GetParent() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5404
    cls.add_method('GetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5405
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5406
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5407
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5408
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetGroup(ns3::Ipv4Address const group) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5409
    cls.add_method('SetGroup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5410
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5411
                   [param('ns3::Ipv4Address const', 'group')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5412
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOrigin(ns3::Ipv4Address const origin) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5413
    cls.add_method('SetOrigin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5414
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5415
                   [param('ns3::Ipv4Address const', 'origin')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5416
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetOutputTtl(uint32_t oif, uint32_t ttl) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5417
    cls.add_method('SetOutputTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5418
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5419
                   [param('uint32_t', 'oif'), param('uint32_t', 'ttl')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5420
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4MulticastRoute::SetParent(uint32_t iif) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5421
    cls.add_method('SetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5422
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5423
                   [param('uint32_t', 'iif')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5424
    ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_INTERFACES [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5425
    cls.add_static_attribute('MAX_INTERFACES', 'uint32_t const', is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5426
    ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute::MAX_TTL [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5427
    cls.add_static_attribute('MAX_TTL', 'uint32_t const', is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5428
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5429
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5430
def register_Ns3Ipv4Route_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5431
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5432
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route(ns3::Ipv4Route const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5433
    cls.add_constructor([param('ns3::Ipv4Route const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5434
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Route::Ipv4Route() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5435
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5436
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetDestination() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5437
    cls.add_method('GetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5438
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5439
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5440
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5441
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetGateway() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5442
    cls.add_method('GetGateway', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5443
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5444
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5445
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5446
    ## ipv4-route.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv4Route::GetOutputDevice() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5447
    cls.add_method('GetOutputDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5448
                   'ns3::Ptr< ns3::NetDevice >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5449
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5450
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5451
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Address ns3::Ipv4Route::GetSource() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5452
    cls.add_method('GetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5453
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5454
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5455
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5456
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetDestination(ns3::Ipv4Address dest) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5457
    cls.add_method('SetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5458
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5459
                   [param('ns3::Ipv4Address', 'dest')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5460
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetGateway(ns3::Ipv4Address gw) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5461
    cls.add_method('SetGateway', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5462
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5463
                   [param('ns3::Ipv4Address', 'gw')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5464
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetOutputDevice(ns3::Ptr<ns3::NetDevice> outputDevice) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5465
    cls.add_method('SetOutputDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5466
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5467
                   [param('ns3::Ptr< ns3::NetDevice >', 'outputDevice')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5468
    ## ipv4-route.h (module 'internet'): void ns3::Ipv4Route::SetSource(ns3::Ipv4Address src) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5469
    cls.add_method('SetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5470
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5471
                   [param('ns3::Ipv4Address', 'src')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5472
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5473
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5474
def register_Ns3Ipv4RoutingProtocol_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5475
    ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5476
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5477
    ## ipv4-routing-protocol.h (module 'internet'): ns3::Ipv4RoutingProtocol::Ipv4RoutingProtocol(ns3::Ipv4RoutingProtocol const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5478
    cls.add_constructor([param('ns3::Ipv4RoutingProtocol const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5479
    ## ipv4-routing-protocol.h (module 'internet'): static ns3::TypeId ns3::Ipv4RoutingProtocol::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5480
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5481
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5482
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5483
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5484
    ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5485
    cls.add_method('NotifyAddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5486
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5487
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5488
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5489
    ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceDown(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5490
    cls.add_method('NotifyInterfaceDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5491
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5492
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5493
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5494
    ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyInterfaceUp(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5495
    cls.add_method('NotifyInterfaceUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5496
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5497
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5498
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5499
    ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5500
    cls.add_method('NotifyRemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5501
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5502
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5503
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5504
    ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::PrintRoutingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5505
    cls.add_method('PrintRoutingTable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5506
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5507
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5508
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5509
    ## ipv4-routing-protocol.h (module 'internet'): bool ns3::Ipv4RoutingProtocol::RouteInput(ns3::Ptr<const ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<const ns3::NetDevice> idev, ns3::Callback<void,ns3::Ptr<ns3::Ipv4Route>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Ipv4MulticastRoute>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> mcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,unsigned int,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> lcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::Socket::SocketErrno,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5510
    cls.add_method('RouteInput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5511
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5512
                   [param('ns3::Ptr< ns3::Packet const >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice const >', 'idev'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4Route >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ucb'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4MulticastRoute >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'mcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'lcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::Socket::SocketErrno, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ecb')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5513
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5514
    ## ipv4-routing-protocol.h (module 'internet'): ns3::Ptr<ns3::Ipv4Route> ns3::Ipv4RoutingProtocol::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::NetDevice> oif, ns3::Socket::SocketErrno & sockerr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5515
    cls.add_method('RouteOutput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5516
                   'ns3::Ptr< ns3::Ipv4Route >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5517
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice >', 'oif'), param('ns3::Socket::SocketErrno &', 'sockerr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5518
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5519
    ## ipv4-routing-protocol.h (module 'internet'): void ns3::Ipv4RoutingProtocol::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5520
    cls.add_method('SetIpv4', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5521
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5522
                   [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5523
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5524
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5525
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5526
def register_Ns3Ipv4StaticRouting_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5527
    ## ipv4-static-routing.h (module 'internet'): ns3::Ipv4StaticRouting::Ipv4StaticRouting(ns3::Ipv4StaticRouting const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5528
    cls.add_constructor([param('ns3::Ipv4StaticRouting const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5529
    ## ipv4-static-routing.h (module 'internet'): ns3::Ipv4StaticRouting::Ipv4StaticRouting() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5530
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5531
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::AddHostRouteTo(ns3::Ipv4Address dest, ns3::Ipv4Address nextHop, uint32_t interface, uint32_t metric=0) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5532
    cls.add_method('AddHostRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5533
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5534
                   [param('ns3::Ipv4Address', 'dest'), param('ns3::Ipv4Address', 'nextHop'), param('uint32_t', 'interface'), param('uint32_t', 'metric', default_value='0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5535
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::AddHostRouteTo(ns3::Ipv4Address dest, uint32_t interface, uint32_t metric=0) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5536
    cls.add_method('AddHostRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5537
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5538
                   [param('ns3::Ipv4Address', 'dest'), param('uint32_t', 'interface'), param('uint32_t', 'metric', default_value='0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5539
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::AddMulticastRoute(ns3::Ipv4Address origin, ns3::Ipv4Address group, uint32_t inputInterface, std::vector<unsigned int, std::allocator<unsigned int> > outputInterfaces) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5540
    cls.add_method('AddMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5541
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5542
                   [param('ns3::Ipv4Address', 'origin'), param('ns3::Ipv4Address', 'group'), param('uint32_t', 'inputInterface'), param('std::vector< unsigned int >', 'outputInterfaces')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5543
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::AddNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, ns3::Ipv4Address nextHop, uint32_t interface, uint32_t metric=0) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5544
    cls.add_method('AddNetworkRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5545
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5546
                   [param('ns3::Ipv4Address', 'network'), param('ns3::Ipv4Mask', 'networkMask'), param('ns3::Ipv4Address', 'nextHop'), param('uint32_t', 'interface'), param('uint32_t', 'metric', default_value='0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5547
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::AddNetworkRouteTo(ns3::Ipv4Address network, ns3::Ipv4Mask networkMask, uint32_t interface, uint32_t metric=0) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5548
    cls.add_method('AddNetworkRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5549
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5550
                   [param('ns3::Ipv4Address', 'network'), param('ns3::Ipv4Mask', 'networkMask'), param('uint32_t', 'interface'), param('uint32_t', 'metric', default_value='0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5551
    ## ipv4-static-routing.h (module 'internet'): ns3::Ipv4RoutingTableEntry ns3::Ipv4StaticRouting::GetDefaultRoute() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5552
    cls.add_method('GetDefaultRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5553
                   'ns3::Ipv4RoutingTableEntry', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5554
                   [])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5555
    ## ipv4-static-routing.h (module 'internet'): uint32_t ns3::Ipv4StaticRouting::GetMetric(uint32_t index) const [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5556
    cls.add_method('GetMetric', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5557
                   'uint32_t', 
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5558
                   [param('uint32_t', 'index')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5559
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5560
    ## ipv4-static-routing.h (module 'internet'): ns3::Ipv4MulticastRoutingTableEntry ns3::Ipv4StaticRouting::GetMulticastRoute(uint32_t i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5561
    cls.add_method('GetMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5562
                   'ns3::Ipv4MulticastRoutingTableEntry', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5563
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5564
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5565
    ## ipv4-static-routing.h (module 'internet'): uint32_t ns3::Ipv4StaticRouting::GetNMulticastRoutes() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5566
    cls.add_method('GetNMulticastRoutes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5567
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5568
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5569
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5570
    ## ipv4-static-routing.h (module 'internet'): uint32_t ns3::Ipv4StaticRouting::GetNRoutes() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5571
    cls.add_method('GetNRoutes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5572
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5573
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5574
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5575
    ## ipv4-static-routing.h (module 'internet'): ns3::Ipv4RoutingTableEntry ns3::Ipv4StaticRouting::GetRoute(uint32_t i) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5576
    cls.add_method('GetRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5577
                   'ns3::Ipv4RoutingTableEntry', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5578
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5579
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5580
    ## ipv4-static-routing.h (module 'internet'): static ns3::TypeId ns3::Ipv4StaticRouting::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5581
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5582
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5583
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5584
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5585
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5586
    cls.add_method('NotifyAddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5587
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5588
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5589
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5590
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::NotifyInterfaceDown(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5591
    cls.add_method('NotifyInterfaceDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5592
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5593
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5594
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5595
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::NotifyInterfaceUp(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5596
    cls.add_method('NotifyInterfaceUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5597
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5598
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5599
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5600
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5601
    cls.add_method('NotifyRemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5602
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5603
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5604
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5605
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::PrintRoutingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5606
    cls.add_method('PrintRoutingTable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5607
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5608
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5609
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5610
    ## ipv4-static-routing.h (module 'internet'): bool ns3::Ipv4StaticRouting::RemoveMulticastRoute(ns3::Ipv4Address origin, ns3::Ipv4Address group, uint32_t inputInterface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5611
    cls.add_method('RemoveMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5612
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5613
                   [param('ns3::Ipv4Address', 'origin'), param('ns3::Ipv4Address', 'group'), param('uint32_t', 'inputInterface')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5614
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::RemoveMulticastRoute(uint32_t index) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5615
    cls.add_method('RemoveMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5616
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5617
                   [param('uint32_t', 'index')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5618
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::RemoveRoute(uint32_t i) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5619
    cls.add_method('RemoveRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5620
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5621
                   [param('uint32_t', 'i')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5622
    ## ipv4-static-routing.h (module 'internet'): bool ns3::Ipv4StaticRouting::RouteInput(ns3::Ptr<const ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<const ns3::NetDevice> idev, ns3::Callback<void,ns3::Ptr<ns3::Ipv4Route>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Ipv4MulticastRoute>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> mcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,unsigned int,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> lcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::Socket::SocketErrno,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5623
    cls.add_method('RouteInput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5624
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5625
                   [param('ns3::Ptr< ns3::Packet const >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice const >', 'idev'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4Route >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ucb'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4MulticastRoute >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'mcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'lcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::Socket::SocketErrno, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ecb')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5626
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5627
    ## ipv4-static-routing.h (module 'internet'): ns3::Ptr<ns3::Ipv4Route> ns3::Ipv4StaticRouting::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::NetDevice> oif, ns3::Socket::SocketErrno & sockerr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5628
    cls.add_method('RouteOutput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5629
                   'ns3::Ptr< ns3::Ipv4Route >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5630
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice >', 'oif'), param('ns3::Socket::SocketErrno &', 'sockerr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5631
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5632
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::SetDefaultMulticastRoute(uint32_t outputInterface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5633
    cls.add_method('SetDefaultMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5634
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5635
                   [param('uint32_t', 'outputInterface')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5636
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::SetDefaultRoute(ns3::Ipv4Address nextHop, uint32_t interface, uint32_t metric=0) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5637
    cls.add_method('SetDefaultRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5638
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5639
                   [param('ns3::Ipv4Address', 'nextHop'), param('uint32_t', 'interface'), param('uint32_t', 'metric', default_value='0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5640
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5641
    cls.add_method('SetIpv4', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5642
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5643
                   [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5644
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5645
    ## ipv4-static-routing.h (module 'internet'): void ns3::Ipv4StaticRouting::DoDispose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5646
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5647
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5648
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5649
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5650
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5651
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5652
def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5653
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5654
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5655
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker::Ipv6AddressChecker(ns3::Ipv6AddressChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5656
    cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5657
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5658
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5659
def register_Ns3Ipv6AddressValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5660
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5661
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5662
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6AddressValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5663
    cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5664
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue::Ipv6AddressValue(ns3::Ipv6Address const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5665
    cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5666
    ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6AddressValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5667
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5668
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5669
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5670
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5671
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5672
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5673
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5674
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5675
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5676
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address ns3::Ipv6AddressValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5677
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5678
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5679
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5680
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5681
    ## ipv6-address.h (module 'network'): std::string ns3::Ipv6AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5682
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5683
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5684
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5685
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5686
    ## ipv6-address.h (module 'network'): void ns3::Ipv6AddressValue::Set(ns3::Ipv6Address const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5687
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5688
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5689
                   [param('ns3::Ipv6Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5690
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5691
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5692
def register_Ns3Ipv6Interface_methods(root_module, cls):
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5693
    ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface(ns3::Ipv6Interface const & arg0) [copy constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5694
    cls.add_constructor([param('ns3::Ipv6Interface const &', 'arg0')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5695
    ## ipv6-interface.h (module 'internet'): ns3::Ipv6Interface::Ipv6Interface() [constructor]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5696
    cls.add_constructor([])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5697
    ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::AddAddress(ns3::Ipv6InterfaceAddress iface) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5698
    cls.add_method('AddAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5699
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5700
                   [param('ns3::Ipv6InterfaceAddress', 'iface')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5701
    ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddress(uint32_t index) const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5702
    cls.add_method('GetAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5703
                   'ns3::Ipv6InterfaceAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5704
                   [param('uint32_t', 'index')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5705
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5706
    ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetAddressMatchingDestination(ns3::Ipv6Address dst) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5707
    cls.add_method('GetAddressMatchingDestination', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5708
                   'ns3::Ipv6InterfaceAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5709
                   [param('ns3::Ipv6Address', 'dst')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5710
    ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetBaseReachableTime() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5711
    cls.add_method('GetBaseReachableTime', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5712
                   'uint16_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5713
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5714
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5715
    ## ipv6-interface.h (module 'internet'): uint8_t ns3::Ipv6Interface::GetCurHopLimit() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5716
    cls.add_method('GetCurHopLimit', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5717
                   'uint8_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5718
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5719
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5720
    ## ipv6-interface.h (module 'internet'): ns3::Ptr<ns3::NetDevice> ns3::Ipv6Interface::GetDevice() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5721
    cls.add_method('GetDevice', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5722
                   'ns3::Ptr< ns3::NetDevice >', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5723
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5724
                   is_const=True, is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5725
    ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::GetLinkLocalAddress() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5726
    cls.add_method('GetLinkLocalAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5727
                   'ns3::Ipv6InterfaceAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5728
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5729
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5730
    ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetMetric() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5731
    cls.add_method('GetMetric', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5732
                   'uint16_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5733
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5734
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5735
    ## ipv6-interface.h (module 'internet'): uint32_t ns3::Ipv6Interface::GetNAddresses() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5736
    cls.add_method('GetNAddresses', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5737
                   'uint32_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5738
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5739
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5740
    ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetReachableTime() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5741
    cls.add_method('GetReachableTime', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5742
                   'uint16_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5743
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5744
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5745
    ## ipv6-interface.h (module 'internet'): uint16_t ns3::Ipv6Interface::GetRetransTimer() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5746
    cls.add_method('GetRetransTimer', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5747
                   'uint16_t', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5748
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5749
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5750
    ## ipv6-interface.h (module 'internet'): static ns3::TypeId ns3::Ipv6Interface::GetTypeId() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5751
    cls.add_method('GetTypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5752
                   'ns3::TypeId', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5753
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5754
                   is_static=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5755
    ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsDown() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5756
    cls.add_method('IsDown', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5757
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5758
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5759
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5760
    ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsForwarding() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5761
    cls.add_method('IsForwarding', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5762
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5763
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5764
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5765
    ## ipv6-interface.h (module 'internet'): bool ns3::Ipv6Interface::IsUp() const [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5766
    cls.add_method('IsUp', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5767
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5768
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5769
                   is_const=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5770
    ## ipv6-interface.h (module 'internet'): ns3::Ipv6InterfaceAddress ns3::Ipv6Interface::RemoveAddress(uint32_t index) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5771
    cls.add_method('RemoveAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5772
                   'ns3::Ipv6InterfaceAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5773
                   [param('uint32_t', 'index')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5774
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::Send(ns3::Ptr<ns3::Packet> p, ns3::Ipv6Address dest) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5775
    cls.add_method('Send', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5776
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5777
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv6Address', 'dest')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5778
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetBaseReachableTime(uint16_t baseReachableTime) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5779
    cls.add_method('SetBaseReachableTime', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5780
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5781
                   [param('uint16_t', 'baseReachableTime')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5782
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetCurHopLimit(uint8_t curHopLimit) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5783
    cls.add_method('SetCurHopLimit', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5784
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5785
                   [param('uint8_t', 'curHopLimit')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5786
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5787
    cls.add_method('SetDevice', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5788
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5789
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5790
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetDown() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5791
    cls.add_method('SetDown', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5792
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5793
                   [])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5794
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetForwarding(bool forward) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5795
    cls.add_method('SetForwarding', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5796
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5797
                   [param('bool', 'forward')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5798
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetMetric(uint16_t metric) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5799
    cls.add_method('SetMetric', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5800
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5801
                   [param('uint16_t', 'metric')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5802
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNode(ns3::Ptr<ns3::Node> node) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5803
    cls.add_method('SetNode', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5804
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5805
                   [param('ns3::Ptr< ns3::Node >', 'node')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5806
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetNsDadUid(ns3::Ipv6Address address, uint32_t uid) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5807
    cls.add_method('SetNsDadUid', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5808
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5809
                   [param('ns3::Ipv6Address', 'address'), param('uint32_t', 'uid')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5810
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetReachableTime(uint16_t reachableTime) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5811
    cls.add_method('SetReachableTime', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5812
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5813
                   [param('uint16_t', 'reachableTime')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5814
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetRetransTimer(uint16_t retransTimer) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5815
    cls.add_method('SetRetransTimer', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5816
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5817
                   [param('uint16_t', 'retransTimer')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5818
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetState(ns3::Ipv6Address address, ns3::Ipv6InterfaceAddress::State_e state) [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5819
    cls.add_method('SetState', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5820
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5821
                   [param('ns3::Ipv6Address', 'address'), param('ns3::Ipv6InterfaceAddress::State_e', 'state')])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5822
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::SetUp() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5823
    cls.add_method('SetUp', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5824
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5825
                   [])
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5826
    ## ipv6-interface.h (module 'internet'): void ns3::Ipv6Interface::DoDispose() [member function]
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5827
    cls.add_method('DoDispose', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5828
                   'void', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5829
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5830
                   visibility='protected', is_virtual=True)
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5831
    return
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  5832
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5833
def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5834
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5835
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5836
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker::Ipv6PrefixChecker(ns3::Ipv6PrefixChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5837
    cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5838
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5839
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5840
def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5841
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5842
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5843
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6PrefixValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5844
    cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5845
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue::Ipv6PrefixValue(ns3::Ipv6Prefix const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5846
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5847
    ## ipv6-address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::Ipv6PrefixValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5848
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5849
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5850
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5851
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5852
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6PrefixValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5853
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5854
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5855
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5856
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5857
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix ns3::Ipv6PrefixValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5858
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5859
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5860
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5861
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5862
    ## ipv6-address.h (module 'network'): std::string ns3::Ipv6PrefixValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5863
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5864
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5865
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5866
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5867
    ## ipv6-address.h (module 'network'): void ns3::Ipv6PrefixValue::Set(ns3::Ipv6Prefix const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5868
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5869
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5870
                   [param('ns3::Ipv6Prefix const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5871
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5872
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5873
def register_Ns3LogNormalRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5874
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::LogNormalRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5875
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5876
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5877
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5878
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5879
    ## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable::LogNormalRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5880
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5881
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetMu() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5882
    cls.add_method('GetMu', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5883
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5884
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5885
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5886
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetSigma() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5887
    cls.add_method('GetSigma', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5888
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5889
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5890
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5891
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue(double mu, double sigma) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5892
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5893
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5894
                   [param('double', 'mu'), param('double', 'sigma')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5895
    ## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger(uint32_t mu, uint32_t sigma) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5896
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5897
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5898
                   [param('uint32_t', 'mu'), param('uint32_t', 'sigma')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5899
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5900
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5901
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5902
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5903
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5904
    ## random-variable-stream.h (module 'core'): uint32_t ns3::LogNormalRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5905
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5906
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5907
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5908
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5909
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5910
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5911
def register_Ns3NetDevice_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5912
    ## net-device.h (module 'network'): ns3::NetDevice::NetDevice() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5913
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5914
    ## net-device.h (module 'network'): ns3::NetDevice::NetDevice(ns3::NetDevice const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5915
    cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5916
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5917
    cls.add_method('AddLinkChangeCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5918
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5919
                   [param('ns3::Callback< void, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'callback')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5920
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5921
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetAddress() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5922
    cls.add_method('GetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5923
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5924
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5925
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5926
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetBroadcast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5927
    cls.add_method('GetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5928
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5929
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5930
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5931
    ## net-device.h (module 'network'): ns3::Ptr<ns3::Channel> ns3::NetDevice::GetChannel() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5932
    cls.add_method('GetChannel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5933
                   'ns3::Ptr< ns3::Channel >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5934
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5935
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5936
    ## net-device.h (module 'network'): uint32_t ns3::NetDevice::GetIfIndex() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5937
    cls.add_method('GetIfIndex', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5938
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5939
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5940
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5941
    ## net-device.h (module 'network'): uint16_t ns3::NetDevice::GetMtu() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5942
    cls.add_method('GetMtu', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5943
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5944
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5945
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5946
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv4Address multicastGroup) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5947
    cls.add_method('GetMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5948
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5949
                   [param('ns3::Ipv4Address', 'multicastGroup')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5950
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5951
    ## net-device.h (module 'network'): ns3::Address ns3::NetDevice::GetMulticast(ns3::Ipv6Address addr) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5952
    cls.add_method('GetMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5953
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5954
                   [param('ns3::Ipv6Address', 'addr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5955
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5956
    ## net-device.h (module 'network'): ns3::Ptr<ns3::Node> ns3::NetDevice::GetNode() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5957
    cls.add_method('GetNode', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5958
                   'ns3::Ptr< ns3::Node >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5959
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5960
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5961
    ## net-device.h (module 'network'): static ns3::TypeId ns3::NetDevice::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5962
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5963
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5964
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5965
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5966
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsBridge() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5967
    cls.add_method('IsBridge', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5968
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5969
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5970
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5971
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsBroadcast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5972
    cls.add_method('IsBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5973
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5974
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5975
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5976
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsLinkUp() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5977
    cls.add_method('IsLinkUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5978
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5979
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5980
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5981
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsMulticast() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5982
    cls.add_method('IsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5983
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5984
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5985
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5986
    ## net-device.h (module 'network'): bool ns3::NetDevice::IsPointToPoint() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5987
    cls.add_method('IsPointToPoint', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5988
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5989
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5990
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5991
    ## net-device.h (module 'network'): bool ns3::NetDevice::NeedsArp() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5992
    cls.add_method('NeedsArp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5993
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5994
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5995
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5996
    ## net-device.h (module 'network'): bool ns3::NetDevice::Send(ns3::Ptr<ns3::Packet> packet, ns3::Address const & dest, uint16_t protocolNumber) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5997
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5998
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5999
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6000
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6001
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6002
    cls.add_method('SendFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6003
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6004
                   [param('ns3::Ptr< ns3::Packet >', 'packet'), param('ns3::Address const &', 'source'), param('ns3::Address const &', 'dest'), param('uint16_t', 'protocolNumber')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6005
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6006
    ## net-device.h (module 'network'): void ns3::NetDevice::SetAddress(ns3::Address address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6007
    cls.add_method('SetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6008
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6009
                   [param('ns3::Address', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6010
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6011
    ## net-device.h (module 'network'): void ns3::NetDevice::SetIfIndex(uint32_t const index) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6012
    cls.add_method('SetIfIndex', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6013
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6014
                   [param('uint32_t const', 'index')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6015
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6016
    ## net-device.h (module 'network'): bool ns3::NetDevice::SetMtu(uint16_t const mtu) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6017
    cls.add_method('SetMtu', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6018
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6019
                   [param('uint16_t const', 'mtu')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6020
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6021
    ## net-device.h (module 'network'): void ns3::NetDevice::SetNode(ns3::Ptr<ns3::Node> node) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6022
    cls.add_method('SetNode', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6023
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6024
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6025
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6026
    ## net-device.h (module 'network'): void ns3::NetDevice::SetPromiscReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,const ns3::Address&,ns3::NetDevice::PacketType,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6027
    cls.add_method('SetPromiscReceiveCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6028
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6029
                   [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::Address const &, ns3::NetDevice::PacketType, ns3::empty, ns3::empty, ns3::empty >', 'cb')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6030
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6031
    ## net-device.h (module 'network'): void ns3::NetDevice::SetReceiveCallback(ns3::Callback<bool,ns3::Ptr<ns3::NetDevice>,ns3::Ptr<const ns3::Packet>,short unsigned int,const ns3::Address&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> cb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6032
    cls.add_method('SetReceiveCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6033
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6034
                   [param('ns3::Callback< bool, ns3::Ptr< ns3::NetDevice >, ns3::Ptr< ns3::Packet const >, short unsigned int, ns3::Address const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'cb')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6035
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6036
    ## net-device.h (module 'network'): bool ns3::NetDevice::SupportsSendFrom() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6037
    cls.add_method('SupportsSendFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6038
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6039
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6040
                   is_pure_virtual=True, is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6041
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6042
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6043
def register_Ns3NixVector_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6044
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6045
    ## nix-vector.h (module 'network'): ns3::NixVector::NixVector() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6046
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6047
    ## nix-vector.h (module 'network'): ns3::NixVector::NixVector(ns3::NixVector const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6048
    cls.add_constructor([param('ns3::NixVector const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6049
    ## nix-vector.h (module 'network'): void ns3::NixVector::AddNeighborIndex(uint32_t newBits, uint32_t numberOfBits) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6050
    cls.add_method('AddNeighborIndex', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6051
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6052
                   [param('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6053
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::BitCount(uint32_t numberOfNeighbors) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6054
    cls.add_method('BitCount', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6055
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6056
                   [param('uint32_t', 'numberOfNeighbors')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6057
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6058
    ## nix-vector.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::NixVector::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6059
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6060
                   'ns3::Ptr< ns3::NixVector >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6061
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6062
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6063
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Deserialize(uint32_t const * buffer, uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6064
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6065
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6066
                   [param('uint32_t const *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6067
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::ExtractNeighborIndex(uint32_t numberOfBits) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6068
    cls.add_method('ExtractNeighborIndex', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6069
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6070
                   [param('uint32_t', 'numberOfBits')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6071
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetRemainingBits() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6072
    cls.add_method('GetRemainingBits', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6073
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6074
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6075
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6076
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6077
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6078
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6079
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6080
    ## nix-vector.h (module 'network'): uint32_t ns3::NixVector::Serialize(uint32_t * buffer, uint32_t maxSize) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6081
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6082
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6083
                   [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6084
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6085
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6086
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6087
def register_Ns3Node_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6088
    ## node.h (module 'network'): ns3::Node::Node(ns3::Node const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6089
    cls.add_constructor([param('ns3::Node const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6090
    ## node.h (module 'network'): ns3::Node::Node() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6091
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6092
    ## node.h (module 'network'): ns3::Node::Node(uint32_t systemId) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6093
    cls.add_constructor([param('uint32_t', 'systemId')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6094
    ## node.h (module 'network'): uint32_t ns3::Node::AddApplication(ns3::Ptr<ns3::Application> application) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6095
    cls.add_method('AddApplication', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6096
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6097
                   [param('ns3::Ptr< ns3::Application >', 'application')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6098
    ## node.h (module 'network'): uint32_t ns3::Node::AddDevice(ns3::Ptr<ns3::NetDevice> device) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6099
    cls.add_method('AddDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6100
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6101
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6102
    ## node.h (module 'network'): static bool ns3::Node::ChecksumEnabled() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6103
    cls.add_method('ChecksumEnabled', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6104
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6105
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6106
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6107
    ## node.h (module 'network'): ns3::Ptr<ns3::Application> ns3::Node::GetApplication(uint32_t index) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6108
    cls.add_method('GetApplication', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6109
                   'ns3::Ptr< ns3::Application >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6110
                   [param('uint32_t', 'index')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6111
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6112
    ## node.h (module 'network'): ns3::Ptr<ns3::NetDevice> ns3::Node::GetDevice(uint32_t index) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6113
    cls.add_method('GetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6114
                   'ns3::Ptr< ns3::NetDevice >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6115
                   [param('uint32_t', 'index')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6116
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6117
    ## node.h (module 'network'): uint32_t ns3::Node::GetId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6118
    cls.add_method('GetId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6119
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6120
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6121
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6122
    ## node.h (module 'network'): uint32_t ns3::Node::GetNApplications() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6123
    cls.add_method('GetNApplications', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6124
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6125
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6126
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6127
    ## node.h (module 'network'): uint32_t ns3::Node::GetNDevices() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6128
    cls.add_method('GetNDevices', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6129
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6130
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6131
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6132
    ## node.h (module 'network'): uint32_t ns3::Node::GetSystemId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6133
    cls.add_method('GetSystemId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6134
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6135
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6136
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6137
    ## node.h (module 'network'): static ns3::TypeId ns3::Node::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6138
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6139
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6140
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6141
                   is_static=True)
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  6142
    ## 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: 7055
diff changeset
  6143
    cls.add_method('RegisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  6144
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  6145
                   [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')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6146
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6147
    cls.add_method('RegisterProtocolHandler', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6148
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6149
                   [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: 7055
diff changeset
  6150
    ## 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: 7055
diff changeset
  6151
    cls.add_method('UnregisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  6152
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  6153
                   [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')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6154
    ## 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]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6155
    cls.add_method('UnregisterProtocolHandler', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6156
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6157
                   [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')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6158
    ## node.h (module 'network'): void ns3::Node::DoDispose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6159
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6160
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6161
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6162
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  6163
    ## node.h (module 'network'): void ns3::Node::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  6164
    cls.add_method('DoInitialize', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6165
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6166
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6167
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6168
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6169
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6170
def register_Ns3NormalRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6171
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::INFINITE_VALUE [variable]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6172
    cls.add_static_attribute('INFINITE_VALUE', 'double const', is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6173
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::NormalRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6174
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6175
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6176
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6177
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6178
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::NormalRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6179
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6180
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetMean() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6181
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6182
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6183
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6184
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6185
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetVariance() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6186
    cls.add_method('GetVariance', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6187
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6188
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6189
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6190
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetBound() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6191
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6192
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6193
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6194
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6195
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue(double mean, double variance, double bound=ns3::NormalRandomVariable::INFINITE_VALUE) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6196
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6197
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6198
                   [param('double', 'mean'), param('double', 'variance'), param('double', 'bound', default_value='ns3::NormalRandomVariable::INFINITE_VALUE')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6199
    ## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger(uint32_t mean, uint32_t variance, uint32_t bound) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6200
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6201
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6202
                   [param('uint32_t', 'mean'), param('uint32_t', 'variance'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6203
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6204
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6205
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6206
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6207
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6208
    ## random-variable-stream.h (module 'core'): uint32_t ns3::NormalRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6209
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6210
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6211
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6212
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6213
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6214
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6215
def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6216
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6217
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6218
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker::ObjectFactoryChecker(ns3::ObjectFactoryChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6219
    cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6220
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6221
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6222
def register_Ns3ObjectFactoryValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6223
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6224
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6225
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactoryValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6226
    cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6227
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue::ObjectFactoryValue(ns3::ObjectFactory const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6228
    cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6229
    ## object-factory.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::ObjectFactoryValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6230
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6231
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6232
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6233
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6234
    ## object-factory.h (module 'core'): bool ns3::ObjectFactoryValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6235
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6236
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6237
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6238
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6239
    ## object-factory.h (module 'core'): ns3::ObjectFactory ns3::ObjectFactoryValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6240
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6241
                   'ns3::ObjectFactory', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6242
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6243
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6244
    ## object-factory.h (module 'core'): std::string ns3::ObjectFactoryValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6245
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6246
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6247
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6248
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6249
    ## object-factory.h (module 'core'): void ns3::ObjectFactoryValue::Set(ns3::ObjectFactory const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6250
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6251
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6252
                   [param('ns3::ObjectFactory const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6253
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6254
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6255
def register_Ns3OutputStreamWrapper_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6256
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(ns3::OutputStreamWrapper const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6257
    cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6258
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::string filename, std::_Ios_Openmode filemode) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6259
    cls.add_constructor([param('std::string', 'filename'), param('std::_Ios_Openmode', 'filemode')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6260
    ## output-stream-wrapper.h (module 'network'): ns3::OutputStreamWrapper::OutputStreamWrapper(std::ostream * os) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6261
    cls.add_constructor([param('std::ostream *', 'os')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6262
    ## output-stream-wrapper.h (module 'network'): std::ostream * ns3::OutputStreamWrapper::GetStream() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6263
    cls.add_method('GetStream', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6264
                   'std::ostream *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6265
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6266
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6267
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6268
def register_Ns3Packet_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6269
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6270
    ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6271
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6272
    ## packet.h (module 'network'): ns3::Packet::Packet(ns3::Packet const & o) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6273
    cls.add_constructor([param('ns3::Packet const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6274
    ## packet.h (module 'network'): ns3::Packet::Packet(uint32_t size) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6275
    cls.add_constructor([param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6276
    ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size, bool magic) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6277
    cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size'), param('bool', 'magic')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6278
    ## packet.h (module 'network'): ns3::Packet::Packet(uint8_t const * buffer, uint32_t size) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6279
    cls.add_constructor([param('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6280
    ## packet.h (module 'network'): void ns3::Packet::AddAtEnd(ns3::Ptr<const ns3::Packet> packet) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6281
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6282
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6283
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6284
    ## packet.h (module 'network'): void ns3::Packet::AddByteTag(ns3::Tag const & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6285
    cls.add_method('AddByteTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6286
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6287
                   [param('ns3::Tag const &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6288
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6289
    ## packet.h (module 'network'): void ns3::Packet::AddHeader(ns3::Header const & header) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6290
    cls.add_method('AddHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6291
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6292
                   [param('ns3::Header const &', 'header')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6293
    ## packet.h (module 'network'): void ns3::Packet::AddPacketTag(ns3::Tag const & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6294
    cls.add_method('AddPacketTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6295
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6296
                   [param('ns3::Tag const &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6297
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6298
    ## packet.h (module 'network'): void ns3::Packet::AddPaddingAtEnd(uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6299
    cls.add_method('AddPaddingAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6300
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6301
                   [param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6302
    ## packet.h (module 'network'): void ns3::Packet::AddTrailer(ns3::Trailer const & trailer) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6303
    cls.add_method('AddTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6304
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6305
                   [param('ns3::Trailer const &', 'trailer')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6306
    ## packet.h (module 'network'): ns3::PacketMetadata::ItemIterator ns3::Packet::BeginItem() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6307
    cls.add_method('BeginItem', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6308
                   'ns3::PacketMetadata::ItemIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6309
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6310
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6311
    ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6312
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6313
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6314
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6315
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6316
    ## packet.h (module 'network'): uint32_t ns3::Packet::CopyData(uint8_t * buffer, uint32_t size) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6317
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6318
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6319
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6320
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6321
    ## packet.h (module 'network'): void ns3::Packet::CopyData(std::ostream * os, uint32_t size) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6322
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6323
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6324
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6325
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6326
    ## packet.h (module 'network'): ns3::Ptr<ns3::Packet> ns3::Packet::CreateFragment(uint32_t start, uint32_t length) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6327
    cls.add_method('CreateFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6328
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6329
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6330
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6331
    ## packet.h (module 'network'): static void ns3::Packet::EnableChecking() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6332
    cls.add_method('EnableChecking', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6333
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6334
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6335
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6336
    ## packet.h (module 'network'): static void ns3::Packet::EnablePrinting() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6337
    cls.add_method('EnablePrinting', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6338
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6339
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6340
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6341
    ## packet.h (module 'network'): bool ns3::Packet::FindFirstMatchingByteTag(ns3::Tag & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6342
    cls.add_method('FindFirstMatchingByteTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6343
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6344
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6345
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6346
    ## packet.h (module 'network'): ns3::ByteTagIterator ns3::Packet::GetByteTagIterator() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6347
    cls.add_method('GetByteTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6348
                   'ns3::ByteTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6349
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6350
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6351
    ## packet.h (module 'network'): ns3::Ptr<ns3::NixVector> ns3::Packet::GetNixVector() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6352
    cls.add_method('GetNixVector', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6353
                   'ns3::Ptr< ns3::NixVector >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6354
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6355
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6356
    ## packet.h (module 'network'): ns3::PacketTagIterator ns3::Packet::GetPacketTagIterator() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6357
    cls.add_method('GetPacketTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6358
                   'ns3::PacketTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6359
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6360
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6361
    ## packet.h (module 'network'): uint32_t ns3::Packet::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6362
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6363
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6364
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6365
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6366
    ## packet.h (module 'network'): uint32_t ns3::Packet::GetSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6367
    cls.add_method('GetSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6368
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6369
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6370
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6371
    ## packet.h (module 'network'): uint64_t ns3::Packet::GetUid() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6372
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6373
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6374
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6375
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6376
    ## packet.h (module 'network'): uint8_t const * ns3::Packet::PeekData() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6377
    cls.add_method('PeekData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6378
                   'uint8_t const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6379
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6380
                   deprecated=True, is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6381
    ## packet.h (module 'network'): uint32_t ns3::Packet::PeekHeader(ns3::Header & header) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6382
    cls.add_method('PeekHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6383
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6384
                   [param('ns3::Header &', 'header')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6385
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6386
    ## packet.h (module 'network'): bool ns3::Packet::PeekPacketTag(ns3::Tag & tag) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6387
    cls.add_method('PeekPacketTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6388
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6389
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6390
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6391
    ## packet.h (module 'network'): uint32_t ns3::Packet::PeekTrailer(ns3::Trailer & trailer) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6392
    cls.add_method('PeekTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6393
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6394
                   [param('ns3::Trailer &', 'trailer')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6395
    ## packet.h (module 'network'): void ns3::Packet::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6396
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6397
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6398
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6399
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6400
    ## packet.h (module 'network'): void ns3::Packet::PrintByteTags(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6401
    cls.add_method('PrintByteTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6402
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6403
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6404
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6405
    ## packet.h (module 'network'): void ns3::Packet::PrintPacketTags(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6406
    cls.add_method('PrintPacketTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6407
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6408
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6409
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6410
    ## packet.h (module 'network'): void ns3::Packet::RemoveAllByteTags() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6411
    cls.add_method('RemoveAllByteTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6412
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6413
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6414
    ## packet.h (module 'network'): void ns3::Packet::RemoveAllPacketTags() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6415
    cls.add_method('RemoveAllPacketTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6416
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6417
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6418
    ## packet.h (module 'network'): void ns3::Packet::RemoveAtEnd(uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6419
    cls.add_method('RemoveAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6420
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6421
                   [param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6422
    ## packet.h (module 'network'): void ns3::Packet::RemoveAtStart(uint32_t size) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6423
    cls.add_method('RemoveAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6424
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6425
                   [param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6426
    ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveHeader(ns3::Header & header) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6427
    cls.add_method('RemoveHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6428
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6429
                   [param('ns3::Header &', 'header')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6430
    ## packet.h (module 'network'): bool ns3::Packet::RemovePacketTag(ns3::Tag & tag) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6431
    cls.add_method('RemovePacketTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6432
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6433
                   [param('ns3::Tag &', 'tag')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6434
    ## packet.h (module 'network'): uint32_t ns3::Packet::RemoveTrailer(ns3::Trailer & trailer) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6435
    cls.add_method('RemoveTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6436
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6437
                   [param('ns3::Trailer &', 'trailer')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  6438
    ## 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
  6439
    cls.add_method('ReplacePacketTag', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  6440
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  6441
                   [param('ns3::Tag &', 'tag')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6442
    ## packet.h (module 'network'): uint32_t ns3::Packet::Serialize(uint8_t * buffer, uint32_t maxSize) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6443
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6444
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6445
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6446
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6447
    ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> arg0) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6448
    cls.add_method('SetNixVector', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6449
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6450
                   [param('ns3::Ptr< ns3::NixVector >', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6451
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6452
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6453
def register_Ns3ParetoRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6454
    ## random-variable-stream.h (module 'core'): static ns3::TypeId ns3::ParetoRandomVariable::GetTypeId() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6455
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6456
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6457
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6458
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6459
    ## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable::ParetoRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6460
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6461
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetMean() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6462
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6463
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6464
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6465
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6466
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetShape() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6467
    cls.add_method('GetShape', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6468
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6469
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6470
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6471
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetBound() const [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6472
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6473
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6474
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6475
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6476
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue(double mean, double shape, double bound) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6477
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6478
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6479
                   [param('double', 'mean'), param('double', 'shape'), param('double', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6480
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger(uint32_t mean, uint32_t shape, uint32_t bound) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6481
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6482
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6483
                   [param('uint32_t', 'mean'), param('uint32_t', 'shape'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6484
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6485
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6486
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6487
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6488
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6489
    ## random-variable-stream.h (module 'core'): uint32_t ns3::ParetoRandomVariable::GetInteger() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6490
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6491
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6492
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6493
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6494
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6495
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6496
def register_Ns3TimeChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6497
    ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6498
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6499
    ## nstime.h (module 'core'): ns3::TimeChecker::TimeChecker(ns3::TimeChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6500
    cls.add_constructor([param('ns3::TimeChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6501
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6502
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6503
def register_Ns3TimeValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6504
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6505
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6506
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::TimeValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6507
    cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6508
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue(ns3::Time const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6509
    cls.add_constructor([param('ns3::Time const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6510
    ## nstime.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TimeValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6511
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6512
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6513
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6514
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6515
    ## nstime.h (module 'core'): bool ns3::TimeValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6516
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6517
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6518
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6519
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6520
    ## nstime.h (module 'core'): ns3::Time ns3::TimeValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6521
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6522
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6523
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6524
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6525
    ## nstime.h (module 'core'): std::string ns3::TimeValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6526
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6527
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6528
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6529
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6530
    ## nstime.h (module 'core'): void ns3::TimeValue::Set(ns3::Time const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6531
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6532
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6533
                   [param('ns3::Time const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6534
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6535
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6536
def register_Ns3TypeIdChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6537
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6538
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6539
    ## type-id.h (module 'core'): ns3::TypeIdChecker::TypeIdChecker(ns3::TypeIdChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6540
    cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6541
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6542
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6543
def register_Ns3TypeIdValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6544
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6545
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6546
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeIdValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6547
    cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6548
    ## type-id.h (module 'core'): ns3::TypeIdValue::TypeIdValue(ns3::TypeId const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6549
    cls.add_constructor([param('ns3::TypeId const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6550
    ## type-id.h (module 'core'): ns3::Ptr<ns3::AttributeValue> ns3::TypeIdValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6551
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6552
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6553
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6554
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6555
    ## type-id.h (module 'core'): bool ns3::TypeIdValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6556
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6557
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6558
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6559
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6560
    ## type-id.h (module 'core'): ns3::TypeId ns3::TypeIdValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6561
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6562
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6563
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6564
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6565
    ## type-id.h (module 'core'): std::string ns3::TypeIdValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6566
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6567
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6568
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6569
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6570
    ## type-id.h (module 'core'): void ns3::TypeIdValue::Set(ns3::TypeId const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6571
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6572
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6573
                   [param('ns3::TypeId const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6574
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6575
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6576
def register_Ns3AddressChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6577
    ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6578
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6579
    ## address.h (module 'network'): ns3::AddressChecker::AddressChecker(ns3::AddressChecker const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6580
    cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6581
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6582
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6583
def register_Ns3AddressValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6584
    ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6585
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6586
    ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::AddressValue const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6587
    cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6588
    ## address.h (module 'network'): ns3::AddressValue::AddressValue(ns3::Address const & value) [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6589
    cls.add_constructor([param('ns3::Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6590
    ## address.h (module 'network'): ns3::Ptr<ns3::AttributeValue> ns3::AddressValue::Copy() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6591
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6592
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6593
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6594
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6595
    ## address.h (module 'network'): bool ns3::AddressValue::DeserializeFromString(std::string value, ns3::Ptr<ns3::AttributeChecker const> checker) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6596
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6597
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6598
                   [param('std::string', 'value'), param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6599
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6600
    ## address.h (module 'network'): ns3::Address ns3::AddressValue::Get() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6601
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6602
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6603
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6604
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6605
    ## address.h (module 'network'): std::string ns3::AddressValue::SerializeToString(ns3::Ptr<ns3::AttributeChecker const> checker) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6606
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6607
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6608
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6609
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6610
    ## address.h (module 'network'): void ns3::AddressValue::Set(ns3::Address const & value) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6611
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6612
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6613
                   [param('ns3::Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6614
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6615
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6616
def register_Ns3OlsrAssociation_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6617
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6618
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6619
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::Association::Association() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6620
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6621
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::Association::Association(ns3::olsr::Association const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6622
    cls.add_constructor([param('ns3::olsr::Association const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6623
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::Association::netmask [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6624
    cls.add_instance_attribute('netmask', 'ns3::Ipv4Mask', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6625
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::Association::networkAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6626
    cls.add_instance_attribute('networkAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6627
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6628
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6629
def register_Ns3OlsrAssociationTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6630
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6631
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6632
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::AssociationTuple::AssociationTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6633
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6634
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::AssociationTuple::AssociationTuple(ns3::olsr::AssociationTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6635
    cls.add_constructor([param('ns3::olsr::AssociationTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6636
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::AssociationTuple::expirationTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6637
    cls.add_instance_attribute('expirationTime', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6638
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::AssociationTuple::gatewayAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6639
    cls.add_instance_attribute('gatewayAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6640
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::AssociationTuple::netmask [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6641
    cls.add_instance_attribute('netmask', 'ns3::Ipv4Mask', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6642
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::AssociationTuple::networkAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6643
    cls.add_instance_attribute('networkAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6644
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6645
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6646
def register_Ns3OlsrDuplicateTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6647
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6648
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple::DuplicateTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6649
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6650
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple::DuplicateTuple(ns3::olsr::DuplicateTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6651
    cls.add_constructor([param('ns3::olsr::DuplicateTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6652
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple::address [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6653
    cls.add_instance_attribute('address', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6654
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple::expirationTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6655
    cls.add_instance_attribute('expirationTime', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6656
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple::ifaceList [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6657
    cls.add_instance_attribute('ifaceList', 'std::vector< ns3::Ipv4Address >', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6658
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple::retransmitted [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6659
    cls.add_instance_attribute('retransmitted', 'bool', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6660
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::DuplicateTuple::sequenceNumber [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6661
    cls.add_instance_attribute('sequenceNumber', 'uint16_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6662
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6663
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6664
def register_Ns3OlsrIfaceAssocTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6665
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6666
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6667
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::IfaceAssocTuple::IfaceAssocTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6668
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6669
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::IfaceAssocTuple::IfaceAssocTuple(ns3::olsr::IfaceAssocTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6670
    cls.add_constructor([param('ns3::olsr::IfaceAssocTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6671
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::IfaceAssocTuple::ifaceAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6672
    cls.add_instance_attribute('ifaceAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6673
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::IfaceAssocTuple::mainAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6674
    cls.add_instance_attribute('mainAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6675
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::IfaceAssocTuple::time [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6676
    cls.add_instance_attribute('time', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6677
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6678
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6679
def register_Ns3OlsrLinkTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6680
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6681
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6682
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple::LinkTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6683
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6684
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple::LinkTuple(ns3::olsr::LinkTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6685
    cls.add_constructor([param('ns3::olsr::LinkTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6686
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple::asymTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6687
    cls.add_instance_attribute('asymTime', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6688
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple::localIfaceAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6689
    cls.add_instance_attribute('localIfaceAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6690
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple::neighborIfaceAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6691
    cls.add_instance_attribute('neighborIfaceAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6692
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple::symTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6693
    cls.add_instance_attribute('symTime', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6694
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::LinkTuple::time [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6695
    cls.add_instance_attribute('time', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6696
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6697
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6698
def register_Ns3OlsrMessageHeader_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6699
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6700
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::MessageHeader(ns3::olsr::MessageHeader const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6701
    cls.add_constructor([param('ns3::olsr::MessageHeader const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6702
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::MessageHeader() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6703
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6704
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6705
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6706
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6707
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6708
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6709
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello & ns3::olsr::MessageHeader::GetHello() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6710
    cls.add_method('GetHello', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6711
                   'ns3::olsr::MessageHeader::Hello &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6712
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6713
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello const & ns3::olsr::MessageHeader::GetHello() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6714
    cls.add_method('GetHello', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6715
                   'ns3::olsr::MessageHeader::Hello const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6716
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6717
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6718
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna & ns3::olsr::MessageHeader::GetHna() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6719
    cls.add_method('GetHna', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6720
                   'ns3::olsr::MessageHeader::Hna &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6721
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6722
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna const & ns3::olsr::MessageHeader::GetHna() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6723
    cls.add_method('GetHna', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6724
                   'ns3::olsr::MessageHeader::Hna const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6725
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6726
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6727
    ## olsr-header.h (module 'olsr'): uint8_t ns3::olsr::MessageHeader::GetHopCount() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6728
    cls.add_method('GetHopCount', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6729
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6730
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6731
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6732
    ## olsr-header.h (module 'olsr'): ns3::TypeId ns3::olsr::MessageHeader::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6733
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6734
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6735
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6736
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6737
    ## olsr-header.h (module 'olsr'): uint16_t ns3::olsr::MessageHeader::GetMessageSequenceNumber() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6738
    cls.add_method('GetMessageSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6739
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6740
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6741
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6742
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::MessageType ns3::olsr::MessageHeader::GetMessageType() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6743
    cls.add_method('GetMessageType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6744
                   'ns3::olsr::MessageHeader::MessageType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6745
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6746
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6747
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Mid & ns3::olsr::MessageHeader::GetMid() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6748
    cls.add_method('GetMid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6749
                   'ns3::olsr::MessageHeader::Mid &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6750
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6751
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Mid const & ns3::olsr::MessageHeader::GetMid() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6752
    cls.add_method('GetMid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6753
                   'ns3::olsr::MessageHeader::Mid const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6754
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6755
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6756
    ## olsr-header.h (module 'olsr'): ns3::Ipv4Address ns3::olsr::MessageHeader::GetOriginatorAddress() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6757
    cls.add_method('GetOriginatorAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6758
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6759
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6760
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6761
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6762
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6763
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6764
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6765
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6766
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Tc & ns3::olsr::MessageHeader::GetTc() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6767
    cls.add_method('GetTc', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6768
                   'ns3::olsr::MessageHeader::Tc &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6769
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6770
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Tc const & ns3::olsr::MessageHeader::GetTc() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6771
    cls.add_method('GetTc', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6772
                   'ns3::olsr::MessageHeader::Tc const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6773
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6774
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6775
    ## olsr-header.h (module 'olsr'): uint8_t ns3::olsr::MessageHeader::GetTimeToLive() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6776
    cls.add_method('GetTimeToLive', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6777
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6778
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6779
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6780
    ## olsr-header.h (module 'olsr'): static ns3::TypeId ns3::olsr::MessageHeader::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6781
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6782
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6783
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6784
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6785
    ## olsr-header.h (module 'olsr'): ns3::Time ns3::olsr::MessageHeader::GetVTime() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6786
    cls.add_method('GetVTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6787
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6788
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6789
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6790
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6791
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6792
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6793
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6794
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6795
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6796
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6797
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6798
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6799
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6800
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::SetHopCount(uint8_t hopCount) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6801
    cls.add_method('SetHopCount', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6802
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6803
                   [param('uint8_t', 'hopCount')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6804
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::SetMessageSequenceNumber(uint16_t messageSequenceNumber) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6805
    cls.add_method('SetMessageSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6806
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6807
                   [param('uint16_t', 'messageSequenceNumber')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6808
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::SetMessageType(ns3::olsr::MessageHeader::MessageType messageType) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6809
    cls.add_method('SetMessageType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6810
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6811
                   [param('ns3::olsr::MessageHeader::MessageType', 'messageType')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6812
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::SetOriginatorAddress(ns3::Ipv4Address originatorAddress) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6813
    cls.add_method('SetOriginatorAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6814
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6815
                   [param('ns3::Ipv4Address', 'originatorAddress')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6816
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::SetTimeToLive(uint8_t timeToLive) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6817
    cls.add_method('SetTimeToLive', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6818
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6819
                   [param('uint8_t', 'timeToLive')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6820
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::SetVTime(ns3::Time time) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6821
    cls.add_method('SetVTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6822
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6823
                   [param('ns3::Time', 'time')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6824
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6825
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6826
def register_Ns3OlsrMessageHeaderHello_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6827
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::Hello() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6828
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6829
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::Hello(ns3::olsr::MessageHeader::Hello const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6830
    cls.add_constructor([param('ns3::olsr::MessageHeader::Hello const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6831
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Hello::Deserialize(ns3::Buffer::Iterator start, uint32_t messageSize) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6832
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6833
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6834
                   [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'messageSize')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6835
    ## olsr-header.h (module 'olsr'): ns3::Time ns3::olsr::MessageHeader::Hello::GetHTime() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6836
    cls.add_method('GetHTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6837
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6838
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6839
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6840
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Hello::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6841
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6842
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6843
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6844
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6845
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Hello::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6846
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6847
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6848
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6849
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6850
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Hello::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6851
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6852
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6853
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6854
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6855
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Hello::SetHTime(ns3::Time time) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6856
    cls.add_method('SetHTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6857
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6858
                   [param('ns3::Time', 'time')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6859
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::hTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6860
    cls.add_instance_attribute('hTime', 'uint8_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6861
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::linkMessages [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6862
    cls.add_instance_attribute('linkMessages', 'std::vector< ns3::olsr::MessageHeader::Hello::LinkMessage >', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6863
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::willingness [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6864
    cls.add_instance_attribute('willingness', 'uint8_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6865
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6866
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6867
def register_Ns3OlsrMessageHeaderHelloLinkMessage_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6868
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::LinkMessage::LinkMessage() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6869
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6870
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::LinkMessage::LinkMessage(ns3::olsr::MessageHeader::Hello::LinkMessage const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6871
    cls.add_constructor([param('ns3::olsr::MessageHeader::Hello::LinkMessage const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6872
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::LinkMessage::linkCode [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6873
    cls.add_instance_attribute('linkCode', 'uint8_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6874
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hello::LinkMessage::neighborInterfaceAddresses [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6875
    cls.add_instance_attribute('neighborInterfaceAddresses', 'std::vector< ns3::Ipv4Address >', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6876
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6877
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6878
def register_Ns3OlsrMessageHeaderHna_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6879
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::Hna() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6880
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6881
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::Hna(ns3::olsr::MessageHeader::Hna const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6882
    cls.add_constructor([param('ns3::olsr::MessageHeader::Hna const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6883
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Hna::Deserialize(ns3::Buffer::Iterator start, uint32_t messageSize) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6884
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6885
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6886
                   [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'messageSize')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6887
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Hna::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6888
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6889
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6890
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6891
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6892
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Hna::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6893
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6894
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6895
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6896
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6897
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Hna::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6898
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6899
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6900
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6901
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6902
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::associations [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6903
    cls.add_instance_attribute('associations', 'std::vector< ns3::olsr::MessageHeader::Hna::Association >', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6904
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6905
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6906
def register_Ns3OlsrMessageHeaderHnaAssociation_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6907
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::Association::Association() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6908
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6909
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::Association::Association(ns3::olsr::MessageHeader::Hna::Association const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6910
    cls.add_constructor([param('ns3::olsr::MessageHeader::Hna::Association const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6911
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::Association::address [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6912
    cls.add_instance_attribute('address', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6913
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Hna::Association::mask [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6914
    cls.add_instance_attribute('mask', 'ns3::Ipv4Mask', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6915
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6916
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6917
def register_Ns3OlsrMessageHeaderMid_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6918
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Mid::Mid() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6919
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6920
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Mid::Mid(ns3::olsr::MessageHeader::Mid const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6921
    cls.add_constructor([param('ns3::olsr::MessageHeader::Mid const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6922
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Mid::Deserialize(ns3::Buffer::Iterator start, uint32_t messageSize) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6923
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6924
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6925
                   [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'messageSize')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6926
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Mid::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6927
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6928
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6929
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6930
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6931
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Mid::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6932
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6933
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6934
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6935
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6936
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Mid::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6937
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6938
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6939
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6940
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6941
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Mid::interfaceAddresses [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6942
    cls.add_instance_attribute('interfaceAddresses', 'std::vector< ns3::Ipv4Address >', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6943
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6944
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6945
def register_Ns3OlsrMessageHeaderTc_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6946
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Tc::Tc() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6947
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6948
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Tc::Tc(ns3::olsr::MessageHeader::Tc const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6949
    cls.add_constructor([param('ns3::olsr::MessageHeader::Tc const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6950
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Tc::Deserialize(ns3::Buffer::Iterator start, uint32_t messageSize) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6951
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6952
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6953
                   [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'messageSize')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6954
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::MessageHeader::Tc::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6955
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6956
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6957
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6958
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6959
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Tc::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6960
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6961
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6962
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6963
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6964
    ## olsr-header.h (module 'olsr'): void ns3::olsr::MessageHeader::Tc::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6965
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6966
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6967
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6968
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6969
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Tc::ansn [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6970
    cls.add_instance_attribute('ansn', 'uint16_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6971
    ## olsr-header.h (module 'olsr'): ns3::olsr::MessageHeader::Tc::neighborAddresses [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6972
    cls.add_instance_attribute('neighborAddresses', 'std::vector< ns3::Ipv4Address >', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6973
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6974
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6975
def register_Ns3OlsrMprSelectorTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6976
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6977
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::MprSelectorTuple::MprSelectorTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6978
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6979
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::MprSelectorTuple::MprSelectorTuple(ns3::olsr::MprSelectorTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6980
    cls.add_constructor([param('ns3::olsr::MprSelectorTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6981
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::MprSelectorTuple::expirationTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6982
    cls.add_instance_attribute('expirationTime', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6983
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::MprSelectorTuple::mainAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6984
    cls.add_instance_attribute('mainAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6985
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6986
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6987
def register_Ns3OlsrNeighborTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6988
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6989
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6990
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::NeighborTuple::NeighborTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6991
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6992
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::NeighborTuple::NeighborTuple(ns3::olsr::NeighborTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6993
    cls.add_constructor([param('ns3::olsr::NeighborTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6994
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::NeighborTuple::neighborMainAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6995
    cls.add_instance_attribute('neighborMainAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6996
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::NeighborTuple::status [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6997
    cls.add_instance_attribute('status', 'ns3::olsr::NeighborTuple::Status', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6998
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::NeighborTuple::willingness [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6999
    cls.add_instance_attribute('willingness', 'uint8_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7000
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7001
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7002
def register_Ns3OlsrPacketHeader_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7003
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7004
    ## olsr-header.h (module 'olsr'): ns3::olsr::PacketHeader::PacketHeader(ns3::olsr::PacketHeader const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7005
    cls.add_constructor([param('ns3::olsr::PacketHeader const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7006
    ## olsr-header.h (module 'olsr'): ns3::olsr::PacketHeader::PacketHeader() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7007
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7008
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::PacketHeader::Deserialize(ns3::Buffer::Iterator start) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7009
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7010
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7011
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7012
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7013
    ## olsr-header.h (module 'olsr'): ns3::TypeId ns3::olsr::PacketHeader::GetInstanceTypeId() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7014
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7015
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7016
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7017
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7018
    ## olsr-header.h (module 'olsr'): uint16_t ns3::olsr::PacketHeader::GetPacketLength() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7019
    cls.add_method('GetPacketLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7020
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7021
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7022
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7023
    ## olsr-header.h (module 'olsr'): uint16_t ns3::olsr::PacketHeader::GetPacketSequenceNumber() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7024
    cls.add_method('GetPacketSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7025
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7026
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7027
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7028
    ## olsr-header.h (module 'olsr'): uint32_t ns3::olsr::PacketHeader::GetSerializedSize() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7029
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7030
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7031
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7032
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7033
    ## olsr-header.h (module 'olsr'): static ns3::TypeId ns3::olsr::PacketHeader::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7034
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7035
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7036
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7037
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7038
    ## olsr-header.h (module 'olsr'): void ns3::olsr::PacketHeader::Print(std::ostream & os) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7039
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7040
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7041
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7042
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7043
    ## olsr-header.h (module 'olsr'): void ns3::olsr::PacketHeader::Serialize(ns3::Buffer::Iterator start) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7044
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7045
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7046
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7047
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7048
    ## olsr-header.h (module 'olsr'): void ns3::olsr::PacketHeader::SetPacketLength(uint16_t length) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7049
    cls.add_method('SetPacketLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7050
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7051
                   [param('uint16_t', 'length')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7052
    ## olsr-header.h (module 'olsr'): void ns3::olsr::PacketHeader::SetPacketSequenceNumber(uint16_t seqnum) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7053
    cls.add_method('SetPacketSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7054
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7055
                   [param('uint16_t', 'seqnum')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7056
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7057
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7058
def register_Ns3OlsrRoutingProtocol_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7059
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingProtocol::RoutingProtocol(ns3::olsr::RoutingProtocol const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7060
    cls.add_constructor([param('ns3::olsr::RoutingProtocol const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7061
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingProtocol::RoutingProtocol() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7062
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7063
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::AddHostNetworkAssociation(ns3::Ipv4Address networkAddr, ns3::Ipv4Mask netmask) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7064
    cls.add_method('AddHostNetworkAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7065
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7066
                   [param('ns3::Ipv4Address', 'networkAddr'), param('ns3::Ipv4Mask', 'netmask')])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  7067
    ## olsr-routing-protocol.h (module 'olsr'): int64_t ns3::olsr::RoutingProtocol::AssignStreams(int64_t stream) [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  7068
    cls.add_method('AssignStreams', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  7069
                   'int64_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  7070
                   [param('int64_t', 'stream')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7071
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::Dump() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7072
    cls.add_method('Dump', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7073
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7074
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7075
    ## olsr-routing-protocol.h (module 'olsr'): std::set<unsigned int, std::less<unsigned int>, std::allocator<unsigned int> > ns3::olsr::RoutingProtocol::GetInterfaceExclusions() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7076
    cls.add_method('GetInterfaceExclusions', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7077
                   'std::set< unsigned int >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7078
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7079
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7080
    ## olsr-routing-protocol.h (module 'olsr'): std::vector<ns3::olsr::RoutingTableEntry,std::allocator<ns3::olsr::RoutingTableEntry> > ns3::olsr::RoutingProtocol::GetRoutingTableEntries() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7081
    cls.add_method('GetRoutingTableEntries', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7082
                   'std::vector< ns3::olsr::RoutingTableEntry >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7083
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7084
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7085
    ## olsr-routing-protocol.h (module 'olsr'): static ns3::TypeId ns3::olsr::RoutingProtocol::GetTypeId() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7086
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7087
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7088
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7089
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7090
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::RemoveHostNetworkAssociation(ns3::Ipv4Address networkAddr, ns3::Ipv4Mask netmask) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7091
    cls.add_method('RemoveHostNetworkAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7092
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7093
                   [param('ns3::Ipv4Address', 'networkAddr'), param('ns3::Ipv4Mask', 'netmask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7094
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::SetInterfaceExclusions(std::set<unsigned int, std::less<unsigned int>, std::allocator<unsigned int> > exceptions) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7095
    cls.add_method('SetInterfaceExclusions', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7096
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7097
                   [param('std::set< unsigned int >', 'exceptions')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7098
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::SetMainInterface(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7099
    cls.add_method('SetMainInterface', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7100
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7101
                   [param('uint32_t', 'interface')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7102
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::SetRoutingTableAssociation(ns3::Ptr<ns3::Ipv4StaticRouting> routingTable) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7103
    cls.add_method('SetRoutingTableAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7104
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7105
                   [param('ns3::Ptr< ns3::Ipv4StaticRouting >', 'routingTable')])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  7106
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  7107
    cls.add_method('DoInitialize', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7108
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7109
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7110
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7111
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::DoDispose() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7112
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7113
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7114
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7115
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7116
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7117
    cls.add_method('NotifyAddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7118
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7119
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7120
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7121
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::NotifyInterfaceDown(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7122
    cls.add_method('NotifyInterfaceDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7123
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7124
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7125
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7126
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::NotifyInterfaceUp(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7127
    cls.add_method('NotifyInterfaceUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7128
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7129
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7130
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7131
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7132
    cls.add_method('NotifyRemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7133
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7134
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7135
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7136
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::PrintRoutingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7137
    cls.add_method('PrintRoutingTable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7138
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7139
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7140
                   is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7141
    ## olsr-routing-protocol.h (module 'olsr'): bool ns3::olsr::RoutingProtocol::RouteInput(ns3::Ptr<const ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<const ns3::NetDevice> idev, ns3::Callback<void,ns3::Ptr<ns3::Ipv4Route>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ucb, ns3::Callback<void,ns3::Ptr<ns3::Ipv4MulticastRoute>,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> mcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,unsigned int,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> lcb, ns3::Callback<void,ns3::Ptr<const ns3::Packet>,const ns3::Ipv4Header&,ns3::Socket::SocketErrno,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty,ns3::empty> ecb) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7142
    cls.add_method('RouteInput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7143
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7144
                   [param('ns3::Ptr< ns3::Packet const >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice const >', 'idev'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4Route >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ucb'), param('ns3::Callback< void, ns3::Ptr< ns3::Ipv4MulticastRoute >, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'mcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, unsigned int, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'lcb'), param('ns3::Callback< void, ns3::Ptr< ns3::Packet const >, ns3::Ipv4Header const &, ns3::Socket::SocketErrno, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty, ns3::empty >', 'ecb')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7145
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7146
    ## olsr-routing-protocol.h (module 'olsr'): ns3::Ptr<ns3::Ipv4Route> ns3::olsr::RoutingProtocol::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::NetDevice> oif, ns3::Socket::SocketErrno & sockerr) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7147
    cls.add_method('RouteOutput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7148
                   'ns3::Ptr< ns3::Ipv4Route >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7149
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice >', 'oif'), param('ns3::Socket::SocketErrno &', 'sockerr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7150
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7151
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7152
    cls.add_method('SetIpv4', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7153
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7154
                   [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7155
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7156
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7157
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7158
def register_Ns3OlsrRoutingTableEntry_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7159
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingTableEntry::RoutingTableEntry(ns3::olsr::RoutingTableEntry const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7160
    cls.add_constructor([param('ns3::olsr::RoutingTableEntry const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7161
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingTableEntry::RoutingTableEntry() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7162
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7163
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingTableEntry::destAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7164
    cls.add_instance_attribute('destAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7165
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingTableEntry::distance [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7166
    cls.add_instance_attribute('distance', 'uint32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7167
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingTableEntry::interface [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7168
    cls.add_instance_attribute('interface', 'uint32_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7169
    ## olsr-routing-protocol.h (module 'olsr'): ns3::olsr::RoutingTableEntry::nextAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7170
    cls.add_instance_attribute('nextAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7171
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7172
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7173
def register_Ns3OlsrTopologyTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7174
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7175
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7176
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TopologyTuple::TopologyTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7177
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7178
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TopologyTuple::TopologyTuple(ns3::olsr::TopologyTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7179
    cls.add_constructor([param('ns3::olsr::TopologyTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7180
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TopologyTuple::destAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7181
    cls.add_instance_attribute('destAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7182
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TopologyTuple::expirationTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7183
    cls.add_instance_attribute('expirationTime', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7184
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TopologyTuple::lastAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7185
    cls.add_instance_attribute('lastAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7186
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TopologyTuple::sequenceNumber [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7187
    cls.add_instance_attribute('sequenceNumber', 'uint16_t', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7188
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7189
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7190
def register_Ns3OlsrTwoHopNeighborTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7191
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7192
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7193
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple::TwoHopNeighborTuple() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7194
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7195
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple::TwoHopNeighborTuple(ns3::olsr::TwoHopNeighborTuple const & arg0) [copy constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7196
    cls.add_constructor([param('ns3::olsr::TwoHopNeighborTuple const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7197
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple::expirationTime [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7198
    cls.add_instance_attribute('expirationTime', 'ns3::Time', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7199
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple::neighborMainAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7200
    cls.add_instance_attribute('neighborMainAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7201
    ## olsr-repositories.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple::twoHopNeighborAddr [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7202
    cls.add_instance_attribute('twoHopNeighborAddr', 'ns3::Ipv4Address', is_const=False)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7203
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7204
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7205
def register_functions(root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7206
    module = root_module
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7207
    register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7208
    register_functions_ns3_olsr(module.get_submodule('olsr'), root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7209
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7210
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7211
def register_functions_ns3_FatalImpl(module, root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7212
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7213
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7214
def register_functions_ns3_olsr(module, root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7215
    ## olsr-header.h (module 'olsr'): extern double ns3::olsr::EmfToSeconds(uint8_t emf) [free function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7216
    module.add_function('EmfToSeconds', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7217
                        'double', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7218
                        [param('uint8_t', 'emf')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7219
    ## olsr-header.h (module 'olsr'): extern uint8_t ns3::olsr::SecondsToEmf(double seconds) [free function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7220
    module.add_function('SecondsToEmf', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7221
                        'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7222
                        [param('double', 'seconds')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7223
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7224
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7225
def main():
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7226
    out = FileCodeSink(sys.stdout)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7227
    root_module = module_init()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7228
    register_types(root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7229
    register_methods(root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7230
    register_functions(root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7231
    root_module.generate(out)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7232
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7233
if __name__ == '__main__':
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7234
    main()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7235