src/olsr/bindings/modulegen__gcc_LP64.py
author Tom Henderson <tomh@tomh.org>
Mon, 15 Sep 2014 20:51:08 -0700
changeset 10956 fa4be182ef17
parent 10709 82c7c2aabbb1
child 10990 414d94e669c5
permissions -rw-r--r--
rescan remaining 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')
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    51
    ## hash.h (module 'core'): ns3::Hasher [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
    52
    module.add_class('Hasher', import_from_module='ns.core')
9190
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
    module.add_class('Inet6SocketAddress', import_from_module='ns.network')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    55
    ## inet6-socket-address.h (module 'network'): ns3::Inet6SocketAddress [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    56
    root_module['ns3::Inet6SocketAddress'].implicitly_converts_to(root_module['ns3::Address'])
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
    module.add_class('InetSocketAddress', import_from_module='ns.network')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    59
    ## inet-socket-address.h (module 'network'): ns3::InetSocketAddress [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
    60
    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
    61
    ## 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
    62
    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
    63
    ## 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
    64
    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
    65
    ## 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
    66
    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
    67
    ## 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
    68
    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
    69
    ## 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
    70
    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
    71
    ## 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
    72
    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
    73
    ## 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
    74
    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
    75
    ## 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
    76
    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
    77
    ## 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
    78
    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
    79
    ## 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
    80
    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
    81
    ## 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
    82
    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
    83
    ## 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
    84
    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
    85
    ## 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
    86
    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
    87
    ## 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
    88
    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
    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
    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
    91
    ## ipv4-address.h (module 'network'): ns3::Ipv4Address [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    92
    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
    93
    ## 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
    94
    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
    95
    ## 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
    96
    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
    97
    ## ipv4-address.h (module 'network'): ns3::Ipv4Mask [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
    98
    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
    99
    ## 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
   100
    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
   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
    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
   103
    ## ipv6-address.h (module 'network'): ns3::Ipv6Address [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   104
    root_module['ns3::Ipv6Address'].implicitly_converts_to(root_module['ns3::Address'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   105
    ## ipv6-address.h (module 'network'): ns3::Ipv6Prefix [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   106
    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
   107
    ## node-container.h (module 'network'): ns3::NodeContainer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   108
    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
   109
    ## object-base.h (module 'core'): ns3::ObjectBase [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   110
    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
   111
    ## object.h (module 'core'): ns3::ObjectDeleter [struct]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   112
    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
   113
    ## object-factory.h (module 'core'): ns3::ObjectFactory [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   114
    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
   115
    ## olsr-helper.h (module 'olsr'): ns3::OlsrHelper [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   116
    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
   117
    ## packet-metadata.h (module 'network'): ns3::PacketMetadata [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   118
    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
   119
    ## 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
   120
    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
   121
    ## 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
   122
    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
   123
    ## 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
   124
    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
   125
    ## packet.h (module 'network'): ns3::PacketTagIterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   126
    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
   127
    ## packet.h (module 'network'): ns3::PacketTagIterator::Item [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   128
    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
   129
    ## 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
   130
    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
   131
    ## 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
   132
    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
   133
    ## packet-tag-list.h (module 'network'): ns3::PacketTagList::TagData::TagData_e [enumeration]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
   134
    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
   135
    ## 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
   136
    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
   137
    ## 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
   138
    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
   139
    ## 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
   140
    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
   141
    ## tag.h (module 'network'): ns3::Tag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   142
    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
   143
    ## tag-buffer.h (module 'network'): ns3::TagBuffer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   144
    module.add_class('TagBuffer', import_from_module='ns.network')
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   145
    ## nstime.h (module 'core'): ns3::TimeWithUnit [class]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   146
    module.add_class('TimeWithUnit', import_from_module='ns.core')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   147
    ## timer.h (module 'core'): ns3::Timer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   148
    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
   149
    ## timer.h (module 'core'): ns3::Timer::DestroyPolicy [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   150
    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
   151
    ## timer.h (module 'core'): ns3::Timer::State [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   152
    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
   153
    ## timer-impl.h (module 'core'): ns3::TimerImpl [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   154
    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
   155
    ## type-id.h (module 'core'): ns3::TypeId [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   156
    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
   157
    ## 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
   158
    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
   159
    ## 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
   160
    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
   161
    ## 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
   162
    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
   163
    ## empty.h (module 'core'): ns3::empty [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   164
    module.add_class('empty', import_from_module='ns.core')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   165
    ## int64x64-double.h (module 'core'): ns3::int64x64_t [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   166
    module.add_class('int64x64_t', import_from_module='ns.core')
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   167
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::impl_type [enumeration]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   168
    module.add_enum('impl_type', ['int128_impl', 'cairo_impl', 'ld_impl'], outer_class=root_module['ns3::int64x64_t'], import_from_module='ns.core')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   169
    ## chunk.h (module 'network'): ns3::Chunk [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   170
    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
   171
    ## header.h (module 'network'): ns3::Header [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   172
    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
   173
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   174
    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
   175
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::DscpType [enumeration]
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   176
    module.add_enum('DscpType', ['DscpDefault', 'DSCP_CS1', 'DSCP_AF11', 'DSCP_AF12', 'DSCP_AF13', 'DSCP_CS2', 'DSCP_AF21', 'DSCP_AF22', 'DSCP_AF23', 'DSCP_CS3', 'DSCP_AF31', 'DSCP_AF32', 'DSCP_AF33', 'DSCP_CS4', 'DSCP_AF41', 'DSCP_AF42', 'DSCP_AF43', 'DSCP_CS5', 'DSCP_EF', 'DSCP_CS6', 'DSCP_CS7'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet')
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
   177
    ## ipv4-header.h (module 'internet'): ns3::Ipv4Header::EcnType [enumeration]
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   178
    module.add_enum('EcnType', ['ECN_NotECT', 'ECN_ECT1', 'ECN_ECT0', 'ECN_CE'], outer_class=root_module['ns3::Ipv4Header'], import_from_module='ns.internet')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   179
    ## object.h (module 'core'): ns3::Object [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   180
    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
   181
    ## object.h (module 'core'): ns3::Object::AggregateIterator [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   182
    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
   183
    ## random-variable-stream.h (module 'core'): ns3::RandomVariableStream [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   184
    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
   185
    ## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   186
    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
   187
    ## 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
   188
    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
   189
    ## 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
   190
    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
   191
    ## 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
   192
    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
   193
    ## 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
   194
    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
   195
    ## 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
   196
    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'))
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   197
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> > [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   198
    module.add_class('SimpleRefCount', automatic_type_narrowing=True, import_from_module='ns.core', template_parameters=['ns3::Hash::Implementation', 'ns3::empty', 'ns3::DefaultDeleter<ns3::Hash::Implementation>'], parent=root_module['ns3::empty'], memory_policy=cppclass.ReferenceCountingMethodsPolicy(incref_method='Ref', decref_method='Unref', peekref_method='GetReferenceCount'))
6922
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::Ipv4MulticastRoute, ns3::empty, ns3::DefaultDeleter<ns3::Ipv4MulticastRoute> > [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::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
   201
    ## 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
   202
    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
   203
    ## 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
   204
    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
   205
    ## 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
   206
    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
   207
    ## 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
   208
    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
   209
    ## 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
   210
    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
   211
    ## socket.h (module 'network'): ns3::Socket [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   212
    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
   213
    ## socket.h (module 'network'): ns3::Socket::SocketErrno [enumeration]
7449
c9d877350d13 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 7403
diff changeset
   214
    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
   215
    ## socket.h (module 'network'): ns3::Socket::SocketType [enumeration]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   216
    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
   217
    ## socket.h (module 'network'): ns3::SocketAddressTag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   218
    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
   219
    ## socket.h (module 'network'): ns3::SocketIpTosTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   220
    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
   221
    ## socket.h (module 'network'): ns3::SocketIpTtlTag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   222
    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
   223
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   224
    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
   225
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag [class]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   226
    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
   227
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   228
    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
   229
    ## nstime.h (module 'core'): ns3::Time [class]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   230
    module.add_class('Time', import_from_module='ns.core')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   231
    ## nstime.h (module 'core'): ns3::Time::Unit [enumeration]
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
   232
    module.add_enum('Unit', ['Y', 'D', 'H', 'MIN', 'S', 'MS', 'US', 'NS', 'PS', 'FS', 'LAST'], outer_class=root_module['ns3::Time'], import_from_module='ns.core')
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 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
    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
   235
    ## 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
   236
    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
   237
    ## trailer.h (module 'network'): ns3::Trailer [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   238
    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
   239
    ## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   240
    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
   241
    ## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   242
    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
   243
    ## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   244
    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
   245
    ## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   246
    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
   247
    ## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   248
    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
   249
    ## attribute.h (module 'core'): ns3::AttributeAccessor [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   250
    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
   251
    ## attribute.h (module 'core'): ns3::AttributeChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   252
    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
   253
    ## attribute.h (module 'core'): ns3::AttributeValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   254
    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
   255
    ## callback.h (module 'core'): ns3::CallbackChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   256
    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
   257
    ## callback.h (module 'core'): ns3::CallbackImplBase [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   258
    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
   259
    ## callback.h (module 'core'): ns3::CallbackValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   260
    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
   261
    ## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   262
    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
   263
    ## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   264
    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
   265
    ## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   266
    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
   267
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   268
    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
   269
    ## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   270
    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
   271
    ## event-impl.h (module 'core'): ns3::EventImpl [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   272
    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
   273
    ## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   274
    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
   275
    ## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   276
    module.add_class('GammaRandomVariable', 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
   277
    ## ipv4.h (module 'internet'): ns3::Ipv4 [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   278
    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
   279
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   280
    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
   281
    ## ipv4-address.h (module 'network'): ns3::Ipv4AddressValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   282
    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
   283
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   284
    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
   285
    ## ipv4-address.h (module 'network'): ns3::Ipv4MaskValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   286
    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
   287
    ## ipv4-route.h (module 'internet'): ns3::Ipv4MulticastRoute [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   288
    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
   289
    ## ipv4-route.h (module 'internet'): ns3::Ipv4Route [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   290
    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
   291
    ## 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
   292
    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
   293
    ## 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
   294
    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
   295
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   296
    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
   297
    ## ipv6-address.h (module 'network'): ns3::Ipv6AddressValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   298
    module.add_class('Ipv6AddressValue', 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
   299
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   300
    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
   301
    ## ipv6-address.h (module 'network'): ns3::Ipv6PrefixValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   302
    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
   303
    ## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   304
    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
   305
    ## net-device.h (module 'network'): ns3::NetDevice [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   306
    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
   307
    ## 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
   308
    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
   309
    ## nix-vector.h (module 'network'): ns3::NixVector [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   310
    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
   311
    ## node.h (module 'network'): ns3::Node [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   312
    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
   313
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   314
    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
   315
    ## object-factory.h (module 'core'): ns3::ObjectFactoryChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   316
    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
   317
    ## object-factory.h (module 'core'): ns3::ObjectFactoryValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   318
    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
   319
    ## 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
   320
    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
   321
    ## packet.h (module 'network'): ns3::Packet [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   322
    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
   323
    ## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable [class]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   324
    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
   325
    ## nstime.h (module 'core'): ns3::TimeValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   326
    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
   327
    ## type-id.h (module 'core'): ns3::TypeIdChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   328
    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
   329
    ## type-id.h (module 'core'): ns3::TypeIdValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   330
    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
   331
    ## address.h (module 'network'): ns3::AddressChecker [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   332
    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
   333
    ## address.h (module 'network'): ns3::AddressValue [class]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   334
    module.add_class('AddressValue', import_from_module='ns.network', parent=root_module['ns3::AttributeValue'])
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   335
    ## ipv4-list-routing.h (module 'internet'): ns3::Ipv4ListRouting [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   336
    module.add_class('Ipv4ListRouting', import_from_module='ns.internet', parent=root_module['ns3::Ipv4RoutingProtocol'])
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   337
    module.add_container('std::map< unsigned int, unsigned int >', ('unsigned int', 'unsigned int'), container_type=u'map')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   338
    module.add_container('std::vector< unsigned int >', 'unsigned int', container_type=u'vector')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   339
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   340
    ## Register a nested module for the namespace FatalImpl
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   341
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   342
    nested_module = module.add_cpp_namespace('FatalImpl')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   343
    register_types_ns3_FatalImpl(nested_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   344
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   345
    
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   346
    ## Register a nested module for the namespace Hash
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   347
    
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   348
    nested_module = module.add_cpp_namespace('Hash')
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   349
    register_types_ns3_Hash(nested_module)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   350
    
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   351
    
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   352
    ## Register a nested module for the namespace olsr
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   353
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   354
    nested_module = module.add_cpp_namespace('olsr')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   355
    register_types_ns3_olsr(nested_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   356
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   357
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   358
def register_types_ns3_FatalImpl(module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   359
    root_module = module.get_root()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   360
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   361
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   362
def register_types_ns3_Hash(module):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   363
    root_module = module.get_root()
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   364
    
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   365
    ## hash-function.h (module 'core'): ns3::Hash::Implementation [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   366
    module.add_class('Implementation', import_from_module='ns.core', parent=root_module['ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >'])
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   367
    typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) *', u'ns3::Hash::Hash32Function_ptr')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   368
    typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) **', u'ns3::Hash::Hash32Function_ptr*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   369
    typehandlers.add_type_alias(u'uint32_t ( * ) ( char const *, size_t ) *&', u'ns3::Hash::Hash32Function_ptr&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   370
    typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) *', u'ns3::Hash::Hash64Function_ptr')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   371
    typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) **', u'ns3::Hash::Hash64Function_ptr*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   372
    typehandlers.add_type_alias(u'uint64_t ( * ) ( char const *, size_t ) *&', u'ns3::Hash::Hash64Function_ptr&')
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   373
    
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   374
    ## Register a nested module for the namespace Function
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   375
    
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   376
    nested_module = module.add_cpp_namespace('Function')
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   377
    register_types_ns3_Hash_Function(nested_module)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   378
    
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   379
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   380
def register_types_ns3_Hash_Function(module):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   381
    root_module = module.get_root()
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   382
    
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   383
    ## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   384
    module.add_class('Fnv1a', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   385
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash32 [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   386
    module.add_class('Hash32', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   387
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash64 [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   388
    module.add_class('Hash64', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   389
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3 [class]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   390
    module.add_class('Murmur3', import_from_module='ns.core', parent=root_module['ns3::Hash::Implementation'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   391
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   392
def register_types_ns3_olsr(module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   393
    root_module = module.get_root()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   394
    
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   395
    ## 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
   396
    module.add_class('Association')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   397
    ## 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
   398
    module.add_class('AssociationTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   399
    ## 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
   400
    module.add_class('DuplicateTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   401
    ## 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
   402
    module.add_class('IfaceAssocTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   403
    ## 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
   404
    module.add_class('LinkTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   405
    ## 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
   406
    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
   407
    ## 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
   408
    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
   409
    ## 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
   410
    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
   411
    ## 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
   412
    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
   413
    ## 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
   414
    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
   415
    ## 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
   416
    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
   417
    ## 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
   418
    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
   419
    ## 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
   420
    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
   421
    ## 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
   422
    module.add_class('MprSelectorTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   423
    ## 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
   424
    module.add_class('NeighborTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   425
    ## 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
   426
    module.add_enum('Status', ['STATUS_NOT_SYM', 'STATUS_SYM'], outer_class=root_module['ns3::olsr::NeighborTuple'])
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   427
    ## olsr-state.h (module 'olsr'): ns3::olsr::OlsrState [class]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   428
    module.add_class('OlsrState')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   429
    ## 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
   430
    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
   431
    ## 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
   432
    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
   433
    ## 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
   434
    module.add_class('RoutingTableEntry')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   435
    ## 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
   436
    module.add_class('TopologyTuple')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   437
    ## 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
   438
    module.add_class('TwoHopNeighborTuple')
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   439
    module.add_container('std::vector< ns3::Ipv4Address >', 'ns3::Ipv4Address', container_type=u'vector')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   440
    module.add_container('std::vector< ns3::olsr::MessageHeader::Hello::LinkMessage >', 'ns3::olsr::MessageHeader::Hello::LinkMessage', container_type=u'vector')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   441
    module.add_container('std::vector< ns3::olsr::MessageHeader::Hna::Association >', 'ns3::olsr::MessageHeader::Hna::Association', container_type=u'vector')
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   442
    module.add_container('std::vector< ns3::olsr::MprSelectorTuple >', 'ns3::olsr::MprSelectorTuple', container_type=u'vector')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   443
    module.add_container('std::vector< ns3::olsr::NeighborTuple >', 'ns3::olsr::NeighborTuple', container_type=u'vector')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   444
    module.add_container('std::vector< ns3::olsr::TwoHopNeighborTuple >', 'ns3::olsr::TwoHopNeighborTuple', container_type=u'vector')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   445
    module.add_container('ns3::olsr::MprSet', 'ns3::Ipv4Address', container_type=u'set')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   446
    module.add_container('std::vector< ns3::olsr::LinkTuple >', 'ns3::olsr::LinkTuple', container_type=u'vector')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   447
    module.add_container('std::vector< ns3::olsr::TopologyTuple >', 'ns3::olsr::TopologyTuple', container_type=u'vector')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   448
    module.add_container('std::vector< ns3::olsr::IfaceAssocTuple >', 'ns3::olsr::IfaceAssocTuple', container_type=u'vector')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   449
    module.add_container('std::vector< ns3::olsr::AssociationTuple >', 'ns3::olsr::AssociationTuple', container_type=u'vector')
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   450
    module.add_container('std::vector< ns3::olsr::Association >', 'ns3::olsr::Association', container_type=u'vector')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   451
    module.add_container('std::vector< ns3::olsr::RoutingTableEntry >', 'ns3::olsr::RoutingTableEntry', container_type=u'vector')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   452
    module.add_container('std::set< unsigned int >', 'unsigned int', container_type=u'set')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   453
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::DuplicateTuple, std::allocator< ns3::olsr::DuplicateTuple > >', u'ns3::olsr::DuplicateSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   454
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::DuplicateTuple, std::allocator< ns3::olsr::DuplicateTuple > >*', u'ns3::olsr::DuplicateSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   455
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::DuplicateTuple, std::allocator< ns3::olsr::DuplicateTuple > >&', u'ns3::olsr::DuplicateSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   456
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::MprSelectorTuple, std::allocator< ns3::olsr::MprSelectorTuple > >', u'ns3::olsr::MprSelectorSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   457
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::MprSelectorTuple, std::allocator< ns3::olsr::MprSelectorTuple > >*', u'ns3::olsr::MprSelectorSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   458
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::MprSelectorTuple, std::allocator< ns3::olsr::MprSelectorTuple > >&', u'ns3::olsr::MprSelectorSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   459
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::NeighborTuple, std::allocator< ns3::olsr::NeighborTuple > >', u'ns3::olsr::NeighborSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   460
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::NeighborTuple, std::allocator< ns3::olsr::NeighborTuple > >*', u'ns3::olsr::NeighborSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   461
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::NeighborTuple, std::allocator< ns3::olsr::NeighborTuple > >&', u'ns3::olsr::NeighborSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   462
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::LinkTuple, std::allocator< ns3::olsr::LinkTuple > >', u'ns3::olsr::LinkSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   463
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::LinkTuple, std::allocator< ns3::olsr::LinkTuple > >*', u'ns3::olsr::LinkSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   464
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::LinkTuple, std::allocator< ns3::olsr::LinkTuple > >&', u'ns3::olsr::LinkSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   465
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::MessageHeader, std::allocator< ns3::olsr::MessageHeader > >', u'ns3::olsr::MessageList')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   466
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::MessageHeader, std::allocator< ns3::olsr::MessageHeader > >*', u'ns3::olsr::MessageList*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   467
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::MessageHeader, std::allocator< ns3::olsr::MessageHeader > >&', u'ns3::olsr::MessageList&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   468
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::AssociationTuple, std::allocator< ns3::olsr::AssociationTuple > >', u'ns3::olsr::AssociationSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   469
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::AssociationTuple, std::allocator< ns3::olsr::AssociationTuple > >*', u'ns3::olsr::AssociationSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   470
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::AssociationTuple, std::allocator< ns3::olsr::AssociationTuple > >&', u'ns3::olsr::AssociationSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   471
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::Association, std::allocator< ns3::olsr::Association > >', u'ns3::olsr::Associations')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   472
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::Association, std::allocator< ns3::olsr::Association > >*', u'ns3::olsr::Associations*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   473
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::Association, std::allocator< ns3::olsr::Association > >&', u'ns3::olsr::Associations&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   474
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::IfaceAssocTuple, std::allocator< ns3::olsr::IfaceAssocTuple > >', u'ns3::olsr::IfaceAssocSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   475
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::IfaceAssocTuple, std::allocator< ns3::olsr::IfaceAssocTuple > >*', u'ns3::olsr::IfaceAssocSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   476
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::IfaceAssocTuple, std::allocator< ns3::olsr::IfaceAssocTuple > >&', u'ns3::olsr::IfaceAssocSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   477
    typehandlers.add_type_alias(u'std::set< ns3::Ipv4Address, std::less< ns3::Ipv4Address >, std::allocator< ns3::Ipv4Address > >', u'ns3::olsr::MprSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   478
    typehandlers.add_type_alias(u'std::set< ns3::Ipv4Address, std::less< ns3::Ipv4Address >, std::allocator< ns3::Ipv4Address > >*', u'ns3::olsr::MprSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   479
    typehandlers.add_type_alias(u'std::set< ns3::Ipv4Address, std::less< ns3::Ipv4Address >, std::allocator< ns3::Ipv4Address > >&', u'ns3::olsr::MprSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   480
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::TwoHopNeighborTuple, std::allocator< ns3::olsr::TwoHopNeighborTuple > >', u'ns3::olsr::TwoHopNeighborSet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   481
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::TwoHopNeighborTuple, std::allocator< ns3::olsr::TwoHopNeighborTuple > >*', u'ns3::olsr::TwoHopNeighborSet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   482
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::TwoHopNeighborTuple, std::allocator< ns3::olsr::TwoHopNeighborTuple > >&', u'ns3::olsr::TwoHopNeighborSet&')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   483
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::TopologyTuple, std::allocator< ns3::olsr::TopologyTuple > >', u'ns3::olsr::TopologySet')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   484
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::TopologyTuple, std::allocator< ns3::olsr::TopologyTuple > >*', u'ns3::olsr::TopologySet*')
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
   485
    typehandlers.add_type_alias(u'std::vector< ns3::olsr::TopologyTuple, std::allocator< ns3::olsr::TopologyTuple > >&', u'ns3::olsr::TopologySet&')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   486
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   487
def register_methods(root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   488
    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
   489
    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
   490
    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
   491
    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
   492
    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
   493
    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
   494
    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
   495
    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
   496
    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
   497
    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
   498
    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
   499
    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
   500
    register_Ns3EventId_methods(root_module, root_module['ns3::EventId'])
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   501
    register_Ns3Hasher_methods(root_module, root_module['ns3::Hasher'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   502
    register_Ns3Inet6SocketAddress_methods(root_module, root_module['ns3::Inet6SocketAddress'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   503
    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
   504
    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
   505
    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
   506
    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
   507
    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
   508
    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
   509
    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
   510
    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
   511
    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
   512
    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
   513
    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
   514
    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
   515
    register_Ns3Ipv6Address_methods(root_module, root_module['ns3::Ipv6Address'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   516
    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
   517
    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
   518
    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
   519
    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
   520
    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
   521
    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
   522
    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
   523
    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
   524
    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
   525
    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
   526
    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
   527
    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
   528
    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
   529
    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
   530
    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
   531
    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
   532
    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
   533
    register_Ns3TagBuffer_methods(root_module, root_module['ns3::TagBuffer'])
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   534
    register_Ns3TimeWithUnit_methods(root_module, root_module['ns3::TimeWithUnit'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   535
    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
   536
    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
   537
    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
   538
    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
   539
    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
   540
    register_Ns3Empty_methods(root_module, root_module['ns3::empty'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   541
    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
   542
    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
   543
    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
   544
    register_Ns3Ipv4Header_methods(root_module, root_module['ns3::Ipv4Header'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   545
    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
   546
    register_Ns3ObjectAggregateIterator_methods(root_module, root_module['ns3::Object::AggregateIterator'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   547
    register_Ns3RandomVariableStream_methods(root_module, root_module['ns3::RandomVariableStream'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   548
    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
   549
    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
   550
    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
   551
    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
   552
    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
   553
    register_Ns3SimpleRefCount__Ns3EventImpl_Ns3Empty_Ns3DefaultDeleter__lt__ns3EventImpl__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::EventImpl, ns3::empty, ns3::DefaultDeleter<ns3::EventImpl> >'])
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   554
    register_Ns3SimpleRefCount__Ns3HashImplementation_Ns3Empty_Ns3DefaultDeleter__lt__ns3HashImplementation__gt___methods(root_module, root_module['ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   555
    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
   556
    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
   557
    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
   558
    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
   559
    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
   560
    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
   561
    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
   562
    register_Ns3SocketAddressTag_methods(root_module, root_module['ns3::SocketAddressTag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   563
    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
   564
    register_Ns3SocketIpTtlTag_methods(root_module, root_module['ns3::SocketIpTtlTag'])
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   565
    register_Ns3SocketIpv6HopLimitTag_methods(root_module, root_module['ns3::SocketIpv6HopLimitTag'])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
   566
    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
   567
    register_Ns3SocketSetDontFragmentTag_methods(root_module, root_module['ns3::SocketSetDontFragmentTag'])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
   568
    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
   569
    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
   570
    register_Ns3Trailer_methods(root_module, root_module['ns3::Trailer'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   571
    register_Ns3TriangularRandomVariable_methods(root_module, root_module['ns3::TriangularRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   572
    register_Ns3UniformRandomVariable_methods(root_module, root_module['ns3::UniformRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   573
    register_Ns3WeibullRandomVariable_methods(root_module, root_module['ns3::WeibullRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   574
    register_Ns3ZetaRandomVariable_methods(root_module, root_module['ns3::ZetaRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   575
    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
   576
    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
   577
    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
   578
    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
   579
    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
   580
    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
   581
    register_Ns3CallbackValue_methods(root_module, root_module['ns3::CallbackValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   582
    register_Ns3ConstantRandomVariable_methods(root_module, root_module['ns3::ConstantRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   583
    register_Ns3DeterministicRandomVariable_methods(root_module, root_module['ns3::DeterministicRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   584
    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
   585
    register_Ns3EmptyAttributeValue_methods(root_module, root_module['ns3::EmptyAttributeValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   586
    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
   587
    register_Ns3EventImpl_methods(root_module, root_module['ns3::EventImpl'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   588
    register_Ns3ExponentialRandomVariable_methods(root_module, root_module['ns3::ExponentialRandomVariable'])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   589
    register_Ns3GammaRandomVariable_methods(root_module, root_module['ns3::GammaRandomVariable'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   590
    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
   591
    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
   592
    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
   593
    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
   594
    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
   595
    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
   596
    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
   597
    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
   598
    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
   599
    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
   600
    register_Ns3Ipv6AddressValue_methods(root_module, root_module['ns3::Ipv6AddressValue'])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   601
    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
   602
    register_Ns3Ipv6PrefixValue_methods(root_module, root_module['ns3::Ipv6PrefixValue'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   603
    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
   604
    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
   605
    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
   606
    register_Ns3Node_methods(root_module, root_module['ns3::Node'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   607
    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
   608
    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
   609
    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
   610
    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
   611
    register_Ns3Packet_methods(root_module, root_module['ns3::Packet'])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
   612
    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
   613
    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
   614
    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
   615
    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
   616
    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
   617
    register_Ns3AddressValue_methods(root_module, root_module['ns3::AddressValue'])
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   618
    register_Ns3Ipv4ListRouting_methods(root_module, root_module['ns3::Ipv4ListRouting'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   619
    register_Ns3HashImplementation_methods(root_module, root_module['ns3::Hash::Implementation'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   620
    register_Ns3HashFunctionFnv1a_methods(root_module, root_module['ns3::Hash::Function::Fnv1a'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   621
    register_Ns3HashFunctionHash32_methods(root_module, root_module['ns3::Hash::Function::Hash32'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   622
    register_Ns3HashFunctionHash64_methods(root_module, root_module['ns3::Hash::Function::Hash64'])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
   623
    register_Ns3HashFunctionMurmur3_methods(root_module, root_module['ns3::Hash::Function::Murmur3'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   624
    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
   625
    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
   626
    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
   627
    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
   628
    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
   629
    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
   630
    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
   631
    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
   632
    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
   633
    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
   634
    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
   635
    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
   636
    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
   637
    register_Ns3OlsrNeighborTuple_methods(root_module, root_module['ns3::olsr::NeighborTuple'])
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
   638
    register_Ns3OlsrOlsrState_methods(root_module, root_module['ns3::olsr::OlsrState'])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   639
    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
   640
    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
   641
    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
   642
    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
   643
    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
   644
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   645
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   646
def register_Ns3Address_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   647
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   648
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   649
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   650
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   651
    ## address.h (module 'network'): ns3::Address::Address() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   652
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   653
    ## 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
   654
    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
   655
    ## 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
   656
    cls.add_constructor([param('ns3::Address const &', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   657
    ## 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
   658
    cls.add_method('CheckCompatible', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   659
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   660
                   [param('uint8_t', 'type'), param('uint8_t', 'len')], 
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'): 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
   663
    cls.add_method('CopyAllFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   664
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   665
                   [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
   666
    ## 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
   667
    cls.add_method('CopyAllTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   668
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   669
                   [param('uint8_t *', 'buffer'), param('uint8_t', 'len')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   670
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   671
    ## 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
   672
    cls.add_method('CopyFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   673
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   674
                   [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
   675
    ## 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
   676
    cls.add_method('CopyTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   677
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   678
                   [param('uint8_t *', 'buffer')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   679
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   680
    ## 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
   681
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   682
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   683
                   [param('ns3::TagBuffer', 'buffer')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   684
    ## 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
   685
    cls.add_method('GetLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   686
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   687
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   688
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   689
    ## 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
   690
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   691
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   692
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   693
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   694
    ## 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
   695
    cls.add_method('IsInvalid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   696
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   697
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   698
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   699
    ## 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
   700
    cls.add_method('IsMatchingType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   701
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   702
                   [param('uint8_t', 'type')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   703
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   704
    ## 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
   705
    cls.add_method('Register', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   706
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   707
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   708
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   709
    ## 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
   710
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   711
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   712
                   [param('ns3::TagBuffer', 'buffer')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   713
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   714
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   715
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   716
def register_Ns3AttributeConstructionList_methods(root_module, cls):
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::AttributeConstructionList(ns3::AttributeConstructionList const & arg0) [copy constructor]
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   718
    cls.add_constructor([param('ns3::AttributeConstructionList const &', 'arg0')])
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::AttributeConstructionList() [constructor]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   720
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   721
    ## 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
   722
    cls.add_method('Add', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   723
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   724
                   [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
   725
    ## 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
   726
    cls.add_method('Begin', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   727
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   728
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   729
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   730
    ## 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
   731
    cls.add_method('End', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   732
                   'std::_List_const_iterator< ns3::AttributeConstructionList::Item >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   733
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   734
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   735
    ## 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
   736
    cls.add_method('Find', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   737
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   738
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   739
                   is_const=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   740
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   741
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   742
def register_Ns3AttributeConstructionListItem_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   743
    ## 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
   744
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
   745
    ## 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
   746
    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
   747
    ## 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
   748
    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
   749
    ## 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
   750
    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
   751
    ## 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
   752
    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
   753
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   754
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   755
def register_Ns3Buffer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   756
    ## buffer.h (module 'network'): ns3::Buffer::Buffer() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   757
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   758
    ## 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
   759
    cls.add_constructor([param('uint32_t', 'dataSize')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   760
    ## 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
   761
    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
   762
    ## 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
   763
    cls.add_constructor([param('ns3::Buffer const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   764
    ## 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
   765
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   766
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   767
                   [param('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   768
    ## 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
   769
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   770
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   771
                   [param('ns3::Buffer const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   772
    ## 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
   773
    cls.add_method('AddAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   774
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   775
                   [param('uint32_t', 'start')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   776
    ## 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
   777
    cls.add_method('Begin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   778
                   'ns3::Buffer::Iterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   779
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   780
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   781
    ## 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
   782
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   783
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   784
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   785
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   786
    ## 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
   787
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   788
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   789
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   790
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   791
    ## 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
   792
    cls.add_method('CreateFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   793
                   'ns3::Buffer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   794
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   795
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   796
    ## 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
   797
    cls.add_method('CreateFullCopy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   798
                   'ns3::Buffer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   799
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   800
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   801
    ## 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
   802
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   803
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   804
                   [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
   805
    ## 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
   806
    cls.add_method('End', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   807
                   'ns3::Buffer::Iterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   808
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   809
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   810
    ## 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
   811
    cls.add_method('GetCurrentEndOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   812
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   813
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   814
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   815
    ## 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
   816
    cls.add_method('GetCurrentStartOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   817
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   818
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   819
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   820
    ## 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
   821
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   822
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   823
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   824
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   825
    ## 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
   826
    cls.add_method('GetSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   827
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   828
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   829
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   830
    ## 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
   831
    cls.add_method('PeekData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   832
                   'uint8_t const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   833
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   834
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   835
    ## 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
   836
    cls.add_method('RemoveAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   837
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   838
                   [param('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   839
    ## 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
   840
    cls.add_method('RemoveAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   841
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   842
                   [param('uint32_t', 'start')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   843
    ## 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
   844
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   845
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   846
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   847
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   848
    return
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
def register_Ns3BufferIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   851
    ## 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
   852
    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
   853
    ## 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
   854
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   855
    ## 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
   856
    cls.add_method('CalculateIpChecksum', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   857
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   858
                   [param('uint16_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   859
    ## 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
   860
    cls.add_method('CalculateIpChecksum', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   861
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   862
                   [param('uint16_t', 'size'), param('uint32_t', 'initialChecksum')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   863
    ## 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
   864
    cls.add_method('GetDistanceFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   865
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   866
                   [param('ns3::Buffer::Iterator const &', 'o')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   867
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   868
    ## 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
   869
    cls.add_method('GetSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   870
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   871
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   872
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   873
    ## 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
   874
    cls.add_method('IsEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   875
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   876
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   877
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   878
    ## 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
   879
    cls.add_method('IsStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   880
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   881
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   882
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   883
    ## 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
   884
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   885
                   'void', 
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'): 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
   888
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   889
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   890
                   [param('uint32_t', 'delta')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   891
    ## buffer.h (module 'network'): uint8_t ns3::Buffer::Iterator::PeekU8() [member function]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   892
    cls.add_method('PeekU8', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   893
                   'uint8_t', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   894
                   [])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   895
    ## 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
   896
    cls.add_method('Prev', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   897
                   'void', 
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'): 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
   900
    cls.add_method('Prev', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   901
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   902
                   [param('uint32_t', 'delta')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   903
    ## 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
   904
    cls.add_method('Read', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   905
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   906
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   907
    ## buffer.h (module 'network'): void ns3::Buffer::Iterator::Read(ns3::Buffer::Iterator start, uint32_t size) [member function]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   908
    cls.add_method('Read', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   909
                   'void', 
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
   910
                   [param('ns3::Buffer::Iterator', 'start'), param('uint32_t', 'size')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   911
    ## 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
   912
    cls.add_method('ReadLsbtohU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   913
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   914
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   915
    ## 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
   916
    cls.add_method('ReadLsbtohU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   917
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   918
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   919
    ## 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
   920
    cls.add_method('ReadLsbtohU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   921
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   922
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   923
    ## 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
   924
    cls.add_method('ReadNtohU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   925
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   926
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   927
    ## 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
   928
    cls.add_method('ReadNtohU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   929
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   930
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   931
    ## 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
   932
    cls.add_method('ReadNtohU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   933
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   934
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   935
    ## 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
   936
    cls.add_method('ReadU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   937
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   938
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   939
    ## 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
   940
    cls.add_method('ReadU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   941
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   942
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   943
    ## 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
   944
    cls.add_method('ReadU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   945
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   946
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   947
    ## 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
   948
    cls.add_method('ReadU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   949
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   950
                   [])
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::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
   952
    cls.add_method('Write', 
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('uint8_t const *', 'buffer'), param('uint32_t', 'size')])
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::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
   956
    cls.add_method('Write', 
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('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
   959
    ## 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
   960
    cls.add_method('WriteHtolsbU16', 
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('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   963
    ## 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
   964
    cls.add_method('WriteHtolsbU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   965
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   966
                   [param('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   967
    ## 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
   968
    cls.add_method('WriteHtolsbU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   969
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   970
                   [param('uint64_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   971
    ## 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
   972
    cls.add_method('WriteHtonU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   973
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   974
                   [param('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   975
    ## 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
   976
    cls.add_method('WriteHtonU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   977
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   978
                   [param('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   979
    ## 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
   980
    cls.add_method('WriteHtonU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   981
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   982
                   [param('uint64_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   983
    ## 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
   984
    cls.add_method('WriteU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   985
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   986
                   [param('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   987
    ## 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
   988
    cls.add_method('WriteU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   989
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   990
                   [param('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   991
    ## 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
   992
    cls.add_method('WriteU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   993
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   994
                   [param('uint64_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   995
    ## 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
   996
    cls.add_method('WriteU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   997
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   998
                   [param('uint8_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
   999
    ## 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
  1000
    cls.add_method('WriteU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1001
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1002
                   [param('uint8_t', 'data'), param('uint32_t', 'len')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1003
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1004
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1005
def register_Ns3ByteTagIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1006
    ## 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
  1007
    cls.add_constructor([param('ns3::ByteTagIterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1008
    ## 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
  1009
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1010
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1011
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1012
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1013
    ## 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
  1014
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1015
                   'ns3::ByteTagIterator::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1016
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1017
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1018
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1019
def register_Ns3ByteTagIteratorItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1020
    ## 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
  1021
    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
  1022
    ## 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
  1023
    cls.add_method('GetEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1024
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1025
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1026
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1027
    ## 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
  1028
    cls.add_method('GetStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1029
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1030
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1031
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1032
    ## 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
  1033
    cls.add_method('GetTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1034
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1035
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1036
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1037
    ## 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
  1038
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1039
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1040
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1041
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1042
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1043
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1044
def register_Ns3ByteTagList_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1045
    ## 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
  1046
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1047
    ## 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
  1048
    cls.add_constructor([param('ns3::ByteTagList const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1049
    ## 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
  1050
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1051
                   'ns3::TagBuffer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1052
                   [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
  1053
    ## 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
  1054
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1055
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1056
                   [param('ns3::ByteTagList const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1057
    ## 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
  1058
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1059
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1060
                   [param('int32_t', 'adjustment'), param('int32_t', 'appendOffset')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1061
    ## 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
  1062
    cls.add_method('AddAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1063
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1064
                   [param('int32_t', 'adjustment'), param('int32_t', 'prependOffset')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1065
    ## 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
  1066
    cls.add_method('Begin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1067
                   'ns3::ByteTagList::Iterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1068
                   [param('int32_t', 'offsetStart'), param('int32_t', 'offsetEnd')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1069
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1070
    ## 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
  1071
    cls.add_method('RemoveAll', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1072
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1073
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1074
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1075
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1076
def register_Ns3ByteTagListIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1077
    ## 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
  1078
    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
  1079
    ## 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
  1080
    cls.add_method('GetOffsetStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1081
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1082
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1083
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1084
    ## 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
  1085
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1086
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1087
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1088
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1089
    ## 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
  1090
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1091
                   'ns3::ByteTagList::Iterator::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1092
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1093
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1094
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1095
def register_Ns3ByteTagListIteratorItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1096
    ## 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
  1097
    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
  1098
    ## 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
  1099
    cls.add_constructor([param('ns3::TagBuffer', 'buf')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1100
    ## 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
  1101
    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
  1102
    ## 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
  1103
    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
  1104
    ## 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
  1105
    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
  1106
    ## 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
  1107
    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
  1108
    ## 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
  1109
    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
  1110
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1111
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1112
def register_Ns3CallbackBase_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1113
    ## 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
  1114
    cls.add_constructor([param('ns3::CallbackBase const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1115
    ## callback.h (module 'core'): ns3::CallbackBase::CallbackBase() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1116
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1117
    ## 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
  1118
    cls.add_method('GetImpl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1119
                   'ns3::Ptr< ns3::CallbackImplBase >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1120
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1121
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1122
    ## 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
  1123
    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
  1124
                        visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1125
    ## 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
  1126
    cls.add_method('Demangle', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1127
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1128
                   [param('std::string const &', 'mangled')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1129
                   is_static=True, visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1130
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1131
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1132
def register_Ns3EventGarbageCollector_methods(root_module, cls):
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1133
    ## 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
  1134
    cls.add_constructor([param('ns3::EventGarbageCollector const &', 'arg0')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1135
    ## event-garbage-collector.h (module 'core'): ns3::EventGarbageCollector::EventGarbageCollector() [constructor]
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1136
    cls.add_constructor([])
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  1137
    ## 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
  1138
    cls.add_method('Track', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1139
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1140
                   [param('ns3::EventId', 'event')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1141
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1142
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1143
def register_Ns3EventId_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1144
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1145
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1146
    ## 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
  1147
    cls.add_constructor([param('ns3::EventId const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1148
    ## 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
  1149
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1150
    ## 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
  1151
    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
  1152
    ## 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
  1153
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1154
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1155
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1156
    ## 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
  1157
    cls.add_method('GetContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1158
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1159
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1160
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1161
    ## 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
  1162
    cls.add_method('GetTs', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1163
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1164
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1165
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1166
    ## 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
  1167
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1168
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1169
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1170
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1171
    ## 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
  1172
    cls.add_method('IsExpired', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1173
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1174
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1175
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1176
    ## 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
  1177
    cls.add_method('IsRunning', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1178
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1179
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1180
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1181
    ## 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
  1182
    cls.add_method('PeekEventImpl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1183
                   'ns3::EventImpl *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1184
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1185
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1186
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1187
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1188
def register_Ns3Hasher_methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1189
    ## hash.h (module 'core'): ns3::Hasher::Hasher(ns3::Hasher const & arg0) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1190
    cls.add_constructor([param('ns3::Hasher const &', 'arg0')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1191
    ## hash.h (module 'core'): ns3::Hasher::Hasher() [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1192
    cls.add_constructor([])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1193
    ## hash.h (module 'core'): ns3::Hasher::Hasher(ns3::Ptr<ns3::Hash::Implementation> hp) [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1194
    cls.add_constructor([param('ns3::Ptr< ns3::Hash::Implementation >', 'hp')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1195
    ## hash.h (module 'core'): uint32_t ns3::Hasher::GetHash32(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1196
    cls.add_method('GetHash32', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1197
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1198
                   [param('char const *', 'buffer'), param('size_t const', 'size')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1199
    ## hash.h (module 'core'): uint32_t ns3::Hasher::GetHash32(std::string const s) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1200
    cls.add_method('GetHash32', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1201
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1202
                   [param('std::string const', 's')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1203
    ## hash.h (module 'core'): uint64_t ns3::Hasher::GetHash64(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1204
    cls.add_method('GetHash64', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1205
                   'uint64_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1206
                   [param('char const *', 'buffer'), param('size_t const', 'size')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1207
    ## hash.h (module 'core'): uint64_t ns3::Hasher::GetHash64(std::string const s) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1208
    cls.add_method('GetHash64', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1209
                   'uint64_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1210
                   [param('std::string const', 's')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1211
    ## hash.h (module 'core'): ns3::Hasher & ns3::Hasher::clear() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1212
    cls.add_method('clear', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1213
                   'ns3::Hasher &', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1214
                   [])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1215
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1216
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1217
def register_Ns3Inet6SocketAddress_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1218
    ## 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
  1219
    cls.add_constructor([param('ns3::Inet6SocketAddress const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1220
    ## 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
  1221
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1222
    ## 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
  1223
    cls.add_constructor([param('ns3::Ipv6Address', 'ipv6')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1224
    ## 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
  1225
    cls.add_constructor([param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1226
    ## 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
  1227
    cls.add_constructor([param('char const *', 'ipv6'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1228
    ## 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
  1229
    cls.add_constructor([param('char const *', 'ipv6')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1230
    ## 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
  1231
    cls.add_method('ConvertFrom', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1232
                   'ns3::Inet6SocketAddress', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1233
                   [param('ns3::Address const &', 'addr')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1234
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1235
    ## 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
  1236
    cls.add_method('GetIpv6', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1237
                   'ns3::Ipv6Address', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1238
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1239
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1240
    ## 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
  1241
    cls.add_method('GetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1242
                   'uint16_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1243
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1244
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1245
    ## 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
  1246
    cls.add_method('IsMatchingType', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1247
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1248
                   [param('ns3::Address const &', 'addr')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1249
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1250
    ## 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
  1251
    cls.add_method('SetIpv6', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1252
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1253
                   [param('ns3::Ipv6Address', 'ipv6')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1254
    ## 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
  1255
    cls.add_method('SetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1256
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1257
                   [param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1258
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1259
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1260
def register_Ns3InetSocketAddress_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1261
    ## 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
  1262
    cls.add_constructor([param('ns3::InetSocketAddress const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1263
    ## 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
  1264
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1265
    ## 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
  1266
    cls.add_constructor([param('ns3::Ipv4Address', 'ipv4')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1267
    ## 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
  1268
    cls.add_constructor([param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1269
    ## 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
  1270
    cls.add_constructor([param('char const *', 'ipv4'), param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1271
    ## 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
  1272
    cls.add_constructor([param('char const *', 'ipv4')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1273
    ## 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
  1274
    cls.add_method('ConvertFrom', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1275
                   'ns3::InetSocketAddress', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1276
                   [param('ns3::Address const &', 'address')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1277
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1278
    ## 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
  1279
    cls.add_method('GetIpv4', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1280
                   'ns3::Ipv4Address', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1281
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1282
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1283
    ## 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
  1284
    cls.add_method('GetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1285
                   'uint16_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1286
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1287
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1288
    ## 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
  1289
    cls.add_method('IsMatchingType', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1290
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1291
                   [param('ns3::Address const &', 'address')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1292
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1293
    ## 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
  1294
    cls.add_method('SetIpv4', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1295
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1296
                   [param('ns3::Ipv4Address', 'address')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1297
    ## 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
  1298
    cls.add_method('SetPort', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1299
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1300
                   [param('uint16_t', 'port')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1301
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  1302
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1303
def register_Ns3IntToType__0_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1304
    ## 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
  1305
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1306
    ## 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
  1307
    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
  1308
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1309
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1310
def register_Ns3IntToType__1_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1311
    ## 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
  1312
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1313
    ## 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
  1314
    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
  1315
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1316
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1317
def register_Ns3IntToType__2_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1318
    ## 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
  1319
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1320
    ## 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
  1321
    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
  1322
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1323
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1324
def register_Ns3IntToType__3_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1325
    ## 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
  1326
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1327
    ## 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
  1328
    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
  1329
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1330
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1331
def register_Ns3IntToType__4_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1332
    ## 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
  1333
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1334
    ## 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
  1335
    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
  1336
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1337
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1338
def register_Ns3IntToType__5_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1339
    ## 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
  1340
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1341
    ## 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
  1342
    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
  1343
    return
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
def register_Ns3IntToType__6_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1346
    ## 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
  1347
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1348
    ## 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
  1349
    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
  1350
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1351
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1352
def register_Ns3Ipv4Address_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1353
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1354
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1355
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1356
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1357
    ## 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
  1358
    cls.add_constructor([param('ns3::Ipv4Address const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1359
    ## 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
  1360
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1361
    ## 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
  1362
    cls.add_constructor([param('uint32_t', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1363
    ## 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
  1364
    cls.add_constructor([param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1365
    ## 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
  1366
    cls.add_method('CombineMask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1367
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1368
                   [param('ns3::Ipv4Mask const &', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1369
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1370
    ## 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
  1371
    cls.add_method('ConvertFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1372
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1373
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1374
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1375
    ## 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
  1376
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1377
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1378
                   [param('uint8_t const *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1379
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1380
    ## 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
  1381
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1382
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1383
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1384
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1385
    ## 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
  1386
    cls.add_method('GetAny', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1387
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1388
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1389
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1390
    ## 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
  1391
    cls.add_method('GetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1392
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1393
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1394
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1395
    ## 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
  1396
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1397
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1398
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1399
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1400
    ## 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
  1401
    cls.add_method('GetSubnetDirectedBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1402
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1403
                   [param('ns3::Ipv4Mask const &', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1404
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1405
    ## 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
  1406
    cls.add_method('GetZero', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1407
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1408
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1409
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1410
    ## 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
  1411
    cls.add_method('IsBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1412
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1413
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1414
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1415
    ## 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
  1416
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1417
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1418
                   [param('ns3::Ipv4Address const &', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1419
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1420
    ## 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
  1421
    cls.add_method('IsLocalMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1422
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1423
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1424
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1425
    ## 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
  1426
    cls.add_method('IsMatchingType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1427
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1428
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1429
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1430
    ## 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
  1431
    cls.add_method('IsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1432
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1433
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1434
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1435
    ## 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
  1436
    cls.add_method('IsSubnetDirectedBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1437
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1438
                   [param('ns3::Ipv4Mask const &', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1439
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1440
    ## 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
  1441
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1442
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1443
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1444
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1445
    ## 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
  1446
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1447
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1448
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1449
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1450
    ## 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
  1451
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1452
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1453
                   [param('uint32_t', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1454
    ## 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
  1455
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1456
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1457
                   [param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1458
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1459
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1460
def register_Ns3Ipv4InterfaceAddress_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1461
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1462
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1463
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1464
    ## 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
  1465
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1466
    ## 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
  1467
    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
  1468
    ## 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
  1469
    cls.add_constructor([param('ns3::Ipv4InterfaceAddress const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1470
    ## 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
  1471
    cls.add_method('GetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1472
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1473
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1474
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1475
    ## 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
  1476
    cls.add_method('GetLocal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1477
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1478
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1479
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1480
    ## 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
  1481
    cls.add_method('GetMask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1482
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1483
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1484
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1485
    ## 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
  1486
    cls.add_method('GetScope', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1487
                   'ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1488
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1489
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1490
    ## 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
  1491
    cls.add_method('IsSecondary', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1492
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1493
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1494
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1495
    ## 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
  1496
    cls.add_method('SetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1497
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1498
                   [param('ns3::Ipv4Address', 'broadcast')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1499
    ## 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
  1500
    cls.add_method('SetLocal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1501
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1502
                   [param('ns3::Ipv4Address', 'local')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1503
    ## 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
  1504
    cls.add_method('SetMask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1505
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1506
                   [param('ns3::Ipv4Mask', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1507
    ## 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
  1508
    cls.add_method('SetPrimary', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1509
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1510
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1511
    ## 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
  1512
    cls.add_method('SetScope', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1513
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1514
                   [param('ns3::Ipv4InterfaceAddress::InterfaceAddressScope_e', 'scope')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1515
    ## 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
  1516
    cls.add_method('SetSecondary', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1517
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1518
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1519
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1520
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1521
def register_Ns3Ipv4Mask_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1522
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1523
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1524
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1525
    ## 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
  1526
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1527
    ## 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
  1528
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1529
    ## 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
  1530
    cls.add_constructor([param('uint32_t', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1531
    ## 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
  1532
    cls.add_constructor([param('char const *', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1533
    ## 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
  1534
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1535
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1536
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1537
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1538
    ## 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
  1539
    cls.add_method('GetInverse', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1540
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1541
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1542
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1543
    ## 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
  1544
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1545
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1546
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1547
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1548
    ## 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
  1549
    cls.add_method('GetOnes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1550
                   'ns3::Ipv4Mask', 
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
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1553
    ## 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
  1554
    cls.add_method('GetPrefixLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1555
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1556
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1557
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1558
    ## 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
  1559
    cls.add_method('GetZero', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1560
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1561
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1562
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1563
    ## 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
  1564
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1565
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1566
                   [param('ns3::Ipv4Mask', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1567
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1568
    ## 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
  1569
    cls.add_method('IsMatch', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1570
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1571
                   [param('ns3::Ipv4Address', 'a'), param('ns3::Ipv4Address', 'b')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1572
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1573
    ## 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
  1574
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1575
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1576
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1577
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1578
    ## 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
  1579
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1580
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1581
                   [param('uint32_t', 'mask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1582
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1583
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1584
def register_Ns3Ipv4RoutingHelper_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1585
    ## 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
  1586
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1587
    ## 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
  1588
    cls.add_constructor([param('ns3::Ipv4RoutingHelper const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1589
    ## 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
  1590
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1591
                   'ns3::Ipv4RoutingHelper *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1592
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1593
                   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
  1594
    ## 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
  1595
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1596
                   'ns3::Ptr< ns3::Ipv4RoutingProtocol >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1597
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1598
                   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
  1599
    ## 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
  1600
    cls.add_method('PrintRoutingTableAllAt', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1601
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1602
                   [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
  1603
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1604
    ## 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
  1605
    cls.add_method('PrintRoutingTableAllEvery', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1606
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1607
                   [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
  1608
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1609
    ## 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
  1610
    cls.add_method('PrintRoutingTableAt', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1611
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1612
                   [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
  1613
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1614
    ## 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
  1615
    cls.add_method('PrintRoutingTableEvery', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1616
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1617
                   [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
  1618
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1619
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1620
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1621
def register_Ns3Ipv6Address_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1622
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1623
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1624
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1625
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1626
    ## 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
  1627
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1628
    ## 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
  1629
    cls.add_constructor([param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1630
    ## 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
  1631
    cls.add_constructor([param('uint8_t *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1632
    ## 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
  1633
    cls.add_constructor([param('ns3::Ipv6Address const &', 'addr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1634
    ## 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
  1635
    cls.add_constructor([param('ns3::Ipv6Address const *', 'addr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1636
    ## 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
  1637
    cls.add_method('CombinePrefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1638
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1639
                   [param('ns3::Ipv6Prefix const &', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1640
    ## 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
  1641
    cls.add_method('ConvertFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1642
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1643
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1644
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1645
    ## 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
  1646
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1647
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1648
                   [param('uint8_t const *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1649
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1650
    ## 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
  1651
    cls.add_method('GetAllHostsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1652
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1653
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1654
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1655
    ## 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
  1656
    cls.add_method('GetAllNodesMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1657
                   'ns3::Ipv6Address', 
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_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1660
    ## 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
  1661
    cls.add_method('GetAllRoutersMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1662
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1663
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1664
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1665
    ## 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
  1666
    cls.add_method('GetAny', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1667
                   'ns3::Ipv6Address', 
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_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1670
    ## 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
  1671
    cls.add_method('GetBytes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1672
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1673
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1674
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1675
    ## 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
  1676
    cls.add_method('GetIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1677
                   'ns3::Ipv4Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1678
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1679
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1680
    ## 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
  1681
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1682
                   'ns3::Ipv6Address', 
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_static=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::GetOnes() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1686
    cls.add_method('GetOnes', 
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
                   [], 
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::GetZero() [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1691
    cls.add_method('GetZero', 
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
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1694
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1695
    ## 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
  1696
    cls.add_method('IsAllHostsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1697
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1698
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1699
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1700
    ## 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
  1701
    cls.add_method('IsAllNodesMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1702
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1703
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1704
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1705
    ## 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
  1706
    cls.add_method('IsAllRoutersMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1707
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1708
                   [], 
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'): bool ns3::Ipv6Address::IsAny() const [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1711
    cls.add_method('IsAny', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1712
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1713
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1714
                   is_const=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1715
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsDocumentation() const [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1716
    cls.add_method('IsDocumentation', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1717
                   'bool', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1718
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1719
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1720
    ## 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
  1721
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1722
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1723
                   [param('ns3::Ipv6Address const &', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1724
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  1725
    ## ipv6-address.h (module 'network'): bool ns3::Ipv6Address::IsIpv4MappedAddress() const [member function]
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1726
    cls.add_method('IsIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1727
                   'bool', 
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  1728
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  1729
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1730
    ## 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
  1731
    cls.add_method('IsLinkLocal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1732
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1733
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1734
                   is_const=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1735
    ## 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
  1736
    cls.add_method('IsLinkLocalMulticast', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1737
                   'bool', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1738
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1739
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1740
    ## 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
  1741
    cls.add_method('IsLocalhost', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1742
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1743
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1744
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1745
    ## 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
  1746
    cls.add_method('IsMatchingType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1747
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1748
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1749
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1750
    ## 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
  1751
    cls.add_method('IsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1752
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1753
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1754
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1755
    ## 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
  1756
    cls.add_method('IsSolicitedMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1757
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1758
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1759
                   is_const=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1760
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac16Address addr, ns3::Ipv6Address prefix) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1761
    cls.add_method('MakeAutoconfiguredAddress', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1762
                   'ns3::Ipv6Address', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1763
                   [param('ns3::Mac16Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1764
                   is_static=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1765
    ## 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
  1766
    cls.add_method('MakeAutoconfiguredAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1767
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1768
                   [param('ns3::Mac48Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1769
                   is_static=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1770
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredAddress(ns3::Mac64Address addr, ns3::Ipv6Address prefix) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1771
    cls.add_method('MakeAutoconfiguredAddress', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1772
                   'ns3::Ipv6Address', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1773
                   [param('ns3::Mac64Address', 'addr'), param('ns3::Ipv6Address', 'prefix')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1774
                   is_static=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1775
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac16Address mac) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1776
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1777
                   'ns3::Ipv6Address', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1778
                   [param('ns3::Mac16Address', 'mac')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1779
                   is_static=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1780
    ## 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
  1781
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1782
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1783
                   [param('ns3::Mac48Address', 'mac')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1784
                   is_static=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1785
    ## ipv6-address.h (module 'network'): static ns3::Ipv6Address ns3::Ipv6Address::MakeAutoconfiguredLinkLocalAddress(ns3::Mac64Address mac) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1786
    cls.add_method('MakeAutoconfiguredLinkLocalAddress', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1787
                   'ns3::Ipv6Address', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1788
                   [param('ns3::Mac64Address', 'mac')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  1789
                   is_static=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1790
    ## 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
  1791
    cls.add_method('MakeIpv4MappedAddress', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1792
                   'ns3::Ipv6Address', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1793
                   [param('ns3::Ipv4Address', 'addr')], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  1794
                   is_static=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1795
    ## 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
  1796
    cls.add_method('MakeSolicitedAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1797
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1798
                   [param('ns3::Ipv6Address', 'addr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1799
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1800
    ## 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
  1801
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1802
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1803
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1804
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1805
    ## 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
  1806
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1807
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1808
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1809
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1810
    ## 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
  1811
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1812
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1813
                   [param('char const *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1814
    ## 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
  1815
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1816
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1817
                   [param('uint8_t *', 'address')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1818
    return
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
def register_Ns3Ipv6Prefix_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1821
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1822
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1823
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1824
    ## 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
  1825
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1826
    ## 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
  1827
    cls.add_constructor([param('uint8_t *', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1828
    ## 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
  1829
    cls.add_constructor([param('char const *', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1830
    ## 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
  1831
    cls.add_constructor([param('uint8_t', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1832
    ## 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
  1833
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1834
    ## 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
  1835
    cls.add_constructor([param('ns3::Ipv6Prefix const *', 'prefix')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1836
    ## 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
  1837
    cls.add_method('GetBytes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1838
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1839
                   [param('uint8_t *', 'buf')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1840
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1841
    ## 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
  1842
    cls.add_method('GetLoopback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1843
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1844
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1845
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1846
    ## 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
  1847
    cls.add_method('GetOnes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1848
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1849
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1850
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1851
    ## 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
  1852
    cls.add_method('GetPrefixLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1853
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1854
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1855
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1856
    ## 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
  1857
    cls.add_method('GetZero', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1858
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1859
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1860
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1861
    ## 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
  1862
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1863
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1864
                   [param('ns3::Ipv6Prefix const &', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1865
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1866
    ## 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
  1867
    cls.add_method('IsMatch', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1868
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1869
                   [param('ns3::Ipv6Address', 'a'), param('ns3::Ipv6Address', 'b')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1870
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1871
    ## 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
  1872
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1873
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1874
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1875
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1876
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1877
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1878
def register_Ns3NodeContainer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1879
    ## 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
  1880
    cls.add_constructor([param('ns3::NodeContainer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1881
    ## 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
  1882
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1883
    ## 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
  1884
    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
  1885
    ## 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
  1886
    cls.add_constructor([param('std::string', 'nodeName')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1887
    ## 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
  1888
    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
  1889
    ## 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
  1890
    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
  1891
    ## 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
  1892
    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
  1893
    ## 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
  1894
    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
  1895
    ## 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
  1896
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1897
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1898
                   [param('ns3::NodeContainer', 'other')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1899
    ## 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
  1900
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1901
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1902
                   [param('ns3::Ptr< ns3::Node >', 'node')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1903
    ## 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
  1904
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1905
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1906
                   [param('std::string', 'nodeName')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1907
    ## 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
  1908
    cls.add_method('Begin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1909
                   '__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
  1910
                   [], 
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
    ## 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
  1913
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1914
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1915
                   [param('uint32_t', 'n')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1916
    ## 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
  1917
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1918
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1919
                   [param('uint32_t', 'n'), param('uint32_t', 'systemId')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1920
    ## 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
  1921
    cls.add_method('End', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1922
                   '__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
  1923
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1924
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1925
    ## 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
  1926
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1927
                   'ns3::Ptr< ns3::Node >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1928
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1929
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1930
    ## 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
  1931
    cls.add_method('GetGlobal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1932
                   'ns3::NodeContainer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1933
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1934
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1935
    ## 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
  1936
    cls.add_method('GetN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1937
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1938
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1939
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1940
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1941
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1942
def register_Ns3ObjectBase_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1943
    ## 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
  1944
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1945
    ## 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
  1946
    cls.add_constructor([param('ns3::ObjectBase const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1947
    ## 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
  1948
    cls.add_method('GetAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1949
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1950
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'value')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1951
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1952
    ## 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
  1953
    cls.add_method('GetAttributeFailSafe', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1954
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1955
                   [param('std::string', 'name'), param('ns3::AttributeValue &', 'attribute')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1956
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1957
    ## 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
  1958
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1959
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1960
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1961
                   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
  1962
    ## 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
  1963
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1964
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1965
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1966
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1967
    ## 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
  1968
    cls.add_method('SetAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1969
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1970
                   [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
  1971
    ## 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
  1972
    cls.add_method('SetAttributeFailSafe', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1973
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1974
                   [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
  1975
    ## 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
  1976
    cls.add_method('TraceConnect', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1977
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1978
                   [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
  1979
    ## 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
  1980
    cls.add_method('TraceConnectWithoutContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1981
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1982
                   [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
  1983
    ## 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
  1984
    cls.add_method('TraceDisconnect', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1985
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1986
                   [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
  1987
    ## 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
  1988
    cls.add_method('TraceDisconnectWithoutContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1989
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1990
                   [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
  1991
    ## 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
  1992
    cls.add_method('ConstructSelf', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1993
                   'void', 
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  1994
                   [param('ns3::AttributeConstructionList const &', 'attributes')], 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1995
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1996
    ## 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
  1997
    cls.add_method('NotifyConstructionCompleted', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1998
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  1999
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2000
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2001
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2002
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2003
def register_Ns3ObjectDeleter_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2004
    ## object.h (module 'core'): ns3::ObjectDeleter::ObjectDeleter() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2005
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2006
    ## 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
  2007
    cls.add_constructor([param('ns3::ObjectDeleter const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2008
    ## 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
  2009
    cls.add_method('Delete', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2010
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2011
                   [param('ns3::Object *', 'object')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2012
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2013
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2014
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2015
def register_Ns3ObjectFactory_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2016
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2017
    ## 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
  2018
    cls.add_constructor([param('ns3::ObjectFactory const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2019
    ## 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
  2020
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2021
    ## 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
  2022
    cls.add_constructor([param('std::string', 'typeId')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2023
    ## 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
  2024
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2025
                   'ns3::Ptr< ns3::Object >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2026
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2027
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2028
    ## 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
  2029
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2030
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2031
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2032
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2033
    ## 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
  2034
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2035
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2036
                   [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
  2037
    ## 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
  2038
    cls.add_method('SetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2039
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2040
                   [param('ns3::TypeId', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2041
    ## 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
  2042
    cls.add_method('SetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2043
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2044
                   [param('char const *', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2045
    ## 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
  2046
    cls.add_method('SetTypeId', 
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('std::string', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2049
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2050
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2051
def register_Ns3OlsrHelper_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2052
    ## 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
  2053
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2054
    ## 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
  2055
    cls.add_constructor([param('ns3::OlsrHelper const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2056
    ## 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
  2057
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2058
                   'ns3::OlsrHelper *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2059
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2060
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2061
    ## 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
  2062
    cls.add_method('ExcludeInterface', 
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::Ptr< ns3::Node >', 'node'), param('uint32_t', 'interface')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2065
    ## 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
  2066
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2067
                   'ns3::Ptr< ns3::Ipv4RoutingProtocol >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2068
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2069
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2070
    ## 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
  2071
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2072
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2073
                   [param('std::string', 'name'), param('ns3::AttributeValue const &', 'value')])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  2074
    ## 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
  2075
    cls.add_method('AssignStreams', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  2076
                   'int64_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  2077
                   [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
  2078
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2079
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2080
def register_Ns3PacketMetadata_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2081
    ## 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
  2082
    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
  2083
    ## 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
  2084
    cls.add_constructor([param('ns3::PacketMetadata const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2085
    ## 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
  2086
    cls.add_method('AddAtEnd', 
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::PacketMetadata const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2089
    ## 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
  2090
    cls.add_method('AddHeader', 
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::Header const &', 'header'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2093
    ## 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
  2094
    cls.add_method('AddPaddingAtEnd', 
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('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2097
    ## 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
  2098
    cls.add_method('AddTrailer', 
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::Trailer const &', 'trailer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2101
    ## 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
  2102
    cls.add_method('BeginItem', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2103
                   'ns3::PacketMetadata::ItemIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2104
                   [param('ns3::Buffer', 'buffer')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2105
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2106
    ## 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
  2107
    cls.add_method('CreateFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2108
                   'ns3::PacketMetadata', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2109
                   [param('uint32_t', 'start'), param('uint32_t', 'end')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2110
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2111
    ## 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
  2112
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2113
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2114
                   [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
  2115
    ## 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
  2116
    cls.add_method('Enable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2117
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2118
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2119
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2120
    ## 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
  2121
    cls.add_method('EnableChecking', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2122
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2123
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2124
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2125
    ## 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
  2126
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2127
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2128
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2129
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2130
    ## 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
  2131
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2132
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2133
                   [], 
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
    ## 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
  2136
    cls.add_method('RemoveAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2137
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2138
                   [param('uint32_t', 'end')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2139
    ## 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
  2140
    cls.add_method('RemoveAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2141
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2142
                   [param('uint32_t', 'start')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2143
    ## 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
  2144
    cls.add_method('RemoveHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2145
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2146
                   [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
  2147
    ## 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
  2148
    cls.add_method('RemoveTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2149
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2150
                   [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
  2151
    ## 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
  2152
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2153
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2154
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
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
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2157
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2158
def register_Ns3PacketMetadataItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2159
    ## 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
  2160
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2161
    ## 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
  2162
    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
  2163
    ## 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
  2164
    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
  2165
    ## 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
  2166
    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
  2167
    ## 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
  2168
    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
  2169
    ## 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
  2170
    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
  2171
    ## 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
  2172
    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
  2173
    ## 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
  2174
    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
  2175
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2176
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2177
def register_Ns3PacketMetadataItemIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2178
    ## 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
  2179
    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
  2180
    ## 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
  2181
    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
  2182
    ## 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
  2183
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2184
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2185
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2186
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2187
    ## 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
  2188
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2189
                   'ns3::PacketMetadata::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2190
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2191
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2192
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2193
def register_Ns3PacketTagIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2194
    ## 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
  2195
    cls.add_constructor([param('ns3::PacketTagIterator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2196
    ## 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
  2197
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2198
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2199
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2200
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2201
    ## 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
  2202
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2203
                   'ns3::PacketTagIterator::Item', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2204
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2205
    return
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
def register_Ns3PacketTagIteratorItem_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2208
    ## 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
  2209
    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
  2210
    ## 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
  2211
    cls.add_method('GetTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2212
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2213
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2214
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2215
    ## 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
  2216
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2217
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2218
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2219
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2220
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2221
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2222
def register_Ns3PacketTagList_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2223
    ## 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
  2224
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2225
    ## 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
  2226
    cls.add_constructor([param('ns3::PacketTagList const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2227
    ## 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
  2228
    cls.add_method('Add', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2229
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2230
                   [param('ns3::Tag const &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2231
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2232
    ## 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
  2233
    cls.add_method('Head', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2234
                   'ns3::PacketTagList::TagData const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2235
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2236
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2237
    ## 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
  2238
    cls.add_method('Peek', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2239
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2240
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2241
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2242
    ## 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
  2243
    cls.add_method('Remove', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2244
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2245
                   [param('ns3::Tag &', 'tag')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2246
    ## 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
  2247
    cls.add_method('RemoveAll', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2248
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2249
                   [])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  2250
    ## 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
  2251
    cls.add_method('Replace', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  2252
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  2253
                   [param('ns3::Tag &', 'tag')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2254
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2255
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2256
def register_Ns3PacketTagListTagData_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2257
    ## 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
  2258
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2259
    ## 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
  2260
    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
  2261
    ## 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
  2262
    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
  2263
    ## 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
  2264
    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
  2265
    ## 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
  2266
    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
  2267
    ## 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
  2268
    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
  2269
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2270
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2271
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
  2272
    ## 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
  2273
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2274
    ## 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
  2275
    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
  2276
    ## 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
  2277
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2278
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2279
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2280
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2281
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2282
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2283
def register_Ns3Simulator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2284
    ## 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
  2285
    cls.add_constructor([param('ns3::Simulator const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2286
    ## 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
  2287
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2288
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2289
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2290
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2291
    ## 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
  2292
    cls.add_method('Destroy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2293
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2294
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2295
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2296
    ## 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
  2297
    cls.add_method('GetContext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2298
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2299
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2300
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2301
    ## 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
  2302
    cls.add_method('GetDelayLeft', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2303
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2304
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2305
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2306
    ## 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
  2307
    cls.add_method('GetImplementation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2308
                   'ns3::Ptr< ns3::SimulatorImpl >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2309
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2310
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2311
    ## 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
  2312
    cls.add_method('GetMaximumSimulationTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2313
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2314
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2315
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2316
    ## 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
  2317
    cls.add_method('GetSystemId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2318
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2319
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2320
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2321
    ## 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
  2322
    cls.add_method('IsExpired', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2323
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2324
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2325
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2326
    ## 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
  2327
    cls.add_method('IsFinished', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2328
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2329
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2330
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2331
    ## 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
  2332
    cls.add_method('Now', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2333
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2334
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2335
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2336
    ## 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
  2337
    cls.add_method('Remove', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2338
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2339
                   [param('ns3::EventId const &', 'id')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2340
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2341
    ## 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
  2342
    cls.add_method('SetImplementation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2343
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2344
                   [param('ns3::Ptr< ns3::SimulatorImpl >', 'impl')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2345
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2346
    ## 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
  2347
    cls.add_method('SetScheduler', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2348
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2349
                   [param('ns3::ObjectFactory', 'schedulerFactory')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2350
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2351
    ## 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
  2352
    cls.add_method('Stop', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2353
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2354
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2355
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2356
    ## 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
  2357
    cls.add_method('Stop', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2358
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2359
                   [param('ns3::Time const &', 'time')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2360
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2361
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2362
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2363
def register_Ns3SystemWallClockMs_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2364
    ## 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
  2365
    cls.add_constructor([param('ns3::SystemWallClockMs const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2366
    ## 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
  2367
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2368
    ## 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
  2369
    cls.add_method('End', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2370
                   'int64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2371
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2372
    ## 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
  2373
    cls.add_method('GetElapsedReal', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2374
                   'int64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2375
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2376
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2377
    ## 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
  2378
    cls.add_method('GetElapsedSystem', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2379
                   'int64_t', 
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
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2382
    ## 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
  2383
    cls.add_method('GetElapsedUser', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2384
                   'int64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2385
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2386
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2387
    ## 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
  2388
    cls.add_method('Start', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2389
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2390
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2391
    return
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
def register_Ns3Tag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2394
    ## tag.h (module 'network'): ns3::Tag::Tag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2395
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2396
    ## 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
  2397
    cls.add_constructor([param('ns3::Tag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2398
    ## 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
  2399
    cls.add_method('Deserialize', 
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::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2402
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2403
    ## 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
  2404
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2405
                   'uint32_t', 
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_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
  2408
    ## 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
  2409
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2410
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2411
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2412
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2413
    ## 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
  2414
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2415
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2416
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2417
                   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
  2418
    ## 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
  2419
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2420
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2421
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2422
                   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
  2423
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2424
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2425
def register_Ns3TagBuffer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2426
    ## 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
  2427
    cls.add_constructor([param('ns3::TagBuffer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2428
    ## 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
  2429
    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
  2430
    ## 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
  2431
    cls.add_method('CopyFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2432
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2433
                   [param('ns3::TagBuffer', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2434
    ## 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
  2435
    cls.add_method('Read', 
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
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2438
    ## 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
  2439
    cls.add_method('ReadDouble', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2440
                   'double', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2441
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2442
    ## 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
  2443
    cls.add_method('ReadU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2444
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2445
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2446
    ## 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
  2447
    cls.add_method('ReadU32', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2448
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2449
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2450
    ## 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
  2451
    cls.add_method('ReadU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2452
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2453
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2454
    ## 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
  2455
    cls.add_method('ReadU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2456
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2457
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2458
    ## 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
  2459
    cls.add_method('TrimAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2460
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2461
                   [param('uint32_t', 'trim')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2462
    ## 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
  2463
    cls.add_method('Write', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2464
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2465
                   [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
  2466
    ## 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
  2467
    cls.add_method('WriteDouble', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2468
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2469
                   [param('double', 'v')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2470
    ## 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
  2471
    cls.add_method('WriteU16', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2472
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2473
                   [param('uint16_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2474
    ## 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
  2475
    cls.add_method('WriteU32', 
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('uint32_t', 'data')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2478
    ## 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
  2479
    cls.add_method('WriteU64', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2480
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2481
                   [param('uint64_t', 'v')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2482
    ## 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
  2483
    cls.add_method('WriteU8', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2484
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2485
                   [param('uint8_t', 'v')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2486
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2487
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2488
def register_Ns3TimeWithUnit_methods(root_module, cls):
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2489
    cls.add_output_stream_operator()
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2490
    ## nstime.h (module 'core'): ns3::TimeWithUnit::TimeWithUnit(ns3::TimeWithUnit const & arg0) [copy constructor]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2491
    cls.add_constructor([param('ns3::TimeWithUnit const &', 'arg0')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2492
    ## nstime.h (module 'core'): ns3::TimeWithUnit::TimeWithUnit(ns3::Time const time, ns3::Time::Unit const unit) [constructor]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2493
    cls.add_constructor([param('ns3::Time const', 'time'), param('ns3::Time::Unit const', 'unit')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2494
    return
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  2495
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2496
def register_Ns3Timer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2497
    ## 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
  2498
    cls.add_constructor([param('ns3::Timer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2499
    ## timer.h (module 'core'): ns3::Timer::Timer() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2500
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2501
    ## 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
  2502
    cls.add_constructor([param('ns3::Timer::DestroyPolicy', 'destroyPolicy')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2503
    ## 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
  2504
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2505
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2506
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2507
    ## 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
  2508
    cls.add_method('GetDelay', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2509
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2510
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2511
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2512
    ## 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
  2513
    cls.add_method('GetDelayLeft', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2514
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2515
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2516
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2517
    ## 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
  2518
    cls.add_method('GetState', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2519
                   'ns3::Timer::State', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2520
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2521
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2522
    ## 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
  2523
    cls.add_method('IsExpired', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2524
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2525
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2526
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2527
    ## 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
  2528
    cls.add_method('IsRunning', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2529
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2530
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2531
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2532
    ## 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
  2533
    cls.add_method('IsSuspended', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2534
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2535
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2536
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2537
    ## 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
  2538
    cls.add_method('Remove', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2539
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2540
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2541
    ## 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
  2542
    cls.add_method('Resume', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2543
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2544
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2545
    ## 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
  2546
    cls.add_method('Schedule', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2547
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2548
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2549
    ## 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
  2550
    cls.add_method('Schedule', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2551
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2552
                   [param('ns3::Time', 'delay')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2553
    ## 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
  2554
    cls.add_method('SetDelay', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2555
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2556
                   [param('ns3::Time const &', 'delay')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2557
    ## 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
  2558
    cls.add_method('Suspend', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2559
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2560
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2561
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2562
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2563
def register_Ns3TimerImpl_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2564
    ## 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
  2565
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2566
    ## 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
  2567
    cls.add_constructor([param('ns3::TimerImpl const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2568
    ## 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
  2569
    cls.add_method('Invoke', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2570
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2571
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2572
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2573
    ## 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
  2574
    cls.add_method('Schedule', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2575
                   'ns3::EventId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2576
                   [param('ns3::Time const &', 'delay')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2577
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2578
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2579
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2580
def register_Ns3TypeId_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2581
    cls.add_binary_comparison_operator('<')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2582
    cls.add_binary_comparison_operator('!=')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2583
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2584
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2585
    ## 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
  2586
    cls.add_constructor([param('char const *', 'name')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2587
    ## 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
  2588
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2589
    ## 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
  2590
    cls.add_constructor([param('ns3::TypeId const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2591
    ## 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
  2592
    cls.add_method('AddAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2593
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2594
                   [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
  2595
    ## 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
  2596
    cls.add_method('AddAttribute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2597
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2598
                   [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
  2599
    ## 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
  2600
    cls.add_method('AddTraceSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2601
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2602
                   [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
  2603
    ## 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
  2604
    cls.add_method('GetAttribute', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2605
                   'ns3::TypeId::AttributeInformation', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2606
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2607
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2608
    ## 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
  2609
    cls.add_method('GetAttributeFullName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2610
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2611
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2612
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2613
    ## 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
  2614
    cls.add_method('GetAttributeN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2615
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2616
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2617
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2618
    ## 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
  2619
    cls.add_method('GetConstructor', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2620
                   '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
  2621
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2622
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2623
    ## 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
  2624
    cls.add_method('GetGroupName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2625
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2626
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2627
                   is_const=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2628
    ## type-id.h (module 'core'): uint32_t ns3::TypeId::GetHash() const [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2629
    cls.add_method('GetHash', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2630
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2631
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2632
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2633
    ## 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
  2634
    cls.add_method('GetName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2635
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2636
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2637
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2638
    ## 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
  2639
    cls.add_method('GetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2640
                   'ns3::TypeId', 
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
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2643
    ## 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
  2644
    cls.add_method('GetRegistered', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2645
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2646
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2647
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2648
    ## 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
  2649
    cls.add_method('GetRegisteredN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2650
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2651
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2652
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2653
    ## 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
  2654
    cls.add_method('GetTraceSource', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2655
                   'ns3::TypeId::TraceSourceInformation', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2656
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2657
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2658
    ## 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
  2659
    cls.add_method('GetTraceSourceN', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2660
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2661
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2662
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2663
    ## 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
  2664
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2665
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2666
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2667
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2668
    ## 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
  2669
    cls.add_method('HasConstructor', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2670
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2671
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2672
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2673
    ## 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
  2674
    cls.add_method('HasParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2675
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2676
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2677
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2678
    ## 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
  2679
    cls.add_method('HideFromDocumentation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2680
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2681
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2682
    ## 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
  2683
    cls.add_method('IsChildOf', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2684
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2685
                   [param('ns3::TypeId', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2686
                   is_const=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2687
    ## 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
  2688
    cls.add_method('LookupAttributeByName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2689
                   'bool', 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  2690
                   [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
  2691
                   is_const=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2692
    ## type-id.h (module 'core'): static ns3::TypeId ns3::TypeId::LookupByHash(uint32_t hash) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2693
    cls.add_method('LookupByHash', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2694
                   'ns3::TypeId', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2695
                   [param('uint32_t', 'hash')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2696
                   is_static=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2697
    ## type-id.h (module 'core'): static bool ns3::TypeId::LookupByHashFailSafe(uint32_t hash, ns3::TypeId * tid) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2698
    cls.add_method('LookupByHashFailSafe', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2699
                   'bool', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2700
                   [param('uint32_t', 'hash'), param('ns3::TypeId *', 'tid')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  2701
                   is_static=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2702
    ## 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
  2703
    cls.add_method('LookupByName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2704
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2705
                   [param('std::string', 'name')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2706
                   is_static=True)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2707
    ## 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
  2708
    cls.add_method('LookupTraceSourceByName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2709
                   'ns3::Ptr< ns3::TraceSourceAccessor const >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2710
                   [param('std::string', 'name')], 
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
    ## 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
  2713
    cls.add_method('MustHideFromDocumentation', 
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)
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2717
    ## 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
  2718
    cls.add_method('SetAttributeInitialValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2719
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2720
                   [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
  2721
    ## 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
  2722
    cls.add_method('SetGroupName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2723
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2724
                   [param('std::string', 'groupName')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2725
    ## 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
  2726
    cls.add_method('SetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2727
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2728
                   [param('ns3::TypeId', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2729
    ## 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
  2730
    cls.add_method('SetUid', 
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('uint16_t', 'tid')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2733
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2734
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2735
def register_Ns3TypeIdAttributeInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2736
    ## 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
  2737
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2738
    ## 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
  2739
    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
  2740
    ## 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
  2741
    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
  2742
    ## 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
  2743
    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
  2744
    ## 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
  2745
    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
  2746
    ## 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
  2747
    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
  2748
    ## 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
  2749
    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
  2750
    ## 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
  2751
    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
  2752
    ## 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
  2753
    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
  2754
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2755
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2756
def register_Ns3TypeIdTraceSourceInformation_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2757
    ## 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
  2758
    cls.add_constructor([])
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  2759
    ## 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
  2760
    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
  2761
    ## 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
  2762
    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
  2763
    ## 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
  2764
    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
  2765
    ## 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
  2766
    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
  2767
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2768
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2769
def register_Ns3Empty_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2770
    ## empty.h (module 'core'): ns3::empty::empty() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2771
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2772
    ## 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
  2773
    cls.add_constructor([param('ns3::empty const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2774
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2775
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2776
def register_Ns3Int64x64_t_methods(root_module, cls):
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2777
    cls.add_binary_numeric_operator('*', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2778
    cls.add_binary_numeric_operator('+', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2779
    cls.add_binary_numeric_operator('-', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2780
    cls.add_unary_numeric_operator('-')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2781
    cls.add_binary_numeric_operator('/', root_module['ns3::int64x64_t'], root_module['ns3::int64x64_t'], param('ns3::int64x64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2782
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2783
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2784
    cls.add_binary_comparison_operator('!=')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2785
    cls.add_inplace_numeric_operator('*=', param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2786
    cls.add_inplace_numeric_operator('+=', param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2787
    cls.add_inplace_numeric_operator('-=', param('ns3::int64x64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  2788
    cls.add_inplace_numeric_operator('/=', param('ns3::int64x64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2789
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2790
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2791
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2792
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2793
    ## 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
  2794
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2795
    ## 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
  2796
    cls.add_constructor([param('double', 'v')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
  2797
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::int64x64_t(long double v) [constructor]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
  2798
    cls.add_constructor([param('long double', 'v')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2799
    ## 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
  2800
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2801
    ## 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
  2802
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2803
    ## 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
  2804
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2805
    ## 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
  2806
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2807
    ## 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
  2808
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2809
    ## 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
  2810
    cls.add_constructor([param('long long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2811
    ## 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
  2812
    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
  2813
    ## 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
  2814
    cls.add_constructor([param('ns3::int64x64_t const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2815
    ## 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
  2816
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2817
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2818
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2819
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2820
    ## 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
  2821
    cls.add_method('GetHigh', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2822
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2823
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2824
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2825
    ## 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
  2826
    cls.add_method('GetLow', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2827
                   'uint64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2828
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2829
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2830
    ## 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
  2831
    cls.add_method('Invert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2832
                   'ns3::int64x64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2833
                   [param('uint64_t', 'v')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2834
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2835
    ## 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
  2836
    cls.add_method('MulByInvert', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2837
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2838
                   [param('ns3::int64x64_t const &', 'o')])
10628
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
  2839
    ## int64x64-double.h (module 'core'): ns3::int64x64_t::implementation [variable]
8e7d67510b46 [Python Bindings] rescan bindings
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10564
diff changeset
  2840
    cls.add_static_attribute('implementation', 'ns3::int64x64_t::impl_type const', is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2841
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  2842
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2843
def register_Ns3Chunk_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2844
    ## chunk.h (module 'network'): ns3::Chunk::Chunk() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2845
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2846
    ## 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
  2847
    cls.add_constructor([param('ns3::Chunk const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2848
    ## 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
  2849
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2850
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2851
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2852
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2853
    ## 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
  2854
    cls.add_method('GetTypeId', 
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
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2858
    ## 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
  2859
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2860
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2861
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2862
                   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
  2863
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2864
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2865
def register_Ns3Header_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2866
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2867
    ## header.h (module 'network'): ns3::Header::Header() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2868
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2869
    ## 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
  2870
    cls.add_constructor([param('ns3::Header const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2871
    ## 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
  2872
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2873
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2874
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2875
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2876
    ## 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
  2877
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2878
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2879
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2880
                   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
  2881
    ## 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
  2882
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2883
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2884
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2885
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2886
    ## 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
  2887
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2888
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2889
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2890
                   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
  2891
    ## 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
  2892
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2893
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2894
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2895
                   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
  2896
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2897
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2898
def register_Ns3Ipv4Header_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2899
    ## 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
  2900
    cls.add_constructor([param('ns3::Ipv4Header const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2901
    ## 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
  2902
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2903
    ## 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
  2904
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2905
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2906
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2907
                   is_virtual=True)
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2908
    ## 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
  2909
    cls.add_method('DscpTypeToString', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2910
                   'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2911
                   [param('ns3::Ipv4Header::DscpType', 'dscp')], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2912
                   is_const=True)
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2913
    ## 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
  2914
    cls.add_method('EcnTypeToString', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2915
                   'std::string', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2916
                   [param('ns3::Ipv4Header::EcnType', 'ecn')], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2917
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2918
    ## 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
  2919
    cls.add_method('EnableChecksum', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2920
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2921
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2922
    ## 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
  2923
    cls.add_method('GetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2924
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2925
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2926
                   is_const=True)
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2927
    ## 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
  2928
    cls.add_method('GetDscp', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2929
                   'ns3::Ipv4Header::DscpType', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2930
                   [], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2931
                   is_const=True)
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2932
    ## 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
  2933
    cls.add_method('GetEcn', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2934
                   'ns3::Ipv4Header::EcnType', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2935
                   [], 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  2936
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2937
    ## 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
  2938
    cls.add_method('GetFragmentOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2939
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2940
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2941
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2942
    ## 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
  2943
    cls.add_method('GetIdentification', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2944
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2945
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2946
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2947
    ## 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
  2948
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2949
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2950
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2951
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2952
    ## 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
  2953
    cls.add_method('GetPayloadSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2954
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2955
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2956
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2957
    ## 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
  2958
    cls.add_method('GetProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2959
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2960
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2961
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2962
    ## 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
  2963
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2964
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2965
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2966
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2967
    ## 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
  2968
    cls.add_method('GetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2969
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2970
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2971
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2972
    ## 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
  2973
    cls.add_method('GetTos', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2974
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2975
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2976
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2977
    ## 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
  2978
    cls.add_method('GetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2979
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2980
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2981
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2982
    ## 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
  2983
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2984
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2985
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2986
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2987
    ## 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
  2988
    cls.add_method('IsChecksumOk', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2989
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2990
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2991
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2992
    ## 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
  2993
    cls.add_method('IsDontFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2994
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2995
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2996
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2997
    ## 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
  2998
    cls.add_method('IsLastFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  2999
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3000
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3001
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3002
    ## 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
  3003
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3004
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3005
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3006
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3007
    ## 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
  3008
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3009
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3010
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3011
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3012
    ## 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
  3013
    cls.add_method('SetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3014
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3015
                   [param('ns3::Ipv4Address', 'destination')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3016
    ## 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
  3017
    cls.add_method('SetDontFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3018
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3019
                   [])
7586
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3020
    ## 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
  3021
    cls.add_method('SetDscp', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3022
                   'void', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3023
                   [param('ns3::Ipv4Header::DscpType', 'dscp')])
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3024
    ## 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
  3025
    cls.add_method('SetEcn', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3026
                   'void', 
c94d841b44fb Rescanned bindings on ns-regression
watrous
parents: 7449
diff changeset
  3027
                   [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
  3028
    ## 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
  3029
    cls.add_method('SetFragmentOffset', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3030
                   'void', 
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  3031
                   [param('uint16_t', 'offsetBytes')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3032
    ## 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
  3033
    cls.add_method('SetIdentification', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3034
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3035
                   [param('uint16_t', 'identification')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3036
    ## 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
  3037
    cls.add_method('SetLastFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3038
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3039
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3040
    ## 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
  3041
    cls.add_method('SetMayFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3042
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3043
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3044
    ## 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
  3045
    cls.add_method('SetMoreFragments', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3046
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3047
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3048
    ## 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
  3049
    cls.add_method('SetPayloadSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3050
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3051
                   [param('uint16_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3052
    ## 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
  3053
    cls.add_method('SetProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3054
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3055
                   [param('uint8_t', 'num')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3056
    ## 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
  3057
    cls.add_method('SetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3058
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3059
                   [param('ns3::Ipv4Address', 'source')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3060
    ## 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
  3061
    cls.add_method('SetTos', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3062
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3063
                   [param('uint8_t', 'tos')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3064
    ## 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
  3065
    cls.add_method('SetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3066
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3067
                   [param('uint8_t', 'ttl')])
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_Ns3Object_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3071
    ## object.h (module 'core'): ns3::Object::Object() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3072
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3073
    ## 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
  3074
    cls.add_method('AggregateObject', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3075
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3076
                   [param('ns3::Ptr< ns3::Object >', 'other')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3077
    ## 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
  3078
    cls.add_method('Dispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3079
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3080
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3081
    ## 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
  3082
    cls.add_method('GetAggregateIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3083
                   'ns3::Object::AggregateIterator', 
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_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3086
    ## 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
  3087
    cls.add_method('GetInstanceTypeId', 
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_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3091
    ## 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
  3092
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3093
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3094
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3095
                   is_static=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3096
    ## object.h (module 'core'): void ns3::Object::Initialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3097
    cls.add_method('Initialize', 
6922
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
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3100
    ## 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
  3101
    cls.add_constructor([param('ns3::Object const &', 'o')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3102
                        visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3103
    ## 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
  3104
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3105
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3106
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3107
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3108
    ## object.h (module 'core'): void ns3::Object::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  3109
    cls.add_method('DoInitialize', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3110
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3111
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3112
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3113
    ## 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
  3114
    cls.add_method('NotifyNewAggregate', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3115
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3116
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3117
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3118
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3119
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3120
def register_Ns3ObjectAggregateIterator_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3121
    ## 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
  3122
    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
  3123
    ## 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
  3124
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3125
    ## 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
  3126
    cls.add_method('HasNext', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3127
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3128
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3129
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3130
    ## 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
  3131
    cls.add_method('Next', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3132
                   'ns3::Ptr< ns3::Object const >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3133
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3134
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3135
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3136
def register_Ns3RandomVariableStream_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3137
    ## 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
  3138
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3139
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3140
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3141
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3142
    ## random-variable-stream.h (module 'core'): ns3::RandomVariableStream::RandomVariableStream() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3143
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3144
    ## 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
  3145
    cls.add_method('SetStream', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3146
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3147
                   [param('int64_t', 'stream')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3148
    ## 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
  3149
    cls.add_method('GetStream', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3150
                   'int64_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3151
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3152
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3153
    ## 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
  3154
    cls.add_method('SetAntithetic', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3155
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3156
                   [param('bool', 'isAntithetic')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3157
    ## 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
  3158
    cls.add_method('IsAntithetic', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3159
                   'bool', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3160
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3161
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3162
    ## random-variable-stream.h (module 'core'): double ns3::RandomVariableStream::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3163
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3164
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3165
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3166
                   is_pure_virtual=True, is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3167
    ## 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
  3168
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3169
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3170
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3171
                   is_pure_virtual=True, is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3172
    ## 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
  3173
    cls.add_method('Peek', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3174
                   'ns3::RngStream *', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3175
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3176
                   is_const=True, visibility='protected')
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3177
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3178
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3179
def register_Ns3SequentialRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3180
    ## 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
  3181
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3182
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3183
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3184
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3185
    ## random-variable-stream.h (module 'core'): ns3::SequentialRandomVariable::SequentialRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3186
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3187
    ## 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
  3188
    cls.add_method('GetMin', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3189
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3190
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3191
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3192
    ## 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
  3193
    cls.add_method('GetMax', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3194
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3195
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3196
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3197
    ## 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
  3198
    cls.add_method('GetIncrement', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3199
                   'ns3::Ptr< ns3::RandomVariableStream >', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3200
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3201
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3202
    ## 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
  3203
    cls.add_method('GetConsecutive', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3204
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3205
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3206
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3207
    ## random-variable-stream.h (module 'core'): double ns3::SequentialRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3208
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3209
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3210
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3211
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3212
    ## 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
  3213
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3214
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3215
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3216
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3217
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  3218
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3219
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
  3220
    ## 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
  3221
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3222
    ## 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
  3223
    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
  3224
    ## 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
  3225
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3226
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3227
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3228
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3229
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3230
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3231
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
  3232
    ## 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
  3233
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3234
    ## 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
  3235
    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
  3236
    ## 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
  3237
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3238
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3239
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3240
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3241
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3242
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3243
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
  3244
    ## 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
  3245
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3246
    ## 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
  3247
    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
  3248
    ## 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
  3249
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3250
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3251
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3252
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3253
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3254
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3255
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
  3256
    ## 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
  3257
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3258
    ## 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
  3259
    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
  3260
    ## 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
  3261
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3262
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3263
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3264
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3265
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3266
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3267
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
  3268
    ## 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
  3269
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3270
    ## 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
  3271
    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
  3272
    ## 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
  3273
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3274
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3275
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3276
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3277
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3278
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3279
def register_Ns3SimpleRefCount__Ns3HashImplementation_Ns3Empty_Ns3DefaultDeleter__lt__ns3HashImplementation__gt___methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3280
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::SimpleRefCount() [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3281
    cls.add_constructor([])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3282
    ## simple-ref-count.h (module 'core'): ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::SimpleRefCount(ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> > const & o) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3283
    cls.add_constructor([param('ns3::SimpleRefCount< ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter< ns3::Hash::Implementation > > const &', 'o')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3284
    ## simple-ref-count.h (module 'core'): static void ns3::SimpleRefCount<ns3::Hash::Implementation, ns3::empty, ns3::DefaultDeleter<ns3::Hash::Implementation> >::Cleanup() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3285
    cls.add_method('Cleanup', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3286
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3287
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3288
                   is_static=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3289
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  3290
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3291
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
  3292
    ## 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
  3293
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3294
    ## 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
  3295
    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
  3296
    ## 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
  3297
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3298
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3299
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3300
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3301
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3302
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3303
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
  3304
    ## 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
  3305
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3306
    ## 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
  3307
    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
  3308
    ## 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
  3309
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3310
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3311
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3312
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3313
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3314
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3315
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
  3316
    ## 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
  3317
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3318
    ## 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
  3319
    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
  3320
    ## 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
  3321
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3322
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3323
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3324
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3325
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3326
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3327
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
  3328
    ## 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
  3329
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3330
    ## 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
  3331
    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
  3332
    ## 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
  3333
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3334
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3335
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3336
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3337
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3338
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3339
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
  3340
    ## 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
  3341
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3342
    ## 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
  3343
    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
  3344
    ## 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
  3345
    cls.add_method('Cleanup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3346
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3347
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3348
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3349
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3350
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3351
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
  3352
    ## 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
  3353
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3354
    ## 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
  3355
    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
  3356
    ## 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
  3357
    cls.add_method('Cleanup', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3358
                   'void', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3359
                   [], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3360
                   is_static=True)
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3361
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  3362
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3363
def register_Ns3Socket_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3364
    ## 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
  3365
    cls.add_constructor([param('ns3::Socket const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3366
    ## socket.h (module 'network'): ns3::Socket::Socket() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3367
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3368
    ## 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
  3369
    cls.add_method('Bind', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3370
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3371
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3372
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3373
    ## 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
  3374
    cls.add_method('Bind', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3375
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3376
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3377
                   is_pure_virtual=True, is_virtual=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3378
    ## 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
  3379
    cls.add_method('Bind6', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3380
                   'int', 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3381
                   [], 
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  3382
                   is_pure_virtual=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3383
    ## 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
  3384
    cls.add_method('BindToNetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3385
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3386
                   [param('ns3::Ptr< ns3::NetDevice >', 'netdevice')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3387
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3388
    ## 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
  3389
    cls.add_method('Close', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3390
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3391
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3392
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3393
    ## 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
  3394
    cls.add_method('Connect', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3395
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3396
                   [param('ns3::Address const &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3397
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3398
    ## 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
  3399
    cls.add_method('CreateSocket', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3400
                   'ns3::Ptr< ns3::Socket >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3401
                   [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
  3402
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3403
    ## 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
  3404
    cls.add_method('GetAllowBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3405
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3406
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3407
                   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
  3408
    ## 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
  3409
    cls.add_method('GetBoundNetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3410
                   'ns3::Ptr< ns3::NetDevice >', 
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
    ## 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
  3413
    cls.add_method('GetErrno', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3414
                   'ns3::Socket::SocketErrno', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3415
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3416
                   is_pure_virtual=True, is_const=True, is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3417
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3418
    cls.add_method('GetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3419
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3420
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3421
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3422
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3423
    cls.add_method('GetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3424
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3425
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3426
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3427
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3428
    cls.add_method('GetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3429
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3430
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3431
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3432
    ## socket.h (module 'network'): uint8_t ns3::Socket::GetIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3433
    cls.add_method('GetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3434
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3435
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3436
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3437
    ## 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
  3438
    cls.add_method('GetNode', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3439
                   'ns3::Ptr< ns3::Node >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3440
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3441
                   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
  3442
    ## 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
  3443
    cls.add_method('GetRxAvailable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3444
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3445
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3446
                   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
  3447
    ## 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
  3448
    cls.add_method('GetSockName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3449
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3450
                   [param('ns3::Address &', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3451
                   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
  3452
    ## 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
  3453
    cls.add_method('GetSocketType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3454
                   'ns3::Socket::SocketType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3455
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3456
                   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
  3457
    ## 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
  3458
    cls.add_method('GetTxAvailable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3459
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3460
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3461
                   is_pure_virtual=True, is_const=True, is_virtual=True)
7874
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3462
    ## socket.h (module 'network'): static ns3::TypeId ns3::Socket::GetTypeId() [member function]
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3463
    cls.add_method('GetTypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3464
                   'ns3::TypeId', 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3465
                   [], 
3eda7174ac52 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 7853
diff changeset
  3466
                   is_static=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3467
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3468
    cls.add_method('IsIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3469
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3470
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3471
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3472
    ## socket.h (module 'network'): bool ns3::Socket::IsIpRecvTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3473
    cls.add_method('IsIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3474
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3475
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3476
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3477
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3478
    cls.add_method('IsIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3479
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3480
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3481
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3482
    ## socket.h (module 'network'): bool ns3::Socket::IsIpv6RecvTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3483
    cls.add_method('IsIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3484
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3485
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3486
                   is_const=True)
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3487
    ## socket.h (module 'network'): bool ns3::Socket::IsRecvPktInfo() const [member function]
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3488
    cls.add_method('IsRecvPktInfo', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3489
                   'bool', 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3490
                   [], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  3491
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3492
    ## 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
  3493
    cls.add_method('Listen', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3494
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3495
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3496
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3497
    ## 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
  3498
    cls.add_method('Recv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3499
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3500
                   [param('uint32_t', 'maxSize'), param('uint32_t', 'flags')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3501
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3502
    ## 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
  3503
    cls.add_method('Recv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3504
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3505
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3506
    ## 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
  3507
    cls.add_method('Recv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3508
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3509
                   [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
  3510
    ## 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
  3511
    cls.add_method('RecvFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3512
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3513
                   [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
  3514
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3515
    ## 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
  3516
    cls.add_method('RecvFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3517
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3518
                   [param('ns3::Address &', 'fromAddress')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3519
    ## 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
  3520
    cls.add_method('RecvFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3521
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3522
                   [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
  3523
    ## 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
  3524
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3525
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3526
                   [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
  3527
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3528
    ## 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
  3529
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3530
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3531
                   [param('ns3::Ptr< ns3::Packet >', 'p')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3532
    ## 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
  3533
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3534
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3535
                   [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
  3536
    ## 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
  3537
    cls.add_method('SendTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3538
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3539
                   [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
  3540
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3541
    ## 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
  3542
    cls.add_method('SendTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3543
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3544
                   [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
  3545
    ## 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
  3546
    cls.add_method('SetAcceptCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3547
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3548
                   [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
  3549
    ## 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
  3550
    cls.add_method('SetAllowBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3551
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3552
                   [param('bool', 'allowBroadcast')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3553
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3554
    ## 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
  3555
    cls.add_method('SetCloseCallbacks', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3556
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3557
                   [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
  3558
    ## 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
  3559
    cls.add_method('SetConnectCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3560
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3561
                   [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
  3562
    ## 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
  3563
    cls.add_method('SetDataSentCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3564
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3565
                   [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
  3566
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTos(bool ipv4RecvTos) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3567
    cls.add_method('SetIpRecvTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3568
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3569
                   [param('bool', 'ipv4RecvTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3570
    ## socket.h (module 'network'): void ns3::Socket::SetIpRecvTtl(bool ipv4RecvTtl) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3571
    cls.add_method('SetIpRecvTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3572
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3573
                   [param('bool', 'ipv4RecvTtl')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3574
    ## 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
  3575
    cls.add_method('SetIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3576
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3577
                   [param('uint8_t', 'ipTos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3578
    ## 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
  3579
    cls.add_method('SetIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3580
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3581
                   [param('uint8_t', 'ipTtl')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3582
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3583
    ## 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
  3584
    cls.add_method('SetIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3585
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3586
                   [param('uint8_t', 'ipHopLimit')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3587
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3588
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvHopLimit(bool ipv6RecvHopLimit) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3589
    cls.add_method('SetIpv6RecvHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3590
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3591
                   [param('bool', 'ipv6RecvHopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3592
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6RecvTclass(bool ipv6RecvTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3593
    cls.add_method('SetIpv6RecvTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3594
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3595
                   [param('bool', 'ipv6RecvTclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3596
    ## socket.h (module 'network'): void ns3::Socket::SetIpv6Tclass(int ipTclass) [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3597
    cls.add_method('SetIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3598
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3599
                   [param('int', 'ipTclass')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3600
    ## 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
  3601
    cls.add_method('SetRecvCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3602
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3603
                   [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
  3604
    ## 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
  3605
    cls.add_method('SetRecvPktInfo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3606
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3607
                   [param('bool', 'flag')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3608
    ## 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
  3609
    cls.add_method('SetSendCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3610
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3611
                   [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
  3612
    ## 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
  3613
    cls.add_method('ShutdownRecv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3614
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3615
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3616
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3617
    ## 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
  3618
    cls.add_method('ShutdownSend', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3619
                   'int', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3620
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3621
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3622
    ## 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
  3623
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3624
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3625
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3626
                   visibility='protected', is_virtual=True)
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3627
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3628
    cls.add_method('IsManualIpTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3629
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3630
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3631
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3632
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpTtl() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3633
    cls.add_method('IsManualIpTtl', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3634
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3635
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3636
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3637
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6HopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3638
    cls.add_method('IsManualIpv6HopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3639
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3640
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3641
                   is_const=True, visibility='protected')
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3642
    ## socket.h (module 'network'): bool ns3::Socket::IsManualIpv6Tclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3643
    cls.add_method('IsManualIpv6Tclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3644
                   'bool', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3645
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3646
                   is_const=True, visibility='protected')
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3647
    ## 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
  3648
    cls.add_method('NotifyConnectionFailed', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3649
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3650
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3651
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3652
    ## 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
  3653
    cls.add_method('NotifyConnectionRequest', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3654
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3655
                   [param('ns3::Address const &', 'from')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3656
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3657
    ## 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
  3658
    cls.add_method('NotifyConnectionSucceeded', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3659
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3660
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3661
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3662
    ## 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
  3663
    cls.add_method('NotifyDataRecv', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3664
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3665
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3666
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3667
    ## 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
  3668
    cls.add_method('NotifyDataSent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3669
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3670
                   [param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3671
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3672
    ## 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
  3673
    cls.add_method('NotifyErrorClose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3674
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3675
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3676
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3677
    ## 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
  3678
    cls.add_method('NotifyNewConnectionCreated', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3679
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3680
                   [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
  3681
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3682
    ## 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
  3683
    cls.add_method('NotifyNormalClose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3684
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3685
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3686
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3687
    ## 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
  3688
    cls.add_method('NotifySend', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3689
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3690
                   [param('uint32_t', 'spaceAvailable')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3691
                   visibility='protected')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3692
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3693
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3694
def register_Ns3SocketAddressTag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3695
    ## 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
  3696
    cls.add_constructor([param('ns3::SocketAddressTag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3697
    ## socket.h (module 'network'): ns3::SocketAddressTag::SocketAddressTag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3698
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3699
    ## 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
  3700
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3701
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3702
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3703
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3704
    ## 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
  3705
    cls.add_method('GetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3706
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3707
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3708
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3709
    ## 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
  3710
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3711
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3712
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3713
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3714
    ## 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
  3715
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3716
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3717
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3718
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3719
    ## 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
  3720
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3721
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3722
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3723
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3724
    ## 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
  3725
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3726
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3727
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3728
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3729
    ## 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
  3730
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3731
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3732
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3733
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3734
    ## 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
  3735
    cls.add_method('SetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3736
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3737
                   [param('ns3::Address', 'addr')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3738
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3739
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3740
def register_Ns3SocketIpTosTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3741
    ## 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
  3742
    cls.add_constructor([param('ns3::SocketIpTosTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3743
    ## socket.h (module 'network'): ns3::SocketIpTosTag::SocketIpTosTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3744
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3745
    ## 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
  3746
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3747
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3748
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3749
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3750
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpTosTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3751
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3752
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3753
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3754
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3755
    ## socket.h (module 'network'): uint32_t ns3::SocketIpTosTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3756
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3757
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3758
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3759
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3760
    ## socket.h (module 'network'): uint8_t ns3::SocketIpTosTag::GetTos() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3761
    cls.add_method('GetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3762
                   'uint8_t', 
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'): static ns3::TypeId ns3::SocketIpTosTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3766
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3767
                   'ns3::TypeId', 
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_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3770
    ## 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
  3771
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3772
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3773
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3774
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3775
    ## 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
  3776
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3777
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3778
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3779
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3780
    ## 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
  3781
    cls.add_method('SetTos', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3782
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3783
                   [param('uint8_t', 'tos')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3784
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3785
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3786
def register_Ns3SocketIpTtlTag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3787
    ## 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
  3788
    cls.add_constructor([param('ns3::SocketIpTtlTag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3789
    ## socket.h (module 'network'): ns3::SocketIpTtlTag::SocketIpTtlTag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3790
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3791
    ## 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
  3792
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3793
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3794
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3795
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3796
    ## 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
  3797
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3798
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3799
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3800
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3801
    ## 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
  3802
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3803
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3804
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3805
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3806
    ## 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
  3807
    cls.add_method('GetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3808
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3809
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3810
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3811
    ## 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
  3812
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3813
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3814
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3815
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3816
    ## 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
  3817
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3818
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3819
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3820
                   is_const=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'): 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
  3822
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3823
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3824
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3825
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3826
    ## 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
  3827
    cls.add_method('SetTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3828
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3829
                   [param('uint8_t', 'ttl')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3830
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3831
9190
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3832
def register_Ns3SocketIpv6HopLimitTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3833
    ## 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
  3834
    cls.add_constructor([param('ns3::SocketIpv6HopLimitTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3835
    ## socket.h (module 'network'): ns3::SocketIpv6HopLimitTag::SocketIpv6HopLimitTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3836
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3837
    ## 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
  3838
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3839
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3840
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3841
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3842
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6HopLimitTag::GetHopLimit() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3843
    cls.add_method('GetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3844
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3845
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3846
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3847
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6HopLimitTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3848
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3849
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3850
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3851
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3852
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6HopLimitTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3853
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3854
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3855
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3856
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3857
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6HopLimitTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3858
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3859
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3860
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3861
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3862
    ## 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
  3863
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3864
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3865
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3866
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3867
    ## 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
  3868
    cls.add_method('Serialize', 
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('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3871
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3872
    ## 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
  3873
    cls.add_method('SetHopLimit', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3874
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3875
                   [param('uint8_t', 'hopLimit')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3876
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3877
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3878
def register_Ns3SocketIpv6TclassTag_methods(root_module, cls):
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3879
    ## 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
  3880
    cls.add_constructor([param('ns3::SocketIpv6TclassTag const &', 'arg0')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3881
    ## socket.h (module 'network'): ns3::SocketIpv6TclassTag::SocketIpv6TclassTag() [constructor]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3882
    cls.add_constructor([])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3883
    ## 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
  3884
    cls.add_method('Deserialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3885
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3886
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3887
                   is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3888
    ## socket.h (module 'network'): ns3::TypeId ns3::SocketIpv6TclassTag::GetInstanceTypeId() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3889
    cls.add_method('GetInstanceTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3890
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3891
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3892
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3893
    ## socket.h (module 'network'): uint32_t ns3::SocketIpv6TclassTag::GetSerializedSize() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3894
    cls.add_method('GetSerializedSize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3895
                   'uint32_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3896
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3897
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3898
    ## socket.h (module 'network'): uint8_t ns3::SocketIpv6TclassTag::GetTclass() const [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3899
    cls.add_method('GetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3900
                   'uint8_t', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3901
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3902
                   is_const=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3903
    ## socket.h (module 'network'): static ns3::TypeId ns3::SocketIpv6TclassTag::GetTypeId() [member function]
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3904
    cls.add_method('GetTypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3905
                   'ns3::TypeId', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3906
                   [], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3907
                   is_static=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3908
    ## 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
  3909
    cls.add_method('Print', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3910
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3911
                   [param('std::ostream &', 'os')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3912
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3913
    ## 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
  3914
    cls.add_method('Serialize', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3915
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3916
                   [param('ns3::TagBuffer', 'i')], 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3917
                   is_const=True, is_virtual=True)
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3918
    ## 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
  3919
    cls.add_method('SetTclass', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3920
                   'void', 
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3921
                   [param('uint8_t', 'tclass')])
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3922
    return
882381aa270d update bindings
Tom Henderson <tomh@tomh.org>
parents: 9114
diff changeset
  3923
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3924
def register_Ns3SocketSetDontFragmentTag_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3925
    ## 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
  3926
    cls.add_constructor([param('ns3::SocketSetDontFragmentTag const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3927
    ## socket.h (module 'network'): ns3::SocketSetDontFragmentTag::SocketSetDontFragmentTag() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3928
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3929
    ## 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
  3930
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3931
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3932
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3933
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3934
    ## 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
  3935
    cls.add_method('Disable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3936
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3937
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3938
    ## 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
  3939
    cls.add_method('Enable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3940
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3941
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3942
    ## 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
  3943
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3944
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3945
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3946
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3947
    ## 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
  3948
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3949
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3950
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3951
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3952
    ## 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
  3953
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3954
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3955
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3956
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3957
    ## 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
  3958
    cls.add_method('IsEnabled', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3959
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3960
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3961
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3962
    ## 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
  3963
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3964
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3965
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3966
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3967
    ## 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
  3968
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3969
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3970
                   [param('ns3::TagBuffer', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3971
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3972
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  3973
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3974
def register_Ns3Time_methods(root_module, cls):
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  3975
    cls.add_binary_numeric_operator('*', root_module['ns3::Time'], root_module['ns3::Time'], param('int64_t const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  3976
    cls.add_binary_numeric_operator('+', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  3977
    cls.add_binary_numeric_operator('-', root_module['ns3::Time'], root_module['ns3::Time'], param('ns3::Time const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  3978
    cls.add_binary_numeric_operator('/', root_module['ns3::Time'], root_module['ns3::Time'], param('int64_t const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3979
    cls.add_binary_comparison_operator('<')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3980
    cls.add_binary_comparison_operator('>')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3981
    cls.add_binary_comparison_operator('!=')
10631
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  3982
    cls.add_inplace_numeric_operator('+=', param('ns3::Time const &', u'right'))
a258a16d4793 bindings rescan (another try)
Tom Henderson <tomh@tomh.org>
parents: 10628
diff changeset
  3983
    cls.add_inplace_numeric_operator('-=', param('ns3::Time const &', u'right'))
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3984
    cls.add_output_stream_operator()
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3985
    cls.add_binary_comparison_operator('<=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3986
    cls.add_binary_comparison_operator('==')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3987
    cls.add_binary_comparison_operator('>=')
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3988
    ## nstime.h (module 'core'): ns3::Time::Time() [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3989
    cls.add_constructor([])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3990
    ## 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
  3991
    cls.add_constructor([param('ns3::Time const &', 'o')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3992
    ## nstime.h (module 'core'): ns3::Time::Time(double v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3993
    cls.add_constructor([param('double', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3994
    ## nstime.h (module 'core'): ns3::Time::Time(int v) [constructor]
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3995
    cls.add_constructor([param('int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3996
    ## 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
  3997
    cls.add_constructor([param('long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  3998
    ## 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
  3999
    cls.add_constructor([param('long long int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4000
    ## 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
  4001
    cls.add_constructor([param('unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4002
    ## 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
  4003
    cls.add_constructor([param('long unsigned int', 'v')])
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4004
    ## 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
  4005
    cls.add_constructor([param('long long unsigned int', 'v')])
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4006
    ## nstime.h (module 'core'): ns3::Time::Time(ns3::int64x64_t const & v) [constructor]
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4007
    cls.add_constructor([param('ns3::int64x64_t const &', 'v')])
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4008
    ## 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
  4009
    cls.add_constructor([param('std::string const &', 's')])
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  4010
    ## nstime.h (module 'core'): ns3::TimeWithUnit ns3::Time::As(ns3::Time::Unit const unit) const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  4011
    cls.add_method('As', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  4012
                   'ns3::TimeWithUnit', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  4013
                   [param('ns3::Time::Unit const', 'unit')], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  4014
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4015
    ## 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
  4016
    cls.add_method('Compare', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4017
                   'int', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4018
                   [param('ns3::Time const &', 'o')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4019
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4020
    ## 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
  4021
    cls.add_method('From', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4022
                   'ns3::Time', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4023
                   [param('ns3::int64x64_t const &', 'value')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4024
                   is_static=True)
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4025
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::From(ns3::int64x64_t const & value, ns3::Time::Unit unit) [member function]
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4026
    cls.add_method('From', 
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4027
                   'ns3::Time', 
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4028
                   [param('ns3::int64x64_t const &', 'value'), param('ns3::Time::Unit', 'unit')], 
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4029
                   is_static=True)
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4030
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromDouble(double value, ns3::Time::Unit unit) [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4031
    cls.add_method('FromDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4032
                   'ns3::Time', 
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4033
                   [param('double', 'value'), param('ns3::Time::Unit', 'unit')], 
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4034
                   is_static=True)
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4035
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::FromInteger(uint64_t value, ns3::Time::Unit unit) [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4036
    cls.add_method('FromInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4037
                   'ns3::Time', 
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4038
                   [param('uint64_t', 'value'), param('ns3::Time::Unit', 'unit')], 
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4039
                   is_static=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4040
    ## nstime.h (module 'core'): double ns3::Time::GetDays() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4041
    cls.add_method('GetDays', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4042
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4043
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4044
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4045
    ## 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
  4046
    cls.add_method('GetDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4047
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4048
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4049
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4050
    ## 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
  4051
    cls.add_method('GetFemtoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4052
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4053
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4054
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4055
    ## nstime.h (module 'core'): double ns3::Time::GetHours() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4056
    cls.add_method('GetHours', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4057
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4058
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4059
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4060
    ## 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
  4061
    cls.add_method('GetInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4062
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4063
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4064
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4065
    ## 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
  4066
    cls.add_method('GetMicroSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4067
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4068
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4069
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4070
    ## 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
  4071
    cls.add_method('GetMilliSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4072
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4073
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4074
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4075
    ## nstime.h (module 'core'): double ns3::Time::GetMinutes() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4076
    cls.add_method('GetMinutes', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4077
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4078
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4079
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4080
    ## 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
  4081
    cls.add_method('GetNanoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4082
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4083
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4084
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4085
    ## 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
  4086
    cls.add_method('GetPicoSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4087
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4088
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4089
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4090
    ## 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
  4091
    cls.add_method('GetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4092
                   'ns3::Time::Unit', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4093
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4094
                   is_static=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4095
    ## 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
  4096
    cls.add_method('GetSeconds', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4097
                   'double', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4098
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4099
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4100
    ## 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
  4101
    cls.add_method('GetTimeStep', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4102
                   'int64_t', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4103
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4104
                   is_const=True)
10534
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4105
    ## nstime.h (module 'core'): double ns3::Time::GetYears() const [member function]
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4106
    cls.add_method('GetYears', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4107
                   'double', 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4108
                   [], 
2f6018cfe926 rescan all bindings
Tom Henderson <tomh@tomh.org>
parents: 10183
diff changeset
  4109
                   is_const=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4110
    ## 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
  4111
    cls.add_method('IsNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4112
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4113
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4114
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4115
    ## 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
  4116
    cls.add_method('IsPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4117
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4118
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4119
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4120
    ## 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
  4121
    cls.add_method('IsStrictlyNegative', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4122
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4123
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4124
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4125
    ## 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
  4126
    cls.add_method('IsStrictlyPositive', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4127
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4128
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4129
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4130
    ## 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
  4131
    cls.add_method('IsZero', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4132
                   'bool', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4133
                   [], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4134
                   is_const=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4135
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::Max() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4136
    cls.add_method('Max', 
9901
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  4137
                   'ns3::Time', 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  4138
                   [], 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  4139
                   is_static=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4140
    ## nstime.h (module 'core'): static ns3::Time ns3::Time::Min() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4141
    cls.add_method('Min', 
9901
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  4142
                   'ns3::Time', 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  4143
                   [], 
9a100979b2df Updatemany modules' Python bindings
Mitch Watrous
parents: 9846
diff changeset
  4144
                   is_static=True)
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4145
    ## 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
  4146
    cls.add_method('SetResolution', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4147
                   'void', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4148
                   [param('ns3::Time::Unit', 'resolution')], 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4149
                   is_static=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4150
    ## nstime.h (module 'core'): static bool ns3::Time::StaticInit() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4151
    cls.add_method('StaticInit', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4152
                   'bool', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4153
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4154
                   is_static=True)
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4155
    ## nstime.h (module 'core'): ns3::int64x64_t ns3::Time::To(ns3::Time::Unit unit) const [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4156
    cls.add_method('To', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4157
                   'ns3::int64x64_t', 
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4158
                   [param('ns3::Time::Unit', 'unit')], 
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4159
                   is_const=True)
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4160
    ## nstime.h (module 'core'): double ns3::Time::ToDouble(ns3::Time::Unit unit) const [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4161
    cls.add_method('ToDouble', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4162
                   'double', 
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4163
                   [param('ns3::Time::Unit', 'unit')], 
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4164
                   is_const=True)
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4165
    ## nstime.h (module 'core'): int64_t ns3::Time::ToInteger(ns3::Time::Unit unit) const [member function]
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4166
    cls.add_method('ToInteger', 
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4167
                   'int64_t', 
10956
fa4be182ef17 rescan remaining bindings
Tom Henderson <tomh@tomh.org>
parents: 10709
diff changeset
  4168
                   [param('ns3::Time::Unit', 'unit')], 
7055
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4169
                   is_const=True)
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4170
    return
e65505ea6cd4 modular bindings scan
Mathieu Lacage <mathieu.lacage@inria.fr>
parents: 6989
diff changeset
  4171
7403
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4172
def register_Ns3TraceSourceAccessor_methods(root_module, cls):
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4173
    ## 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
  4174
    cls.add_constructor([param('ns3::TraceSourceAccessor const &', 'arg0')])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4175
    ## 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
  4176
    cls.add_constructor([])
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4177
    ## 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
  4178
    cls.add_method('Connect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4179
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4180
                   [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
  4181
                   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
  4182
    ## 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
  4183
    cls.add_method('ConnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4184
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4185
                   [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
  4186
                   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
  4187
    ## 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
  4188
    cls.add_method('Disconnect', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4189
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4190
                   [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
  4191
                   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
  4192
    ## 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
  4193
    cls.add_method('DisconnectWithoutContext', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4194
                   'bool', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4195
                   [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
  4196
                   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
  4197
    return
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4198
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4199
def register_Ns3Trailer_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4200
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4201
    ## trailer.h (module 'network'): ns3::Trailer::Trailer() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4202
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4203
    ## 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
  4204
    cls.add_constructor([param('ns3::Trailer const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4205
    ## 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
  4206
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4207
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4208
                   [param('ns3::Buffer::Iterator', 'end')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4209
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4210
    ## 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
  4211
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4212
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4213
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4214
                   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
  4215
    ## 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
  4216
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4217
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4218
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4219
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4220
    ## 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
  4221
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4222
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4223
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4224
                   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
  4225
    ## 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
  4226
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4227
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4228
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4229
                   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
  4230
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4231
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4232
def register_Ns3TriangularRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4233
    ## 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
  4234
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4235
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4236
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4237
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4238
    ## random-variable-stream.h (module 'core'): ns3::TriangularRandomVariable::TriangularRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4239
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4240
    ## 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
  4241
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4242
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4243
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4244
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4245
    ## 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
  4246
    cls.add_method('GetMin', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4247
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4248
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4249
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4250
    ## 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
  4251
    cls.add_method('GetMax', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4252
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4253
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4254
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4255
    ## 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
  4256
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4257
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4258
                   [param('double', 'mean'), param('double', 'min'), param('double', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4259
    ## 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
  4260
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4261
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4262
                   [param('uint32_t', 'mean'), param('uint32_t', 'min'), param('uint32_t', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4263
    ## random-variable-stream.h (module 'core'): double ns3::TriangularRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4264
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4265
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4266
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4267
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4268
    ## 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
  4269
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4270
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4271
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4272
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4273
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4274
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4275
def register_Ns3UniformRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4276
    ## 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
  4277
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4278
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4279
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4280
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4281
    ## random-variable-stream.h (module 'core'): ns3::UniformRandomVariable::UniformRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4282
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4283
    ## 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
  4284
    cls.add_method('GetMin', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4285
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4286
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4287
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4288
    ## 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
  4289
    cls.add_method('GetMax', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4290
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4291
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4292
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4293
    ## 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
  4294
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4295
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4296
                   [param('double', 'min'), param('double', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4297
    ## 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
  4298
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4299
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4300
                   [param('uint32_t', 'min'), param('uint32_t', 'max')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4301
    ## random-variable-stream.h (module 'core'): double ns3::UniformRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4302
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4303
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4304
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4305
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4306
    ## 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
  4307
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4308
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4309
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4310
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4311
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4312
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4313
def register_Ns3WeibullRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4314
    ## 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
  4315
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4316
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4317
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4318
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4319
    ## random-variable-stream.h (module 'core'): ns3::WeibullRandomVariable::WeibullRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4320
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4321
    ## 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
  4322
    cls.add_method('GetScale', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4323
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4324
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4325
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4326
    ## 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
  4327
    cls.add_method('GetShape', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4328
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4329
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4330
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4331
    ## 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
  4332
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4333
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4334
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4335
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4336
    ## 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
  4337
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4338
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4339
                   [param('double', 'scale'), param('double', 'shape'), param('double', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4340
    ## 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
  4341
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4342
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4343
                   [param('uint32_t', 'scale'), param('uint32_t', 'shape'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4344
    ## random-variable-stream.h (module 'core'): double ns3::WeibullRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4345
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4346
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4347
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4348
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4349
    ## 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
  4350
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4351
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4352
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4353
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4354
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4355
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4356
def register_Ns3ZetaRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4357
    ## 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
  4358
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4359
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4360
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4361
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4362
    ## random-variable-stream.h (module 'core'): ns3::ZetaRandomVariable::ZetaRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4363
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4364
    ## 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
  4365
    cls.add_method('GetAlpha', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4366
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4367
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4368
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4369
    ## 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
  4370
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4371
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4372
                   [param('double', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4373
    ## 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
  4374
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4375
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4376
                   [param('uint32_t', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4377
    ## random-variable-stream.h (module 'core'): double ns3::ZetaRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4378
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4379
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4380
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4381
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4382
    ## 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
  4383
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4384
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4385
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4386
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4387
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4388
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4389
def register_Ns3ZipfRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4390
    ## 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
  4391
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4392
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4393
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4394
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4395
    ## random-variable-stream.h (module 'core'): ns3::ZipfRandomVariable::ZipfRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4396
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4397
    ## 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
  4398
    cls.add_method('GetN', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4399
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4400
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4401
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4402
    ## 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
  4403
    cls.add_method('GetAlpha', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4404
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4405
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4406
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4407
    ## 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
  4408
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4409
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4410
                   [param('uint32_t', 'n'), param('double', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4411
    ## 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
  4412
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4413
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4414
                   [param('uint32_t', 'n'), param('uint32_t', 'alpha')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4415
    ## random-variable-stream.h (module 'core'): double ns3::ZipfRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4416
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4417
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4418
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4419
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4420
    ## 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
  4421
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4422
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4423
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4424
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4425
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4426
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4427
def register_Ns3AttributeAccessor_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4428
    ## 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
  4429
    cls.add_constructor([param('ns3::AttributeAccessor const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4430
    ## attribute.h (module 'core'): ns3::AttributeAccessor::AttributeAccessor() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4431
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4432
    ## 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
  4433
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4434
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4435
                   [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
  4436
                   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
  4437
    ## 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
  4438
    cls.add_method('HasGetter', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4439
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4440
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4441
                   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
  4442
    ## 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
  4443
    cls.add_method('HasSetter', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4444
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4445
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4446
                   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
  4447
    ## 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
  4448
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4449
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4450
                   [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
  4451
                   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
  4452
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4453
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4454
def register_Ns3AttributeChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4455
    ## 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
  4456
    cls.add_constructor([param('ns3::AttributeChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4457
    ## attribute.h (module 'core'): ns3::AttributeChecker::AttributeChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4458
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4459
    ## 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
  4460
    cls.add_method('Check', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4461
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4462
                   [param('ns3::AttributeValue const &', 'value')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4463
                   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
  4464
    ## 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
  4465
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4466
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4467
                   [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
  4468
                   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
  4469
    ## 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
  4470
    cls.add_method('Create', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4471
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4472
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4473
                   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
  4474
    ## 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
  4475
    cls.add_method('CreateValidValue', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4476
                   'ns3::Ptr< ns3::AttributeValue >', 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4477
                   [param('ns3::AttributeValue const &', 'value')], 
423566595b8a Rescan all bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7375
diff changeset
  4478
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4479
    ## 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
  4480
    cls.add_method('GetUnderlyingTypeInformation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4481
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4482
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4483
                   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
  4484
    ## 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
  4485
    cls.add_method('GetValueTypeName', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4486
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4487
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4488
                   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
  4489
    ## 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
  4490
    cls.add_method('HasUnderlyingTypeInformation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4491
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4492
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4493
                   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
  4494
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4495
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4496
def register_Ns3AttributeValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4497
    ## 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
  4498
    cls.add_constructor([param('ns3::AttributeValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4499
    ## attribute.h (module 'core'): ns3::AttributeValue::AttributeValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4500
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4501
    ## 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
  4502
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4503
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4504
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4505
                   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
  4506
    ## 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
  4507
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4508
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4509
                   [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
  4510
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4511
    ## 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
  4512
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4513
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4514
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4515
                   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
  4516
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4517
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4518
def register_Ns3CallbackChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4519
    ## callback.h (module 'core'): ns3::CallbackChecker::CallbackChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4520
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4521
    ## 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
  4522
    cls.add_constructor([param('ns3::CallbackChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4523
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4524
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4525
def register_Ns3CallbackImplBase_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4526
    ## callback.h (module 'core'): ns3::CallbackImplBase::CallbackImplBase() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4527
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4528
    ## 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
  4529
    cls.add_constructor([param('ns3::CallbackImplBase const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4530
    ## 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
  4531
    cls.add_method('IsEqual', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4532
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4533
                   [param('ns3::Ptr< ns3::CallbackImplBase const >', 'other')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4534
                   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
  4535
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4536
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4537
def register_Ns3CallbackValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4538
    ## 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
  4539
    cls.add_constructor([param('ns3::CallbackValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4540
    ## callback.h (module 'core'): ns3::CallbackValue::CallbackValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4541
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4542
    ## 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
  4543
    cls.add_constructor([param('ns3::CallbackBase const &', 'base')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4544
    ## 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
  4545
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4546
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4547
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4548
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4549
    ## 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
  4550
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4551
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4552
                   [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
  4553
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4554
    ## 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
  4555
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4556
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4557
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4558
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4559
    ## 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
  4560
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4561
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4562
                   [param('ns3::CallbackBase', 'base')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4563
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4564
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4565
def register_Ns3ConstantRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4566
    ## 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
  4567
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4568
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4569
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4570
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4571
    ## random-variable-stream.h (module 'core'): ns3::ConstantRandomVariable::ConstantRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4572
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4573
    ## 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
  4574
    cls.add_method('GetConstant', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4575
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4576
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4577
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4578
    ## 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
  4579
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4580
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4581
                   [param('double', 'constant')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4582
    ## 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
  4583
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4584
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4585
                   [param('uint32_t', 'constant')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4586
    ## random-variable-stream.h (module 'core'): double ns3::ConstantRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4587
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4588
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4589
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4590
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4591
    ## 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
  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
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4595
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4596
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4597
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4598
def register_Ns3DeterministicRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4599
    ## 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
  4600
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4601
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4602
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4603
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4604
    ## random-variable-stream.h (module 'core'): ns3::DeterministicRandomVariable::DeterministicRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4605
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4606
    ## 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
  4607
    cls.add_method('SetValueArray', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4608
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4609
                   [param('double *', 'values'), param('uint64_t', 'length')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4610
    ## random-variable-stream.h (module 'core'): double ns3::DeterministicRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4611
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4612
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4613
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4614
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4615
    ## 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
  4616
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4617
                   'uint32_t', 
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_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4620
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4621
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4622
def register_Ns3EmpiricalRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4623
    ## random-variable-stream.h (module 'core'): ns3::EmpiricalRandomVariable::EmpiricalRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4624
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4625
    ## 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
  4626
    cls.add_method('CDF', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4627
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4628
                   [param('double', 'v'), param('double', 'c')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4629
    ## 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
  4630
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4631
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4632
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4633
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4634
    ## 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
  4635
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4636
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4637
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4638
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4639
    ## random-variable-stream.h (module 'core'): double ns3::EmpiricalRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4640
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4641
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4642
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4643
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4644
    ## 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
  4645
    cls.add_method('Interpolate', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4646
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4647
                   [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
  4648
                   visibility='private', is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4649
    ## random-variable-stream.h (module 'core'): void ns3::EmpiricalRandomVariable::Validate() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4650
    cls.add_method('Validate', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4651
                   'void', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4652
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4653
                   visibility='private', is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4654
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4655
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4656
def register_Ns3EmptyAttributeValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4657
    ## 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
  4658
    cls.add_constructor([param('ns3::EmptyAttributeValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4659
    ## attribute.h (module 'core'): ns3::EmptyAttributeValue::EmptyAttributeValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4660
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4661
    ## 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
  4662
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4663
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4664
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4665
                   is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4666
    ## 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
  4667
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4668
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4669
                   [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
  4670
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4671
    ## 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
  4672
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4673
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4674
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4675
                   is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4676
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4677
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4678
def register_Ns3ErlangRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4679
    ## 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
  4680
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4681
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4682
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4683
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4684
    ## random-variable-stream.h (module 'core'): ns3::ErlangRandomVariable::ErlangRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4685
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4686
    ## 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
  4687
    cls.add_method('GetK', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4688
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4689
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4690
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4691
    ## 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
  4692
    cls.add_method('GetLambda', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4693
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4694
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4695
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4696
    ## 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
  4697
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4698
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4699
                   [param('uint32_t', 'k'), param('double', 'lambda')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4700
    ## 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
  4701
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4702
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4703
                   [param('uint32_t', 'k'), param('uint32_t', 'lambda')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4704
    ## random-variable-stream.h (module 'core'): double ns3::ErlangRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4705
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4706
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4707
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4708
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4709
    ## 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
  4710
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4711
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4712
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4713
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4714
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4715
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4716
def register_Ns3EventImpl_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4717
    ## 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
  4718
    cls.add_constructor([param('ns3::EventImpl const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4719
    ## 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
  4720
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4721
    ## 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
  4722
    cls.add_method('Cancel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4723
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4724
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4725
    ## 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
  4726
    cls.add_method('Invoke', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4727
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4728
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4729
    ## 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
  4730
    cls.add_method('IsCancelled', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4731
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4732
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4733
    ## 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
  4734
    cls.add_method('Notify', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4735
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4736
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4737
                   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
  4738
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4739
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4740
def register_Ns3ExponentialRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4741
    ## 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
  4742
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4743
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4744
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4745
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4746
    ## random-variable-stream.h (module 'core'): ns3::ExponentialRandomVariable::ExponentialRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4747
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4748
    ## 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
  4749
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4750
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4751
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4752
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4753
    ## 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
  4754
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4755
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4756
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4757
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4758
    ## 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
  4759
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4760
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4761
                   [param('double', 'mean'), param('double', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4762
    ## 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
  4763
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4764
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4765
                   [param('uint32_t', 'mean'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4766
    ## random-variable-stream.h (module 'core'): double ns3::ExponentialRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4767
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4768
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4769
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4770
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4771
    ## 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
  4772
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4773
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4774
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4775
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4776
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4777
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4778
def register_Ns3GammaRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4779
    ## 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
  4780
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4781
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4782
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4783
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4784
    ## random-variable-stream.h (module 'core'): ns3::GammaRandomVariable::GammaRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4785
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4786
    ## 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
  4787
    cls.add_method('GetAlpha', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4788
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4789
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4790
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4791
    ## 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
  4792
    cls.add_method('GetBeta', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4793
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4794
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4795
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4796
    ## 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
  4797
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4798
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4799
                   [param('double', 'alpha'), param('double', 'beta')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4800
    ## 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
  4801
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4802
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4803
                   [param('uint32_t', 'alpha'), param('uint32_t', 'beta')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4804
    ## random-variable-stream.h (module 'core'): double ns3::GammaRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4805
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4806
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4807
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4808
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4809
    ## 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
  4810
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4811
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4812
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4813
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4814
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  4815
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4816
def register_Ns3Ipv4_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4817
    ## 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
  4818
    cls.add_constructor([param('ns3::Ipv4 const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4819
    ## ipv4.h (module 'internet'): ns3::Ipv4::Ipv4() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4820
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4821
    ## 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
  4822
    cls.add_method('AddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4823
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4824
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4825
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4826
    ## 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
  4827
    cls.add_method('AddInterface', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4828
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4829
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4830
                   is_pure_virtual=True, is_virtual=True)
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4831
    ## 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
  4832
    cls.add_method('CreateRawSocket', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4833
                   'ns3::Ptr< ns3::Socket >', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4834
                   [], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4835
                   is_pure_virtual=True, is_virtual=True)
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4836
    ## 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
  4837
    cls.add_method('DeleteRawSocket', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4838
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4839
                   [param('ns3::Ptr< ns3::Socket >', 'socket')], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4840
                   is_pure_virtual=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4841
    ## 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
  4842
    cls.add_method('GetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4843
                   'ns3::Ipv4InterfaceAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4844
                   [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4845
                   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
  4846
    ## 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
  4847
    cls.add_method('GetInterfaceForAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4848
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4849
                   [param('ns3::Ipv4Address', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4850
                   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
  4851
    ## 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
  4852
    cls.add_method('GetInterfaceForDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4853
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4854
                   [param('ns3::Ptr< ns3::NetDevice const >', 'device')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4855
                   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
  4856
    ## 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
  4857
    cls.add_method('GetInterfaceForPrefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4858
                   'int32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4859
                   [param('ns3::Ipv4Address', 'address'), param('ns3::Ipv4Mask', 'mask')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4860
                   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
  4861
    ## 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
  4862
    cls.add_method('GetMetric', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4863
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4864
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4865
                   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
  4866
    ## 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
  4867
    cls.add_method('GetMtu', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4868
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4869
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4870
                   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
  4871
    ## 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
  4872
    cls.add_method('GetNAddresses', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4873
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4874
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4875
                   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
  4876
    ## 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
  4877
    cls.add_method('GetNInterfaces', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4878
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4879
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4880
                   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
  4881
    ## 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
  4882
    cls.add_method('GetNetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4883
                   'ns3::Ptr< ns3::NetDevice >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4884
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4885
                   is_pure_virtual=True, is_virtual=True)
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4886
    ## 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
  4887
    cls.add_method('GetProtocol', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4888
                   'ns3::Ptr< ns3::IpL4Protocol >', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4889
                   [param('int', 'protocolNumber')], 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4890
                   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
  4891
    ## 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
  4892
    cls.add_method('GetRoutingProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4893
                   'ns3::Ptr< ns3::Ipv4RoutingProtocol >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4894
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4895
                   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
  4896
    ## 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
  4897
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4898
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4899
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4900
                   is_static=True)
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  4901
    ## 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
  4902
    cls.add_method('Insert', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4903
                   'void', 
7724
df7a2f30d5a8 Rescan bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7586
diff changeset
  4904
                   [param('ns3::Ptr< ns3::IpL4Protocol >', 'protocol')], 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4905
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4906
    ## 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
  4907
    cls.add_method('IsDestinationAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4908
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4909
                   [param('ns3::Ipv4Address', 'address'), param('uint32_t', 'iif')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4910
                   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
  4911
    ## 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
  4912
    cls.add_method('IsForwarding', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4913
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4914
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4915
                   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
  4916
    ## 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
  4917
    cls.add_method('IsUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4918
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4919
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4920
                   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
  4921
    ## 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
  4922
    cls.add_method('RemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4923
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4924
                   [param('uint32_t', 'interface'), param('uint32_t', 'addressIndex')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4925
                   is_pure_virtual=True, is_virtual=True)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4926
    ## ipv4.h (module 'internet'): bool ns3::Ipv4::RemoveAddress(uint32_t interface, ns3::Ipv4Address address) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4927
    cls.add_method('RemoveAddress', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4928
                   'bool', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4929
                   [param('uint32_t', 'interface'), param('ns3::Ipv4Address', 'address')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  4930
                   is_pure_virtual=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4931
    ## 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
  4932
    cls.add_method('SelectSourceAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4933
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4934
                   [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
  4935
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4936
    ## 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
  4937
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4938
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4939
                   [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
  4940
                   is_pure_virtual=True, is_virtual=True)
8966
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4941
    ## 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
  4942
    cls.add_method('SendWithHeader', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4943
                   'void', 
060dba23e9bb Replace src/application usage of RandomVariable with RandomVariableStream
Mitch Watrous
parents: 7874
diff changeset
  4944
                   [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
  4945
                   is_pure_virtual=True, is_virtual=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4946
    ## 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
  4947
    cls.add_method('SetDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4948
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4949
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4950
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4951
    ## 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
  4952
    cls.add_method('SetForwarding', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4953
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4954
                   [param('uint32_t', 'interface'), param('bool', 'val')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4955
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4956
    ## 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
  4957
    cls.add_method('SetMetric', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4958
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4959
                   [param('uint32_t', 'interface'), param('uint16_t', 'metric')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4960
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4961
    ## 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
  4962
    cls.add_method('SetRoutingProtocol', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4963
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4964
                   [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4965
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4966
    ## 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
  4967
    cls.add_method('SetUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4968
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4969
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4970
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4971
    ## 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
  4972
    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
  4973
    ## 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
  4974
    cls.add_method('GetIpForward', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4975
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4976
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4977
                   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
  4978
    ## 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
  4979
    cls.add_method('GetWeakEsModel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4980
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4981
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4982
                   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
  4983
    ## 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
  4984
    cls.add_method('SetIpForward', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4985
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4986
                   [param('bool', 'forward')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4987
                   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
  4988
    ## 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
  4989
    cls.add_method('SetWeakEsModel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4990
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4991
                   [param('bool', 'model')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4992
                   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
  4993
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4994
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4995
def register_Ns3Ipv4AddressChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4996
    ## 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
  4997
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  4998
    ## 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
  4999
    cls.add_constructor([param('ns3::Ipv4AddressChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5000
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5001
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5002
def register_Ns3Ipv4AddressValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5003
    ## 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
  5004
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5005
    ## 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
  5006
    cls.add_constructor([param('ns3::Ipv4AddressValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5007
    ## 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
  5008
    cls.add_constructor([param('ns3::Ipv4Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5009
    ## 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
  5010
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5011
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5012
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5013
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5014
    ## 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
  5015
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5016
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5017
                   [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
  5018
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5019
    ## 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
  5020
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5021
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5022
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5023
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5024
    ## 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
  5025
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5026
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5027
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5028
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5029
    ## 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
  5030
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5031
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5032
                   [param('ns3::Ipv4Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5033
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5034
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5035
def register_Ns3Ipv4MaskChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5036
    ## 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
  5037
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5038
    ## 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
  5039
    cls.add_constructor([param('ns3::Ipv4MaskChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5040
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5041
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5042
def register_Ns3Ipv4MaskValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5043
    ## 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
  5044
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5045
    ## 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
  5046
    cls.add_constructor([param('ns3::Ipv4MaskValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5047
    ## 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
  5048
    cls.add_constructor([param('ns3::Ipv4Mask const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5049
    ## 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
  5050
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5051
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5052
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5053
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5054
    ## 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
  5055
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5056
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5057
                   [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
  5058
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5059
    ## 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
  5060
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5061
                   'ns3::Ipv4Mask', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5062
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5063
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5064
    ## 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
  5065
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5066
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5067
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5068
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5069
    ## 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
  5070
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5071
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5072
                   [param('ns3::Ipv4Mask const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5073
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5074
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5075
def register_Ns3Ipv4MulticastRoute_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5076
    ## 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
  5077
    cls.add_constructor([param('ns3::Ipv4MulticastRoute const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5078
    ## 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
  5079
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5080
    ## 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
  5081
    cls.add_method('GetGroup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5082
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5083
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5084
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5085
    ## 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
  5086
    cls.add_method('GetOrigin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5087
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5088
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5089
                   is_const=True)
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5090
    ## 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
  5091
    cls.add_method('GetOutputTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5092
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5093
                   [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
  5094
                   deprecated=True)
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5095
    ## 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
  5096
    cls.add_method('GetOutputTtlMap', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5097
                   '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
  5098
                   [], 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5099
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5100
    ## 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
  5101
    cls.add_method('GetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5102
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5103
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5104
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5105
    ## 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
  5106
    cls.add_method('SetGroup', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5107
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5108
                   [param('ns3::Ipv4Address const', 'group')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5109
    ## 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
  5110
    cls.add_method('SetOrigin', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5111
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5112
                   [param('ns3::Ipv4Address const', 'origin')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5113
    ## 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
  5114
    cls.add_method('SetOutputTtl', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5115
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5116
                   [param('uint32_t', 'oif'), param('uint32_t', 'ttl')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5117
    ## 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
  5118
    cls.add_method('SetParent', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5119
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5120
                   [param('uint32_t', 'iif')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5121
    ## 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
  5122
    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
  5123
    ## 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
  5124
    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
  5125
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5126
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5127
def register_Ns3Ipv4Route_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5128
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5129
    ## 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
  5130
    cls.add_constructor([param('ns3::Ipv4Route const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5131
    ## 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
  5132
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5133
    ## 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
  5134
    cls.add_method('GetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5135
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5136
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5137
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5138
    ## 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
  5139
    cls.add_method('GetGateway', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5140
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5141
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5142
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5143
    ## 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
  5144
    cls.add_method('GetOutputDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5145
                   'ns3::Ptr< ns3::NetDevice >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5146
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5147
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5148
    ## 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
  5149
    cls.add_method('GetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5150
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5151
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5152
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5153
    ## 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
  5154
    cls.add_method('SetDestination', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5155
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5156
                   [param('ns3::Ipv4Address', 'dest')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5157
    ## 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
  5158
    cls.add_method('SetGateway', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5159
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5160
                   [param('ns3::Ipv4Address', 'gw')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5161
    ## 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
  5162
    cls.add_method('SetOutputDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5163
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5164
                   [param('ns3::Ptr< ns3::NetDevice >', 'outputDevice')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5165
    ## 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
  5166
    cls.add_method('SetSource', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5167
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5168
                   [param('ns3::Ipv4Address', 'src')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5169
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5170
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5171
def register_Ns3Ipv4RoutingProtocol_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5172
    ## 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
  5173
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5174
    ## 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
  5175
    cls.add_constructor([param('ns3::Ipv4RoutingProtocol const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5176
    ## 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
  5177
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5178
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5179
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5180
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5181
    ## 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
  5182
    cls.add_method('NotifyAddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5183
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5184
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5185
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5186
    ## 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
  5187
    cls.add_method('NotifyInterfaceDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5188
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5189
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5190
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5191
    ## 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
  5192
    cls.add_method('NotifyInterfaceUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5193
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5194
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5195
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5196
    ## 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
  5197
    cls.add_method('NotifyRemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5198
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5199
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5200
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5201
    ## 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
  5202
    cls.add_method('PrintRoutingTable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5203
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5204
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5205
                   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
  5206
    ## 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
  5207
    cls.add_method('RouteInput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5208
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5209
                   [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
  5210
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5211
    ## 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
  5212
    cls.add_method('RouteOutput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5213
                   'ns3::Ptr< ns3::Ipv4Route >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5214
                   [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
  5215
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5216
    ## 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
  5217
    cls.add_method('SetIpv4', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5218
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5219
                   [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5220
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5221
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5222
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5223
def register_Ns3Ipv4StaticRouting_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5224
    ## 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
  5225
    cls.add_constructor([param('ns3::Ipv4StaticRouting const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5226
    ## 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
  5227
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5228
    ## 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
  5229
    cls.add_method('AddHostRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5230
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5231
                   [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
  5232
    ## 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
  5233
    cls.add_method('AddHostRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5234
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5235
                   [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
  5236
    ## 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
  5237
    cls.add_method('AddMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5238
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5239
                   [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
  5240
    ## 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
  5241
    cls.add_method('AddNetworkRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5242
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5243
                   [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
  5244
    ## 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
  5245
    cls.add_method('AddNetworkRouteTo', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5246
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5247
                   [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
  5248
    ## 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
  5249
    cls.add_method('GetDefaultRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5250
                   'ns3::Ipv4RoutingTableEntry', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5251
                   [])
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5252
    ## 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
  5253
    cls.add_method('GetMetric', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5254
                   'uint32_t', 
7788
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5255
                   [param('uint32_t', 'index')], 
Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
parents: 7724
diff changeset
  5256
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5257
    ## 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
  5258
    cls.add_method('GetMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5259
                   'ns3::Ipv4MulticastRoutingTableEntry', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5260
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5261
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5262
    ## 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
  5263
    cls.add_method('GetNMulticastRoutes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5264
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5265
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5266
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5267
    ## 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
  5268
    cls.add_method('GetNRoutes', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5269
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5270
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5271
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5272
    ## 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
  5273
    cls.add_method('GetRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5274
                   'ns3::Ipv4RoutingTableEntry', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5275
                   [param('uint32_t', 'i')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5276
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5277
    ## 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
  5278
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5279
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5280
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5281
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5282
    ## 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
  5283
    cls.add_method('NotifyAddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5284
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5285
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5286
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5287
    ## 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
  5288
    cls.add_method('NotifyInterfaceDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5289
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5290
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5291
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5292
    ## 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
  5293
    cls.add_method('NotifyInterfaceUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5294
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5295
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5296
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5297
    ## 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
  5298
    cls.add_method('NotifyRemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5299
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5300
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5301
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5302
    ## 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
  5303
    cls.add_method('PrintRoutingTable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5304
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5305
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5306
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5307
    ## 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
  5308
    cls.add_method('RemoveMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5309
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5310
                   [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
  5311
    ## 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
  5312
    cls.add_method('RemoveMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5313
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5314
                   [param('uint32_t', 'index')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5315
    ## 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
  5316
    cls.add_method('RemoveRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5317
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5318
                   [param('uint32_t', 'i')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5319
    ## 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
  5320
    cls.add_method('RouteInput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5321
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5322
                   [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
  5323
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5324
    ## 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
  5325
    cls.add_method('RouteOutput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5326
                   'ns3::Ptr< ns3::Ipv4Route >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5327
                   [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
  5328
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5329
    ## 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
  5330
    cls.add_method('SetDefaultMulticastRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5331
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5332
                   [param('uint32_t', 'outputInterface')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5333
    ## 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
  5334
    cls.add_method('SetDefaultRoute', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5335
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5336
                   [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
  5337
    ## 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
  5338
    cls.add_method('SetIpv4', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5339
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5340
                   [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5341
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5342
    ## 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
  5343
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5344
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5345
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5346
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5347
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5348
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5349
def register_Ns3Ipv6AddressChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5350
    ## 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
  5351
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5352
    ## 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
  5353
    cls.add_constructor([param('ns3::Ipv6AddressChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5354
    return
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
def register_Ns3Ipv6AddressValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5357
    ## 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
  5358
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5359
    ## 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
  5360
    cls.add_constructor([param('ns3::Ipv6AddressValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5361
    ## 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
  5362
    cls.add_constructor([param('ns3::Ipv6Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5363
    ## 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
  5364
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5365
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5366
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5367
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5368
    ## 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
  5369
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5370
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5371
                   [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
  5372
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5373
    ## 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
  5374
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5375
                   'ns3::Ipv6Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5376
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5377
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5378
    ## 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
  5379
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5380
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5381
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5382
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5383
    ## 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
  5384
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5385
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5386
                   [param('ns3::Ipv6Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5387
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5388
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5389
def register_Ns3Ipv6PrefixChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5390
    ## 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
  5391
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5392
    ## 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
  5393
    cls.add_constructor([param('ns3::Ipv6PrefixChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5394
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5395
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5396
def register_Ns3Ipv6PrefixValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5397
    ## 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
  5398
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5399
    ## 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
  5400
    cls.add_constructor([param('ns3::Ipv6PrefixValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5401
    ## 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
  5402
    cls.add_constructor([param('ns3::Ipv6Prefix const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5403
    ## 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
  5404
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5405
                   'ns3::Ptr< ns3::AttributeValue >', 
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, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5408
    ## 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
  5409
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5410
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5411
                   [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
  5412
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5413
    ## 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
  5414
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5415
                   'ns3::Ipv6Prefix', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5416
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5417
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5418
    ## 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
  5419
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5420
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5421
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5422
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5423
    ## 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
  5424
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5425
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5426
                   [param('ns3::Ipv6Prefix const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5427
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5428
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5429
def register_Ns3LogNormalRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5430
    ## 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
  5431
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5432
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5433
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5434
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5435
    ## random-variable-stream.h (module 'core'): ns3::LogNormalRandomVariable::LogNormalRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5436
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5437
    ## 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
  5438
    cls.add_method('GetMu', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5439
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5440
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5441
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5442
    ## 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
  5443
    cls.add_method('GetSigma', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5444
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5445
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5446
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5447
    ## 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
  5448
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5449
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5450
                   [param('double', 'mu'), param('double', 'sigma')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5451
    ## 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
  5452
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5453
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5454
                   [param('uint32_t', 'mu'), param('uint32_t', 'sigma')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5455
    ## random-variable-stream.h (module 'core'): double ns3::LogNormalRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5456
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5457
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5458
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5459
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5460
    ## 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
  5461
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5462
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5463
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5464
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5465
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5466
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5467
def register_Ns3NetDevice_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5468
    ## 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
  5469
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5470
    ## 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
  5471
    cls.add_constructor([param('ns3::NetDevice const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5472
    ## 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
  5473
    cls.add_method('AddLinkChangeCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5474
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5475
                   [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
  5476
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5477
    ## 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
  5478
    cls.add_method('GetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5479
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5480
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5481
                   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
  5482
    ## 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
  5483
    cls.add_method('GetBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5484
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5485
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5486
                   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
  5487
    ## 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
  5488
    cls.add_method('GetChannel', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5489
                   'ns3::Ptr< ns3::Channel >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5490
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5491
                   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
  5492
    ## 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
  5493
    cls.add_method('GetIfIndex', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5494
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5495
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5496
                   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
  5497
    ## 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
  5498
    cls.add_method('GetMtu', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5499
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5500
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5501
                   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
  5502
    ## 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
  5503
    cls.add_method('GetMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5504
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5505
                   [param('ns3::Ipv4Address', 'multicastGroup')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5506
                   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
  5507
    ## 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
  5508
    cls.add_method('GetMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5509
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5510
                   [param('ns3::Ipv6Address', 'addr')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5511
                   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
  5512
    ## 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
  5513
    cls.add_method('GetNode', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5514
                   'ns3::Ptr< ns3::Node >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5515
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5516
                   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
  5517
    ## 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
  5518
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5519
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5520
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5521
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5522
    ## 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
  5523
    cls.add_method('IsBridge', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5524
                   'bool', 
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
                   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
  5527
    ## 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
  5528
    cls.add_method('IsBroadcast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5529
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5530
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5531
                   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
  5532
    ## 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
  5533
    cls.add_method('IsLinkUp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5534
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5535
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5536
                   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
  5537
    ## 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
  5538
    cls.add_method('IsMulticast', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5539
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5540
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5541
                   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
  5542
    ## 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
  5543
    cls.add_method('IsPointToPoint', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5544
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5545
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5546
                   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
  5547
    ## 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
  5548
    cls.add_method('NeedsArp', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5549
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5550
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5551
                   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
  5552
    ## 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
  5553
    cls.add_method('Send', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5554
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5555
                   [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
  5556
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5557
    ## 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
  5558
    cls.add_method('SendFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5559
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5560
                   [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
  5561
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5562
    ## 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
  5563
    cls.add_method('SetAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5564
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5565
                   [param('ns3::Address', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5566
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5567
    ## 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
  5568
    cls.add_method('SetIfIndex', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5569
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5570
                   [param('uint32_t const', 'index')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5571
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5572
    ## 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
  5573
    cls.add_method('SetMtu', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5574
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5575
                   [param('uint16_t const', 'mtu')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5576
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5577
    ## 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
  5578
    cls.add_method('SetNode', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5579
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5580
                   [param('ns3::Ptr< ns3::Node >', 'node')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5581
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5582
    ## 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
  5583
    cls.add_method('SetPromiscReceiveCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5584
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5585
                   [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
  5586
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5587
    ## 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
  5588
    cls.add_method('SetReceiveCallback', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5589
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5590
                   [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
  5591
                   is_pure_virtual=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5592
    ## 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
  5593
    cls.add_method('SupportsSendFrom', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5594
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5595
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5596
                   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
  5597
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5598
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5599
def register_Ns3NixVector_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5600
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5601
    ## 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
  5602
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5603
    ## 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
  5604
    cls.add_constructor([param('ns3::NixVector const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5605
    ## 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
  5606
    cls.add_method('AddNeighborIndex', 
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('uint32_t', 'newBits'), param('uint32_t', 'numberOfBits')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5609
    ## 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
  5610
    cls.add_method('BitCount', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5611
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5612
                   [param('uint32_t', 'numberOfNeighbors')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5613
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5614
    ## 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
  5615
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5616
                   'ns3::Ptr< ns3::NixVector >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5617
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5618
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5619
    ## 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
  5620
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5621
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5622
                   [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
  5623
    ## 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
  5624
    cls.add_method('ExtractNeighborIndex', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5625
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5626
                   [param('uint32_t', 'numberOfBits')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5627
    ## 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
  5628
    cls.add_method('GetRemainingBits', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5629
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5630
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5631
    ## 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
  5632
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5633
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5634
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5635
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5636
    ## 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
  5637
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5638
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5639
                   [param('uint32_t *', 'buffer'), param('uint32_t', 'maxSize')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5640
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5641
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5642
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5643
def register_Ns3Node_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5644
    ## 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
  5645
    cls.add_constructor([param('ns3::Node const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5646
    ## node.h (module 'network'): ns3::Node::Node() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5647
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5648
    ## 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
  5649
    cls.add_constructor([param('uint32_t', 'systemId')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5650
    ## 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
  5651
    cls.add_method('AddApplication', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5652
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5653
                   [param('ns3::Ptr< ns3::Application >', 'application')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5654
    ## 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
  5655
    cls.add_method('AddDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5656
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5657
                   [param('ns3::Ptr< ns3::NetDevice >', 'device')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5658
    ## 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
  5659
    cls.add_method('ChecksumEnabled', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5660
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5661
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5662
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5663
    ## 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
  5664
    cls.add_method('GetApplication', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5665
                   'ns3::Ptr< ns3::Application >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5666
                   [param('uint32_t', 'index')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5667
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5668
    ## 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
  5669
    cls.add_method('GetDevice', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5670
                   'ns3::Ptr< ns3::NetDevice >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5671
                   [param('uint32_t', 'index')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5672
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5673
    ## 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
  5674
    cls.add_method('GetId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5675
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5676
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5677
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5678
    ## 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
  5679
    cls.add_method('GetNApplications', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5680
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5681
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5682
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5683
    ## 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
  5684
    cls.add_method('GetNDevices', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5685
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5686
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5687
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5688
    ## 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
  5689
    cls.add_method('GetSystemId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5690
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5691
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5692
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5693
    ## 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
  5694
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5695
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5696
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5697
                   is_static=True)
7375
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5698
    ## 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
  5699
    cls.add_method('RegisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5700
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5701
                   [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
  5702
    ## 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
  5703
    cls.add_method('RegisterProtocolHandler', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5704
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5705
                   [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
  5706
    ## 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
  5707
    cls.add_method('UnregisterDeviceAdditionListener', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5708
                   'void', 
5ccbfab63589 Rescan all python bindings for all modules
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents: 7055
diff changeset
  5709
                   [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
  5710
    ## 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
  5711
    cls.add_method('UnregisterProtocolHandler', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5712
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5713
                   [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
  5714
    ## 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
  5715
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5716
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5717
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5718
                   visibility='protected', is_virtual=True)
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  5719
    ## node.h (module 'network'): void ns3::Node::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  5720
    cls.add_method('DoInitialize', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5721
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5722
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5723
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5724
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5725
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5726
def register_Ns3NormalRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5727
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::INFINITE_VALUE [variable]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5728
    cls.add_static_attribute('INFINITE_VALUE', 'double const', is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5729
    ## 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
  5730
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5731
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5732
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5733
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5734
    ## random-variable-stream.h (module 'core'): ns3::NormalRandomVariable::NormalRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5735
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5736
    ## 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
  5737
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5738
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5739
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5740
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5741
    ## 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
  5742
    cls.add_method('GetVariance', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5743
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5744
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5745
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5746
    ## 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
  5747
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5748
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5749
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5750
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5751
    ## 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
  5752
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5753
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5754
                   [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
  5755
    ## 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
  5756
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5757
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5758
                   [param('uint32_t', 'mean'), param('uint32_t', 'variance'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5759
    ## random-variable-stream.h (module 'core'): double ns3::NormalRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5760
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5761
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5762
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5763
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5764
    ## 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
  5765
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5766
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5767
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5768
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5769
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  5770
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5771
def register_Ns3ObjectFactoryChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5772
    ## 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
  5773
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5774
    ## 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
  5775
    cls.add_constructor([param('ns3::ObjectFactoryChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5776
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5777
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5778
def register_Ns3ObjectFactoryValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5779
    ## 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
  5780
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5781
    ## 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
  5782
    cls.add_constructor([param('ns3::ObjectFactoryValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5783
    ## 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
  5784
    cls.add_constructor([param('ns3::ObjectFactory const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5785
    ## 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
  5786
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5787
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5788
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5789
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5790
    ## 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
  5791
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5792
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5793
                   [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
  5794
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5795
    ## 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
  5796
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5797
                   'ns3::ObjectFactory', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5798
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5799
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5800
    ## 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
  5801
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5802
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5803
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5804
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5805
    ## 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
  5806
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5807
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5808
                   [param('ns3::ObjectFactory const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5809
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5810
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5811
def register_Ns3OutputStreamWrapper_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5812
    ## 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
  5813
    cls.add_constructor([param('ns3::OutputStreamWrapper const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5814
    ## 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
  5815
    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
  5816
    ## 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
  5817
    cls.add_constructor([param('std::ostream *', 'os')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5818
    ## 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
  5819
    cls.add_method('GetStream', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5820
                   'std::ostream *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5821
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5822
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5823
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5824
def register_Ns3Packet_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5825
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5826
    ## packet.h (module 'network'): ns3::Packet::Packet() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5827
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5828
    ## 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
  5829
    cls.add_constructor([param('ns3::Packet const &', 'o')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5830
    ## 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
  5831
    cls.add_constructor([param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5832
    ## 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
  5833
    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
  5834
    ## 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
  5835
    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
  5836
    ## 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
  5837
    cls.add_method('AddAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5838
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5839
                   [param('ns3::Ptr< ns3::Packet const >', 'packet')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5840
    ## 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
  5841
    cls.add_method('AddByteTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5842
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5843
                   [param('ns3::Tag const &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5844
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5845
    ## 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
  5846
    cls.add_method('AddHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5847
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5848
                   [param('ns3::Header const &', 'header')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5849
    ## 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
  5850
    cls.add_method('AddPacketTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5851
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5852
                   [param('ns3::Tag const &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5853
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5854
    ## 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
  5855
    cls.add_method('AddPaddingAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5856
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5857
                   [param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5858
    ## 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
  5859
    cls.add_method('AddTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5860
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5861
                   [param('ns3::Trailer const &', 'trailer')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5862
    ## 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
  5863
    cls.add_method('BeginItem', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5864
                   'ns3::PacketMetadata::ItemIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5865
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5866
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5867
    ## 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
  5868
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5869
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5870
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5871
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5872
    ## 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
  5873
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5874
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5875
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5876
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5877
    ## 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
  5878
    cls.add_method('CopyData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5879
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5880
                   [param('std::ostream *', 'os'), param('uint32_t', 'size')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5881
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5882
    ## 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
  5883
    cls.add_method('CreateFragment', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5884
                   'ns3::Ptr< ns3::Packet >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5885
                   [param('uint32_t', 'start'), param('uint32_t', 'length')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5886
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5887
    ## 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
  5888
    cls.add_method('EnableChecking', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5889
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5890
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5891
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5892
    ## 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
  5893
    cls.add_method('EnablePrinting', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5894
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5895
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5896
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5897
    ## 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
  5898
    cls.add_method('FindFirstMatchingByteTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5899
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5900
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5901
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5902
    ## 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
  5903
    cls.add_method('GetByteTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5904
                   'ns3::ByteTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5905
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5906
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5907
    ## 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
  5908
    cls.add_method('GetNixVector', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5909
                   'ns3::Ptr< ns3::NixVector >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5910
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5911
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5912
    ## 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
  5913
    cls.add_method('GetPacketTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5914
                   'ns3::PacketTagIterator', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5915
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5916
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5917
    ## 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
  5918
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5919
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5920
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5921
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5922
    ## 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
  5923
    cls.add_method('GetSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5924
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5925
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5926
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5927
    ## 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
  5928
    cls.add_method('GetUid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5929
                   'uint64_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5930
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5931
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5932
    ## 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
  5933
    cls.add_method('PeekData', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5934
                   'uint8_t const *', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5935
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5936
                   deprecated=True, is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5937
    ## 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
  5938
    cls.add_method('PeekHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5939
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5940
                   [param('ns3::Header &', 'header')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5941
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5942
    ## 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
  5943
    cls.add_method('PeekPacketTag', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5944
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5945
                   [param('ns3::Tag &', 'tag')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5946
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5947
    ## 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
  5948
    cls.add_method('PeekTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5949
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5950
                   [param('ns3::Trailer &', 'trailer')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5951
    ## 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
  5952
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5953
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5954
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5955
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5956
    ## 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
  5957
    cls.add_method('PrintByteTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5958
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5959
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5960
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5961
    ## 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
  5962
    cls.add_method('PrintPacketTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5963
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5964
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5965
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5966
    ## 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
  5967
    cls.add_method('RemoveAllByteTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5968
                   'void', 
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
    ## 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
  5971
    cls.add_method('RemoveAllPacketTags', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5972
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5973
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5974
    ## 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
  5975
    cls.add_method('RemoveAtEnd', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5976
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5977
                   [param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5978
    ## 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
  5979
    cls.add_method('RemoveAtStart', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5980
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5981
                   [param('uint32_t', 'size')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5982
    ## 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
  5983
    cls.add_method('RemoveHeader', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5984
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5985
                   [param('ns3::Header &', 'header')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5986
    ## 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
  5987
    cls.add_method('RemovePacketTag', 
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
                   [param('ns3::Tag &', 'tag')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5990
    ## 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
  5991
    cls.add_method('RemoveTrailer', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5992
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5993
                   [param('ns3::Trailer &', 'trailer')])
9846
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  5994
    ## 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
  5995
    cls.add_method('ReplacePacketTag', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  5996
                   'bool', 
96f72408b66c rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 9708
diff changeset
  5997
                   [param('ns3::Tag &', 'tag')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  5998
    ## 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
  5999
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6000
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6001
                   [param('uint8_t *', 'buffer'), param('uint32_t', 'maxSize')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6002
                   is_const=True)
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6003
    ## packet.h (module 'network'): void ns3::Packet::SetNixVector(ns3::Ptr<ns3::NixVector> nixVector) [member function]
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6004
    cls.add_method('SetNixVector', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6005
                   'void', 
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6006
                   [param('ns3::Ptr< ns3::NixVector >', 'nixVector')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6007
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6008
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6009
def register_Ns3ParetoRandomVariable_methods(root_module, cls):
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6010
    ## 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
  6011
    cls.add_method('GetTypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6012
                   'ns3::TypeId', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6013
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6014
                   is_static=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6015
    ## random-variable-stream.h (module 'core'): ns3::ParetoRandomVariable::ParetoRandomVariable() [constructor]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6016
    cls.add_constructor([])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6017
    ## 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
  6018
    cls.add_method('GetMean', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6019
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6020
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6021
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6022
    ## 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
  6023
    cls.add_method('GetShape', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6024
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6025
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6026
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6027
    ## 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
  6028
    cls.add_method('GetBound', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6029
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6030
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6031
                   is_const=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6032
    ## 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
  6033
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6034
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6035
                   [param('double', 'mean'), param('double', 'shape'), param('double', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6036
    ## 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
  6037
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6038
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6039
                   [param('uint32_t', 'mean'), param('uint32_t', 'shape'), param('uint32_t', 'bound')])
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6040
    ## random-variable-stream.h (module 'core'): double ns3::ParetoRandomVariable::GetValue() [member function]
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6041
    cls.add_method('GetValue', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6042
                   'double', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6043
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6044
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6045
    ## 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
  6046
    cls.add_method('GetInteger', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6047
                   'uint32_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6048
                   [], 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6049
                   is_virtual=True)
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6050
    return
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  6051
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6052
def register_Ns3TimeValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6053
    ## nstime.h (module 'core'): ns3::TimeValue::TimeValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6054
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6055
    ## 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
  6056
    cls.add_constructor([param('ns3::TimeValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6057
    ## 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
  6058
    cls.add_constructor([param('ns3::Time const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6059
    ## 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
  6060
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6061
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6062
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6063
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6064
    ## 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
  6065
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6066
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6067
                   [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
  6068
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6069
    ## 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
  6070
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6071
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6072
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6073
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6074
    ## 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
  6075
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6076
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6077
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6078
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6079
    ## 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
  6080
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6081
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6082
                   [param('ns3::Time const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6083
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6084
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6085
def register_Ns3TypeIdChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6086
    ## 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
  6087
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6088
    ## 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
  6089
    cls.add_constructor([param('ns3::TypeIdChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6090
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6091
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6092
def register_Ns3TypeIdValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6093
    ## 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
  6094
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6095
    ## 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
  6096
    cls.add_constructor([param('ns3::TypeIdValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6097
    ## 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
  6098
    cls.add_constructor([param('ns3::TypeId const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6099
    ## 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
  6100
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6101
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6102
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6103
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6104
    ## 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
  6105
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6106
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6107
                   [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
  6108
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6109
    ## 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
  6110
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6111
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6112
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6113
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6114
    ## 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
  6115
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6116
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6117
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6118
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6119
    ## 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
  6120
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6121
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6122
                   [param('ns3::TypeId const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6123
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6124
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6125
def register_Ns3AddressChecker_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6126
    ## address.h (module 'network'): ns3::AddressChecker::AddressChecker() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6127
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6128
    ## 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
  6129
    cls.add_constructor([param('ns3::AddressChecker const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6130
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6131
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6132
def register_Ns3AddressValue_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6133
    ## address.h (module 'network'): ns3::AddressValue::AddressValue() [constructor]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6134
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6135
    ## 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
  6136
    cls.add_constructor([param('ns3::AddressValue const &', 'arg0')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6137
    ## 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
  6138
    cls.add_constructor([param('ns3::Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6139
    ## 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
  6140
    cls.add_method('Copy', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6141
                   'ns3::Ptr< ns3::AttributeValue >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6142
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6143
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6144
    ## 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
  6145
    cls.add_method('DeserializeFromString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6146
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6147
                   [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
  6148
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6149
    ## 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
  6150
    cls.add_method('Get', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6151
                   'ns3::Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6152
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6153
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6154
    ## 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
  6155
    cls.add_method('SerializeToString', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6156
                   'std::string', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6157
                   [param('ns3::Ptr< ns3::AttributeChecker const >', 'checker')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6158
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6159
    ## 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
  6160
    cls.add_method('Set', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6161
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6162
                   [param('ns3::Address const &', 'value')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6163
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6164
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6165
def register_Ns3Ipv4ListRouting_methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6166
    ## ipv4-list-routing.h (module 'internet'): ns3::Ipv4ListRouting::Ipv4ListRouting(ns3::Ipv4ListRouting const & arg0) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6167
    cls.add_constructor([param('ns3::Ipv4ListRouting const &', 'arg0')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6168
    ## ipv4-list-routing.h (module 'internet'): ns3::Ipv4ListRouting::Ipv4ListRouting() [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6169
    cls.add_constructor([])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6170
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::AddRoutingProtocol(ns3::Ptr<ns3::Ipv4RoutingProtocol> routingProtocol, int16_t priority) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6171
    cls.add_method('AddRoutingProtocol', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6172
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6173
                   [param('ns3::Ptr< ns3::Ipv4RoutingProtocol >', 'routingProtocol'), param('int16_t', 'priority')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6174
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6175
    ## ipv4-list-routing.h (module 'internet'): uint32_t ns3::Ipv4ListRouting::GetNRoutingProtocols() const [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6176
    cls.add_method('GetNRoutingProtocols', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6177
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6178
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6179
                   is_const=True, is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6180
    ## ipv4-list-routing.h (module 'internet'): ns3::Ptr<ns3::Ipv4RoutingProtocol> ns3::Ipv4ListRouting::GetRoutingProtocol(uint32_t index, int16_t & priority) const [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6181
    cls.add_method('GetRoutingProtocol', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6182
                   'ns3::Ptr< ns3::Ipv4RoutingProtocol >', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6183
                   [param('uint32_t', 'index'), param('int16_t &', 'priority', direction=2)], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6184
                   is_const=True, is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6185
    ## ipv4-list-routing.h (module 'internet'): static ns3::TypeId ns3::Ipv4ListRouting::GetTypeId() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6186
    cls.add_method('GetTypeId', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6187
                   'ns3::TypeId', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6188
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6189
                   is_static=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6190
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::NotifyAddAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6191
    cls.add_method('NotifyAddAddress', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6192
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6193
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6194
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6195
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::NotifyInterfaceDown(uint32_t interface) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6196
    cls.add_method('NotifyInterfaceDown', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6197
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6198
                   [param('uint32_t', 'interface')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6199
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6200
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::NotifyInterfaceUp(uint32_t interface) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6201
    cls.add_method('NotifyInterfaceUp', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6202
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6203
                   [param('uint32_t', 'interface')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6204
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6205
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::NotifyRemoveAddress(uint32_t interface, ns3::Ipv4InterfaceAddress address) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6206
    cls.add_method('NotifyRemoveAddress', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6207
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6208
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6209
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6210
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::PrintRoutingTable(ns3::Ptr<ns3::OutputStreamWrapper> stream) const [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6211
    cls.add_method('PrintRoutingTable', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6212
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6213
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6214
                   is_const=True, is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6215
    ## ipv4-list-routing.h (module 'internet'): bool ns3::Ipv4ListRouting::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]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6216
    cls.add_method('RouteInput', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6217
                   'bool', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6218
                   [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')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6219
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6220
    ## ipv4-list-routing.h (module 'internet'): ns3::Ptr<ns3::Ipv4Route> ns3::Ipv4ListRouting::RouteOutput(ns3::Ptr<ns3::Packet> p, ns3::Ipv4Header const & header, ns3::Ptr<ns3::NetDevice> oif, ns3::Socket::SocketErrno & sockerr) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6221
    cls.add_method('RouteOutput', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6222
                   'ns3::Ptr< ns3::Ipv4Route >', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6223
                   [param('ns3::Ptr< ns3::Packet >', 'p'), param('ns3::Ipv4Header const &', 'header'), param('ns3::Ptr< ns3::NetDevice >', 'oif'), param('ns3::Socket::SocketErrno &', 'sockerr')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6224
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6225
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::SetIpv4(ns3::Ptr<ns3::Ipv4> ipv4) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6226
    cls.add_method('SetIpv4', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6227
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6228
                   [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6229
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6230
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::DoDispose() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6231
    cls.add_method('DoDispose', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6232
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6233
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6234
                   visibility='protected', is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6235
    ## ipv4-list-routing.h (module 'internet'): void ns3::Ipv4ListRouting::DoInitialize() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6236
    cls.add_method('DoInitialize', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6237
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6238
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6239
                   visibility='protected', is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6240
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6241
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6242
def register_Ns3HashImplementation_methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6243
    ## hash-function.h (module 'core'): ns3::Hash::Implementation::Implementation(ns3::Hash::Implementation const & arg0) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6244
    cls.add_constructor([param('ns3::Hash::Implementation const &', 'arg0')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6245
    ## hash-function.h (module 'core'): ns3::Hash::Implementation::Implementation() [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6246
    cls.add_constructor([])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6247
    ## hash-function.h (module 'core'): uint32_t ns3::Hash::Implementation::GetHash32(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6248
    cls.add_method('GetHash32', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6249
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6250
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6251
                   is_pure_virtual=True, is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6252
    ## hash-function.h (module 'core'): uint64_t ns3::Hash::Implementation::GetHash64(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6253
    cls.add_method('GetHash64', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6254
                   'uint64_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6255
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6256
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6257
    ## hash-function.h (module 'core'): void ns3::Hash::Implementation::clear() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6258
    cls.add_method('clear', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6259
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6260
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6261
                   is_pure_virtual=True, is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6262
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6263
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6264
def register_Ns3HashFunctionFnv1a_methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6265
    ## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a::Fnv1a(ns3::Hash::Function::Fnv1a const & arg0) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6266
    cls.add_constructor([param('ns3::Hash::Function::Fnv1a const &', 'arg0')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6267
    ## hash-fnv.h (module 'core'): ns3::Hash::Function::Fnv1a::Fnv1a() [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6268
    cls.add_constructor([])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6269
    ## hash-fnv.h (module 'core'): uint32_t ns3::Hash::Function::Fnv1a::GetHash32(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6270
    cls.add_method('GetHash32', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6271
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6272
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6273
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6274
    ## hash-fnv.h (module 'core'): uint64_t ns3::Hash::Function::Fnv1a::GetHash64(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6275
    cls.add_method('GetHash64', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6276
                   'uint64_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6277
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6278
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6279
    ## hash-fnv.h (module 'core'): void ns3::Hash::Function::Fnv1a::clear() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6280
    cls.add_method('clear', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6281
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6282
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6283
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6284
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6285
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6286
def register_Ns3HashFunctionHash32_methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6287
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash32::Hash32(ns3::Hash::Function::Hash32 const & arg0) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6288
    cls.add_constructor([param('ns3::Hash::Function::Hash32 const &', 'arg0')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6289
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash32::Hash32(ns3::Hash::Hash32Function_ptr hp) [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6290
    cls.add_constructor([param('ns3::Hash::Hash32Function_ptr', 'hp')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6291
    ## hash-function.h (module 'core'): uint32_t ns3::Hash::Function::Hash32::GetHash32(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6292
    cls.add_method('GetHash32', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6293
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6294
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6295
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6296
    ## hash-function.h (module 'core'): void ns3::Hash::Function::Hash32::clear() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6297
    cls.add_method('clear', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6298
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6299
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6300
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6301
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6302
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6303
def register_Ns3HashFunctionHash64_methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6304
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash64::Hash64(ns3::Hash::Function::Hash64 const & arg0) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6305
    cls.add_constructor([param('ns3::Hash::Function::Hash64 const &', 'arg0')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6306
    ## hash-function.h (module 'core'): ns3::Hash::Function::Hash64::Hash64(ns3::Hash::Hash64Function_ptr hp) [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6307
    cls.add_constructor([param('ns3::Hash::Hash64Function_ptr', 'hp')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6308
    ## hash-function.h (module 'core'): uint32_t ns3::Hash::Function::Hash64::GetHash32(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6309
    cls.add_method('GetHash32', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6310
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6311
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6312
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6313
    ## hash-function.h (module 'core'): uint64_t ns3::Hash::Function::Hash64::GetHash64(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6314
    cls.add_method('GetHash64', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6315
                   'uint64_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6316
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6317
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6318
    ## hash-function.h (module 'core'): void ns3::Hash::Function::Hash64::clear() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6319
    cls.add_method('clear', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6320
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6321
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6322
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6323
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6324
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6325
def register_Ns3HashFunctionMurmur3_methods(root_module, cls):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6326
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3::Murmur3(ns3::Hash::Function::Murmur3 const & arg0) [copy constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6327
    cls.add_constructor([param('ns3::Hash::Function::Murmur3 const &', 'arg0')])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6328
    ## hash-murmur3.h (module 'core'): ns3::Hash::Function::Murmur3::Murmur3() [constructor]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6329
    cls.add_constructor([])
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6330
    ## hash-murmur3.h (module 'core'): uint32_t ns3::Hash::Function::Murmur3::GetHash32(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6331
    cls.add_method('GetHash32', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6332
                   'uint32_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6333
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6334
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6335
    ## hash-murmur3.h (module 'core'): uint64_t ns3::Hash::Function::Murmur3::GetHash64(char const * buffer, size_t const size) [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6336
    cls.add_method('GetHash64', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6337
                   'uint64_t', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6338
                   [param('char const *', 'buffer'), param('size_t const', 'size')], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6339
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6340
    ## hash-murmur3.h (module 'core'): void ns3::Hash::Function::Murmur3::clear() [member function]
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6341
    cls.add_method('clear', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6342
                   'void', 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6343
                   [], 
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6344
                   is_virtual=True)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6345
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  6346
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6347
def register_Ns3OlsrAssociation_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6348
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6349
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6350
    ## 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
  6351
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6352
    ## 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
  6353
    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
  6354
    ## 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
  6355
    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
  6356
    ## 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
  6357
    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
  6358
    return
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
def register_Ns3OlsrAssociationTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6361
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6362
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6363
    ## 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
  6364
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6365
    ## 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
  6366
    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
  6367
    ## 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
  6368
    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
  6369
    ## 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
  6370
    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
  6371
    ## 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
  6372
    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
  6373
    ## 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
  6374
    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
  6375
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6376
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6377
def register_Ns3OlsrDuplicateTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6378
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6379
    ## 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
  6380
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6381
    ## 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
  6382
    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
  6383
    ## 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
  6384
    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
  6385
    ## 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
  6386
    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
  6387
    ## 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
  6388
    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
  6389
    ## 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
  6390
    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
  6391
    ## 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
  6392
    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
  6393
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6394
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6395
def register_Ns3OlsrIfaceAssocTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6396
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6397
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6398
    ## 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
  6399
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6400
    ## 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
  6401
    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
  6402
    ## 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
  6403
    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
  6404
    ## 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
  6405
    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
  6406
    ## 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
  6407
    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
  6408
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6409
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6410
def register_Ns3OlsrLinkTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6411
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6412
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6413
    ## 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
  6414
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6415
    ## 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
  6416
    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
  6417
    ## 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
  6418
    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
  6419
    ## 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
  6420
    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
  6421
    ## 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
  6422
    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
  6423
    ## 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
  6424
    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
  6425
    ## 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
  6426
    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
  6427
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6428
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6429
def register_Ns3OlsrMessageHeader_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6430
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6431
    ## 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
  6432
    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
  6433
    ## 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
  6434
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6435
    ## 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
  6436
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6437
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6438
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6439
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6440
    ## 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
  6441
    cls.add_method('GetHello', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6442
                   'ns3::olsr::MessageHeader::Hello &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6443
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6444
    ## 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
  6445
    cls.add_method('GetHello', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6446
                   'ns3::olsr::MessageHeader::Hello const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6447
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6448
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6449
    ## 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
  6450
    cls.add_method('GetHna', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6451
                   'ns3::olsr::MessageHeader::Hna &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6452
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6453
    ## 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
  6454
    cls.add_method('GetHna', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6455
                   'ns3::olsr::MessageHeader::Hna const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6456
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6457
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6458
    ## 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
  6459
    cls.add_method('GetHopCount', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6460
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6461
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6462
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6463
    ## 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
  6464
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6465
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6466
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6467
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6468
    ## 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
  6469
    cls.add_method('GetMessageSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6470
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6471
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6472
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6473
    ## 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
  6474
    cls.add_method('GetMessageType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6475
                   'ns3::olsr::MessageHeader::MessageType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6476
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6477
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6478
    ## 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
  6479
    cls.add_method('GetMid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6480
                   'ns3::olsr::MessageHeader::Mid &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6481
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6482
    ## 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
  6483
    cls.add_method('GetMid', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6484
                   'ns3::olsr::MessageHeader::Mid const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6485
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6486
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6487
    ## 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
  6488
    cls.add_method('GetOriginatorAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6489
                   'ns3::Ipv4Address', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6490
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6491
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6492
    ## 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
  6493
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6494
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6495
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6496
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6497
    ## 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
  6498
    cls.add_method('GetTc', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6499
                   'ns3::olsr::MessageHeader::Tc &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6500
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6501
    ## 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
  6502
    cls.add_method('GetTc', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6503
                   'ns3::olsr::MessageHeader::Tc const &', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6504
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6505
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6506
    ## 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
  6507
    cls.add_method('GetTimeToLive', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6508
                   'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6509
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6510
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6511
    ## 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
  6512
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6513
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6514
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6515
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6516
    ## 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
  6517
    cls.add_method('GetVTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6518
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6519
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6520
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6521
    ## 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
  6522
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6523
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6524
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6525
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6526
    ## 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
  6527
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6528
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6529
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6530
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6531
    ## 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
  6532
    cls.add_method('SetHopCount', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6533
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6534
                   [param('uint8_t', 'hopCount')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6535
    ## 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
  6536
    cls.add_method('SetMessageSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6537
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6538
                   [param('uint16_t', 'messageSequenceNumber')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6539
    ## 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
  6540
    cls.add_method('SetMessageType', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6541
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6542
                   [param('ns3::olsr::MessageHeader::MessageType', 'messageType')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6543
    ## 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
  6544
    cls.add_method('SetOriginatorAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6545
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6546
                   [param('ns3::Ipv4Address', 'originatorAddress')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6547
    ## 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
  6548
    cls.add_method('SetTimeToLive', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6549
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6550
                   [param('uint8_t', 'timeToLive')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6551
    ## 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
  6552
    cls.add_method('SetVTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6553
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6554
                   [param('ns3::Time', 'time')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6555
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6556
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6557
def register_Ns3OlsrMessageHeaderHello_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6558
    ## 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
  6559
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6560
    ## 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
  6561
    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
  6562
    ## 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
  6563
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6564
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6565
                   [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
  6566
    ## 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
  6567
    cls.add_method('GetHTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6568
                   'ns3::Time', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6569
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6570
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6571
    ## 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
  6572
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6573
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6574
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6575
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6576
    ## 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
  6577
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6578
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6579
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6580
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6581
    ## 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
  6582
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6583
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6584
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6585
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6586
    ## 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
  6587
    cls.add_method('SetHTime', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6588
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6589
                   [param('ns3::Time', 'time')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6590
    ## 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
  6591
    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
  6592
    ## 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
  6593
    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
  6594
    ## 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
  6595
    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
  6596
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6597
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6598
def register_Ns3OlsrMessageHeaderHelloLinkMessage_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6599
    ## 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
  6600
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6601
    ## 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
  6602
    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
  6603
    ## 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
  6604
    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
  6605
    ## 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
  6606
    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
  6607
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6608
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6609
def register_Ns3OlsrMessageHeaderHna_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6610
    ## 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
  6611
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6612
    ## 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
  6613
    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
  6614
    ## 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
  6615
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6616
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6617
                   [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
  6618
    ## 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
  6619
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6620
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6621
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6622
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6623
    ## 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
  6624
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6625
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6626
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6627
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6628
    ## 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
  6629
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6630
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6631
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6632
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6633
    ## 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
  6634
    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
  6635
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6636
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6637
def register_Ns3OlsrMessageHeaderHnaAssociation_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6638
    ## 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
  6639
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6640
    ## 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
  6641
    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
  6642
    ## 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
  6643
    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
  6644
    ## 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
  6645
    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
  6646
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6647
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6648
def register_Ns3OlsrMessageHeaderMid_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6649
    ## 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
  6650
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6651
    ## 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
  6652
    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
  6653
    ## 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
  6654
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6655
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6656
                   [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
  6657
    ## 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
  6658
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6659
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6660
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6661
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6662
    ## 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
  6663
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6664
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6665
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6666
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6667
    ## 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
  6668
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6669
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6670
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6671
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6672
    ## 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
  6673
    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
  6674
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6675
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6676
def register_Ns3OlsrMessageHeaderTc_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6677
    ## 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
  6678
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6679
    ## 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
  6680
    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
  6681
    ## 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
  6682
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6683
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6684
                   [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
  6685
    ## 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
  6686
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6687
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6688
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6689
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6690
    ## 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
  6691
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6692
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6693
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6694
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6695
    ## 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
  6696
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6697
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6698
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6699
                   is_const=True)
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::Tc::ansn [variable]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6701
    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
  6702
    ## 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
  6703
    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
  6704
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6705
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6706
def register_Ns3OlsrMprSelectorTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6707
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6708
    ## 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
  6709
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6710
    ## 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
  6711
    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
  6712
    ## 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
  6713
    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
  6714
    ## 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
  6715
    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
  6716
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6717
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6718
def register_Ns3OlsrNeighborTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6719
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6720
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6721
    ## 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
  6722
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6723
    ## 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
  6724
    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
  6725
    ## 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
  6726
    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
  6727
    ## 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
  6728
    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
  6729
    ## 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
  6730
    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
  6731
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6732
10708
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6733
def register_Ns3OlsrOlsrState_methods(root_module, cls):
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6734
    ## olsr-state.h (module 'olsr'): ns3::olsr::OlsrState::OlsrState(ns3::olsr::OlsrState const & arg0) [copy constructor]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6735
    cls.add_constructor([param('ns3::olsr::OlsrState const &', 'arg0')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6736
    ## olsr-state.h (module 'olsr'): ns3::olsr::OlsrState::OlsrState() [constructor]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6737
    cls.add_constructor([])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6738
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseAssociation(ns3::olsr::Association const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6739
    cls.add_method('EraseAssociation', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6740
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6741
                   [param('ns3::olsr::Association const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6742
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseAssociationTuple(ns3::olsr::AssociationTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6743
    cls.add_method('EraseAssociationTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6744
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6745
                   [param('ns3::olsr::AssociationTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6746
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseDuplicateTuple(ns3::olsr::DuplicateTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6747
    cls.add_method('EraseDuplicateTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6748
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6749
                   [param('ns3::olsr::DuplicateTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6750
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseIfaceAssocTuple(ns3::olsr::IfaceAssocTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6751
    cls.add_method('EraseIfaceAssocTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6752
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6753
                   [param('ns3::olsr::IfaceAssocTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6754
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseLinkTuple(ns3::olsr::LinkTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6755
    cls.add_method('EraseLinkTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6756
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6757
                   [param('ns3::olsr::LinkTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6758
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseMprSelectorTuple(ns3::olsr::MprSelectorTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6759
    cls.add_method('EraseMprSelectorTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6760
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6761
                   [param('ns3::olsr::MprSelectorTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6762
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseMprSelectorTuples(ns3::Ipv4Address const & mainAddr) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6763
    cls.add_method('EraseMprSelectorTuples', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6764
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6765
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6766
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseNeighborTuple(ns3::olsr::NeighborTuple const & neighborTuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6767
    cls.add_method('EraseNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6768
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6769
                   [param('ns3::olsr::NeighborTuple const &', 'neighborTuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6770
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseNeighborTuple(ns3::Ipv4Address const & mainAddr) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6771
    cls.add_method('EraseNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6772
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6773
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6774
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseOlderTopologyTuples(ns3::Ipv4Address const & lastAddr, uint16_t ansn) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6775
    cls.add_method('EraseOlderTopologyTuples', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6776
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6777
                   [param('ns3::Ipv4Address const &', 'lastAddr'), param('uint16_t', 'ansn')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6778
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseTopologyTuple(ns3::olsr::TopologyTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6779
    cls.add_method('EraseTopologyTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6780
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6781
                   [param('ns3::olsr::TopologyTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6782
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseTwoHopNeighborTuple(ns3::olsr::TwoHopNeighborTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6783
    cls.add_method('EraseTwoHopNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6784
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6785
                   [param('ns3::olsr::TwoHopNeighborTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6786
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseTwoHopNeighborTuples(ns3::Ipv4Address const & neighbor) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6787
    cls.add_method('EraseTwoHopNeighborTuples', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6788
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6789
                   [param('ns3::Ipv4Address const &', 'neighbor')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6790
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::EraseTwoHopNeighborTuples(ns3::Ipv4Address const & neighbor, ns3::Ipv4Address const & twoHopNeighbor) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6791
    cls.add_method('EraseTwoHopNeighborTuples', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6792
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6793
                   [param('ns3::Ipv4Address const &', 'neighbor'), param('ns3::Ipv4Address const &', 'twoHopNeighbor')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6794
    ## olsr-state.h (module 'olsr'): ns3::olsr::AssociationTuple * ns3::olsr::OlsrState::FindAssociationTuple(ns3::Ipv4Address const & gatewayAddr, ns3::Ipv4Address const & networkAddr, ns3::Ipv4Mask const & netmask) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6795
    cls.add_method('FindAssociationTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6796
                   'ns3::olsr::AssociationTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6797
                   [param('ns3::Ipv4Address const &', 'gatewayAddr'), param('ns3::Ipv4Address const &', 'networkAddr'), param('ns3::Ipv4Mask const &', 'netmask')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6798
    ## olsr-state.h (module 'olsr'): ns3::olsr::DuplicateTuple * ns3::olsr::OlsrState::FindDuplicateTuple(ns3::Ipv4Address const & address, uint16_t sequenceNumber) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6799
    cls.add_method('FindDuplicateTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6800
                   'ns3::olsr::DuplicateTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6801
                   [param('ns3::Ipv4Address const &', 'address'), param('uint16_t', 'sequenceNumber')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6802
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocTuple * ns3::olsr::OlsrState::FindIfaceAssocTuple(ns3::Ipv4Address const & ifaceAddr) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6803
    cls.add_method('FindIfaceAssocTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6804
                   'ns3::olsr::IfaceAssocTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6805
                   [param('ns3::Ipv4Address const &', 'ifaceAddr')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6806
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocTuple const * ns3::olsr::OlsrState::FindIfaceAssocTuple(ns3::Ipv4Address const & ifaceAddr) const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6807
    cls.add_method('FindIfaceAssocTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6808
                   'ns3::olsr::IfaceAssocTuple const *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6809
                   [param('ns3::Ipv4Address const &', 'ifaceAddr')], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6810
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6811
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkTuple * ns3::olsr::OlsrState::FindLinkTuple(ns3::Ipv4Address const & ifaceAddr) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6812
    cls.add_method('FindLinkTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6813
                   'ns3::olsr::LinkTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6814
                   [param('ns3::Ipv4Address const &', 'ifaceAddr')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6815
    ## olsr-state.h (module 'olsr'): bool ns3::olsr::OlsrState::FindMprAddress(ns3::Ipv4Address const & address) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6816
    cls.add_method('FindMprAddress', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6817
                   'bool', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6818
                   [param('ns3::Ipv4Address const &', 'address')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6819
    ## olsr-state.h (module 'olsr'): ns3::olsr::MprSelectorTuple * ns3::olsr::OlsrState::FindMprSelectorTuple(ns3::Ipv4Address const & mainAddr) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6820
    cls.add_method('FindMprSelectorTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6821
                   'ns3::olsr::MprSelectorTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6822
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6823
    ## olsr-state.h (module 'olsr'): std::vector<ns3::Ipv4Address, std::allocator<ns3::Ipv4Address> > ns3::olsr::OlsrState::FindNeighborInterfaces(ns3::Ipv4Address const & neighborMainAddr) const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6824
    cls.add_method('FindNeighborInterfaces', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6825
                   'std::vector< ns3::Ipv4Address >', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6826
                   [param('ns3::Ipv4Address const &', 'neighborMainAddr')], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6827
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6828
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborTuple * ns3::olsr::OlsrState::FindNeighborTuple(ns3::Ipv4Address const & mainAddr) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6829
    cls.add_method('FindNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6830
                   'ns3::olsr::NeighborTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6831
                   [param('ns3::Ipv4Address const &', 'mainAddr')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6832
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborTuple * ns3::olsr::OlsrState::FindNeighborTuple(ns3::Ipv4Address const & mainAddr, uint8_t willingness) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6833
    cls.add_method('FindNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6834
                   'ns3::olsr::NeighborTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6835
                   [param('ns3::Ipv4Address const &', 'mainAddr'), param('uint8_t', 'willingness')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6836
    ## olsr-state.h (module 'olsr'): ns3::olsr::TopologyTuple * ns3::olsr::OlsrState::FindNewerTopologyTuple(ns3::Ipv4Address const & lastAddr, uint16_t ansn) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6837
    cls.add_method('FindNewerTopologyTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6838
                   'ns3::olsr::TopologyTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6839
                   [param('ns3::Ipv4Address const &', 'lastAddr'), param('uint16_t', 'ansn')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6840
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkTuple * ns3::olsr::OlsrState::FindSymLinkTuple(ns3::Ipv4Address const & ifaceAddr, ns3::Time time) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6841
    cls.add_method('FindSymLinkTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6842
                   'ns3::olsr::LinkTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6843
                   [param('ns3::Ipv4Address const &', 'ifaceAddr'), param('ns3::Time', 'time')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6844
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborTuple const * ns3::olsr::OlsrState::FindSymNeighborTuple(ns3::Ipv4Address const & mainAddr) const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6845
    cls.add_method('FindSymNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6846
                   'ns3::olsr::NeighborTuple const *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6847
                   [param('ns3::Ipv4Address const &', 'mainAddr')], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6848
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6849
    ## olsr-state.h (module 'olsr'): ns3::olsr::TopologyTuple * ns3::olsr::OlsrState::FindTopologyTuple(ns3::Ipv4Address const & destAddr, ns3::Ipv4Address const & lastAddr) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6850
    cls.add_method('FindTopologyTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6851
                   'ns3::olsr::TopologyTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6852
                   [param('ns3::Ipv4Address const &', 'destAddr'), param('ns3::Ipv4Address const &', 'lastAddr')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6853
    ## olsr-state.h (module 'olsr'): ns3::olsr::TwoHopNeighborTuple * ns3::olsr::OlsrState::FindTwoHopNeighborTuple(ns3::Ipv4Address const & neighbor, ns3::Ipv4Address const & twoHopNeighbor) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6854
    cls.add_method('FindTwoHopNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6855
                   'ns3::olsr::TwoHopNeighborTuple *', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6856
                   [param('ns3::Ipv4Address const &', 'neighbor'), param('ns3::Ipv4Address const &', 'twoHopNeighbor')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6857
    ## olsr-state.h (module 'olsr'): ns3::olsr::AssociationSet const & ns3::olsr::OlsrState::GetAssociationSet() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6858
    cls.add_method('GetAssociationSet', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6859
                   'ns3::olsr::AssociationSet const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6860
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6861
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6862
    ## olsr-state.h (module 'olsr'): ns3::olsr::Associations const & ns3::olsr::OlsrState::GetAssociations() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6863
    cls.add_method('GetAssociations', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6864
                   'ns3::olsr::Associations const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6865
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6866
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6867
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocSet const & ns3::olsr::OlsrState::GetIfaceAssocSet() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6868
    cls.add_method('GetIfaceAssocSet', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6869
                   'ns3::olsr::IfaceAssocSet const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6870
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6871
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6872
    ## olsr-state.h (module 'olsr'): ns3::olsr::IfaceAssocSet & ns3::olsr::OlsrState::GetIfaceAssocSetMutable() [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6873
    cls.add_method('GetIfaceAssocSetMutable', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6874
                   'ns3::olsr::IfaceAssocSet &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6875
                   [])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6876
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkSet const & ns3::olsr::OlsrState::GetLinks() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6877
    cls.add_method('GetLinks', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6878
                   'ns3::olsr::LinkSet const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6879
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6880
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6881
    ## olsr-state.h (module 'olsr'): ns3::olsr::MprSelectorSet const & ns3::olsr::OlsrState::GetMprSelectors() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6882
    cls.add_method('GetMprSelectors', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6883
                   'ns3::olsr::MprSelectorSet const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6884
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6885
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6886
    ## olsr-state.h (module 'olsr'): ns3::olsr::MprSet ns3::olsr::OlsrState::GetMprSet() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6887
    cls.add_method('GetMprSet', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6888
                   'ns3::olsr::MprSet', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6889
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6890
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6891
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborSet const & ns3::olsr::OlsrState::GetNeighbors() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6892
    cls.add_method('GetNeighbors', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6893
                   'ns3::olsr::NeighborSet const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6894
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6895
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6896
    ## olsr-state.h (module 'olsr'): ns3::olsr::NeighborSet & ns3::olsr::OlsrState::GetNeighbors() [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6897
    cls.add_method('GetNeighbors', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6898
                   'ns3::olsr::NeighborSet &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6899
                   [])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6900
    ## olsr-state.h (module 'olsr'): ns3::olsr::TopologySet const & ns3::olsr::OlsrState::GetTopologySet() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6901
    cls.add_method('GetTopologySet', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6902
                   'ns3::olsr::TopologySet const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6903
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6904
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6905
    ## olsr-state.h (module 'olsr'): ns3::olsr::TwoHopNeighborSet const & ns3::olsr::OlsrState::GetTwoHopNeighbors() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6906
    cls.add_method('GetTwoHopNeighbors', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6907
                   'ns3::olsr::TwoHopNeighborSet const &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6908
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6909
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6910
    ## olsr-state.h (module 'olsr'): ns3::olsr::TwoHopNeighborSet & ns3::olsr::OlsrState::GetTwoHopNeighbors() [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6911
    cls.add_method('GetTwoHopNeighbors', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6912
                   'ns3::olsr::TwoHopNeighborSet &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6913
                   [])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6914
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertAssociation(ns3::olsr::Association const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6915
    cls.add_method('InsertAssociation', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6916
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6917
                   [param('ns3::olsr::Association const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6918
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertAssociationTuple(ns3::olsr::AssociationTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6919
    cls.add_method('InsertAssociationTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6920
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6921
                   [param('ns3::olsr::AssociationTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6922
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertDuplicateTuple(ns3::olsr::DuplicateTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6923
    cls.add_method('InsertDuplicateTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6924
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6925
                   [param('ns3::olsr::DuplicateTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6926
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertIfaceAssocTuple(ns3::olsr::IfaceAssocTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6927
    cls.add_method('InsertIfaceAssocTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6928
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6929
                   [param('ns3::olsr::IfaceAssocTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6930
    ## olsr-state.h (module 'olsr'): ns3::olsr::LinkTuple & ns3::olsr::OlsrState::InsertLinkTuple(ns3::olsr::LinkTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6931
    cls.add_method('InsertLinkTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6932
                   'ns3::olsr::LinkTuple &', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6933
                   [param('ns3::olsr::LinkTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6934
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertMprSelectorTuple(ns3::olsr::MprSelectorTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6935
    cls.add_method('InsertMprSelectorTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6936
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6937
                   [param('ns3::olsr::MprSelectorTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6938
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertNeighborTuple(ns3::olsr::NeighborTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6939
    cls.add_method('InsertNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6940
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6941
                   [param('ns3::olsr::NeighborTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6942
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertTopologyTuple(ns3::olsr::TopologyTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6943
    cls.add_method('InsertTopologyTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6944
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6945
                   [param('ns3::olsr::TopologyTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6946
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::InsertTwoHopNeighborTuple(ns3::olsr::TwoHopNeighborTuple const & tuple) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6947
    cls.add_method('InsertTwoHopNeighborTuple', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6948
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6949
                   [param('ns3::olsr::TwoHopNeighborTuple const &', 'tuple')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6950
    ## olsr-state.h (module 'olsr'): std::string ns3::olsr::OlsrState::PrintMprSelectorSet() const [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6951
    cls.add_method('PrintMprSelectorSet', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6952
                   'std::string', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6953
                   [], 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6954
                   is_const=True)
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6955
    ## olsr-state.h (module 'olsr'): void ns3::olsr::OlsrState::SetMprSet(ns3::olsr::MprSet mprSet) [member function]
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6956
    cls.add_method('SetMprSet', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6957
                   'void', 
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6958
                   [param('ns3::olsr::MprSet', 'mprSet')])
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6959
    return
d2f248f4d563 [Python bindings] refresh OLSR module
Tommaso Pecorella <tommaso.pecorella@unifi.it>
parents: 10631
diff changeset
  6960
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6961
def register_Ns3OlsrPacketHeader_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6962
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6963
    ## 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
  6964
    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
  6965
    ## 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
  6966
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6967
    ## 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
  6968
    cls.add_method('Deserialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6969
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6970
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6971
                   is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6972
    ## 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
  6973
    cls.add_method('GetInstanceTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6974
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6975
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6976
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6977
    ## 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
  6978
    cls.add_method('GetPacketLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6979
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6980
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6981
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6982
    ## 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
  6983
    cls.add_method('GetPacketSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6984
                   'uint16_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6985
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6986
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6987
    ## 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
  6988
    cls.add_method('GetSerializedSize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6989
                   'uint32_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6990
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6991
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6992
    ## 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
  6993
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6994
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6995
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6996
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6997
    ## 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
  6998
    cls.add_method('Print', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  6999
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7000
                   [param('std::ostream &', 'os')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7001
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7002
    ## 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
  7003
    cls.add_method('Serialize', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7004
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7005
                   [param('ns3::Buffer::Iterator', 'start')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7006
                   is_const=True, is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7007
    ## 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
  7008
    cls.add_method('SetPacketLength', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7009
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7010
                   [param('uint16_t', 'length')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7011
    ## 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
  7012
    cls.add_method('SetPacketSequenceNumber', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7013
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7014
                   [param('uint16_t', 'seqnum')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7015
    return
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
def register_Ns3OlsrRoutingProtocol_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7018
    ## 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
  7019
    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
  7020
    ## 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
  7021
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7022
    ## 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
  7023
    cls.add_method('AddHostNetworkAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7024
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7025
                   [param('ns3::Ipv4Address', 'networkAddr'), param('ns3::Ipv4Mask', 'netmask')])
9114
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  7026
    ## 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
  7027
    cls.add_method('AssignStreams', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  7028
                   'int64_t', 
41bfd88f8055 rescan bindings
Tom Henderson <tomh@tomh.org>
parents: 8966
diff changeset
  7029
                   [param('int64_t', 'stream')])
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7030
    ## 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
  7031
    cls.add_method('Dump', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7032
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7033
                   [])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7034
    ## 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
  7035
    cls.add_method('GetInterfaceExclusions', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7036
                   'std::set< unsigned int >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7037
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7038
                   is_const=True)
10709
82c7c2aabbb1 Bug 1876 - enable OLSR HNA table access
Christopher Kosecki <christopher.l.kosecki.ctr@mail.mil>
parents: 10708
diff changeset
  7039
    ## olsr-routing-protocol.h (module 'olsr'): ns3::Ptr<const ns3::Ipv4StaticRouting> ns3::olsr::RoutingProtocol::GetRoutingTableAssociation() const [member function]
82c7c2aabbb1 Bug 1876 - enable OLSR HNA table access
Christopher Kosecki <christopher.l.kosecki.ctr@mail.mil>
parents: 10708
diff changeset
  7040
    cls.add_method('GetRoutingTableAssociation', 
82c7c2aabbb1 Bug 1876 - enable OLSR HNA table access
Christopher Kosecki <christopher.l.kosecki.ctr@mail.mil>
parents: 10708
diff changeset
  7041
                   'ns3::Ptr< ns3::Ipv4StaticRouting const >', 
82c7c2aabbb1 Bug 1876 - enable OLSR HNA table access
Christopher Kosecki <christopher.l.kosecki.ctr@mail.mil>
parents: 10708
diff changeset
  7042
                   [], 
82c7c2aabbb1 Bug 1876 - enable OLSR HNA table access
Christopher Kosecki <christopher.l.kosecki.ctr@mail.mil>
parents: 10708
diff changeset
  7043
                   is_const=True)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7044
    ## 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
  7045
    cls.add_method('GetRoutingTableEntries', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7046
                   'std::vector< ns3::olsr::RoutingTableEntry >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7047
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7048
                   is_const=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7049
    ## 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
  7050
    cls.add_method('GetTypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7051
                   'ns3::TypeId', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7052
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7053
                   is_static=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7054
    ## 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
  7055
    cls.add_method('RemoveHostNetworkAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7056
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7057
                   [param('ns3::Ipv4Address', 'networkAddr'), param('ns3::Ipv4Mask', 'netmask')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7058
    ## 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
  7059
    cls.add_method('SetInterfaceExclusions', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7060
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7061
                   [param('std::set< unsigned int >', 'exceptions')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7062
    ## 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
  7063
    cls.add_method('SetMainInterface', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7064
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7065
                   [param('uint32_t', 'interface')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7066
    ## 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
  7067
    cls.add_method('SetRoutingTableAssociation', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7068
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7069
                   [param('ns3::Ptr< ns3::Ipv4StaticRouting >', 'routingTable')])
9708
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  7070
    ## olsr-routing-protocol.h (module 'olsr'): void ns3::olsr::RoutingProtocol::DoInitialize() [member function]
443bde2aa701 Update Python bindings
Mitch Watrous
parents: 9294
diff changeset
  7071
    cls.add_method('DoInitialize', 
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7072
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7073
                   [], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7074
                   visibility='protected', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7075
    ## 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
  7076
    cls.add_method('DoDispose', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7077
                   'void', 
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
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7080
    ## 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
  7081
    cls.add_method('NotifyAddAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7082
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7083
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7084
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7085
    ## 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
  7086
    cls.add_method('NotifyInterfaceDown', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7087
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7088
                   [param('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7089
                   visibility='private', is_virtual=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::NotifyInterfaceUp(uint32_t interface) [member function]
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7091
    cls.add_method('NotifyInterfaceUp', 
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('uint32_t', 'interface')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7094
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7095
    ## 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
  7096
    cls.add_method('NotifyRemoveAddress', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7097
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7098
                   [param('uint32_t', 'interface'), param('ns3::Ipv4InterfaceAddress', 'address')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7099
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7100
    ## 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
  7101
    cls.add_method('PrintRoutingTable', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7102
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7103
                   [param('ns3::Ptr< ns3::OutputStreamWrapper >', 'stream')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7104
                   is_const=True, visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7105
    ## 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
  7106
    cls.add_method('RouteInput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7107
                   'bool', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7108
                   [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
  7109
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7110
    ## 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
  7111
    cls.add_method('RouteOutput', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7112
                   'ns3::Ptr< ns3::Ipv4Route >', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7113
                   [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
  7114
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7115
    ## 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
  7116
    cls.add_method('SetIpv4', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7117
                   'void', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7118
                   [param('ns3::Ptr< ns3::Ipv4 >', 'ipv4')], 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7119
                   visibility='private', is_virtual=True)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7120
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7121
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7122
def register_Ns3OlsrRoutingTableEntry_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7123
    ## 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
  7124
    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
  7125
    ## 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
  7126
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7127
    ## 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
  7128
    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
  7129
    ## 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
  7130
    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
  7131
    ## 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
  7132
    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
  7133
    ## 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
  7134
    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
  7135
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7136
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7137
def register_Ns3OlsrTopologyTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7138
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7139
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7140
    ## 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
  7141
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7142
    ## 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
  7143
    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
  7144
    ## 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
  7145
    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
  7146
    ## 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
  7147
    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
  7148
    ## 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
  7149
    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
  7150
    ## 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
  7151
    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
  7152
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7153
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7154
def register_Ns3OlsrTwoHopNeighborTuple_methods(root_module, cls):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7155
    cls.add_output_stream_operator()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7156
    cls.add_binary_comparison_operator('==')
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7157
    ## 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
  7158
    cls.add_constructor([])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7159
    ## 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
  7160
    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
  7161
    ## 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
  7162
    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
  7163
    ## 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
  7164
    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
  7165
    ## 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
  7166
    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
  7167
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7168
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7169
def register_functions(root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7170
    module = root_module
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7171
    register_functions_ns3_FatalImpl(module.get_submodule('FatalImpl'), root_module)
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7172
    register_functions_ns3_Hash(module.get_submodule('Hash'), root_module)
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7173
    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
  7174
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7175
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7176
def register_functions_ns3_FatalImpl(module, root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7177
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7178
10183
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7179
def register_functions_ns3_Hash(module, root_module):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7180
    register_functions_ns3_Hash_Function(module.get_submodule('Function'), root_module)
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7181
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7182
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7183
def register_functions_ns3_Hash_Function(module, root_module):
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7184
    return
308e44d51626 update bindings
Tom Henderson <tomh@tomh.org>
parents: 9901
diff changeset
  7185
6922
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7186
def register_functions_ns3_olsr(module, root_module):
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7187
    ## 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
  7188
    module.add_function('EmfToSeconds', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7189
                        'double', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7190
                        [param('uint8_t', 'emf')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7191
    ## 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
  7192
    module.add_function('SecondsToEmf', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7193
                        'uint8_t', 
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7194
                        [param('double', 'seconds')])
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7195
    return
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7196
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7197
def main():
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7198
    out = FileCodeSink(sys.stdout)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7199
    root_module = module_init()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7200
    register_types(root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7201
    register_methods(root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7202
    register_functions(root_module)
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7203
    root_module.generate(out)
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
if __name__ == '__main__':
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7206
    main()
e264ea29df5e Add OLSR modular bindings
Gustavo J. A. M. Carneiro <gjc@inescporto.pt>
parents:
diff changeset
  7207